From 2090db1199522a06ee92bf56ba4e48683e4152e5 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 7 May 2024 20:48:02 +0200 Subject: [PATCH 01/83] Feature/increase number of attempts of queue jobs (#3376) * Increase number of attempts * Update changelog --- CHANGELOG.md | 1 + libs/common/src/lib/config.ts | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2ec6836f..190cf8f21 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 +- Increased the number of attempts of queue jobs from `10` to `12` (fail later) - Upgraded `ionicons` from version `7.3.0` to `7.4.0` ### Fixed diff --git a/libs/common/src/lib/config.ts b/libs/common/src/lib/config.ts index 9e438c0f5..c89143d9d 100644 --- a/libs/common/src/lib/config.ts +++ b/libs/common/src/lib/config.ts @@ -66,7 +66,7 @@ export const EMERGENCY_FUND_TAG_ID = '4452656d-9fa4-4bd0-ba38-70492e31d180'; export const GATHER_ASSET_PROFILE_PROCESS = 'GATHER_ASSET_PROFILE'; export const GATHER_ASSET_PROFILE_PROCESS_OPTIONS: JobOptions = { - attempts: 10, + attempts: 12, backoff: { delay: ms('1 minute'), type: 'exponential' @@ -76,7 +76,7 @@ export const GATHER_ASSET_PROFILE_PROCESS_OPTIONS: JobOptions = { export const GATHER_HISTORICAL_MARKET_DATA_PROCESS = 'GATHER_HISTORICAL_MARKET_DATA'; export const GATHER_HISTORICAL_MARKET_DATA_PROCESS_OPTIONS: JobOptions = { - attempts: 10, + attempts: 12, backoff: { delay: ms('1 minute'), type: 'exponential' From 1fd836194f03f82be60ce860f87d490f526348a7 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 8 May 2024 20:02:50 +0200 Subject: [PATCH 02/83] Feature/add absolute change column to holdings table (#3378) * Add absolute change column * Update changelog --- CHANGELOG.md | 4 +++ .../holdings-table.component.html | 25 ++++++++++++++++++- .../holdings-table.component.ts | 7 +++++- 3 files changed, 34 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 190cf8f21..fe097b380 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 + +- Added the absolute change column to the holdings table on the home page + ### Changed - Increased the number of attempts of queue jobs from `10` to `12` (fail later) diff --git a/libs/ui/src/lib/holdings-table/holdings-table.component.html b/libs/ui/src/lib/holdings-table/holdings-table.component.html index 181b120a8..814eefa4f 100644 --- a/libs/ui/src/lib/holdings-table/holdings-table.component.html +++ b/libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -109,7 +109,30 @@ - + + + Change + + +
+ +
+ +
+ + Date: Wed, 8 May 2024 20:04:32 +0200 Subject: [PATCH 03/83] Feature/clean up deprecated GET api/portfolio/positions endpoint (#3373) --- .../portfolio-positions.interface.ts | 5 ---- .../src/app/portfolio/portfolio.controller.ts | 30 ------------------- .../import-activities-dialog.component.ts | 10 +++---- .../analysis/analysis-page.component.ts | 24 +++++++-------- .../portfolio/analysis/analysis-page.html | 24 +++++++-------- apps/client/src/app/services/data.service.ts | 19 ------------ .../src/lib/assistant/assistant.component.ts | 6 ++-- 7 files changed, 30 insertions(+), 88 deletions(-) delete mode 100644 apps/api/src/app/portfolio/interfaces/portfolio-positions.interface.ts diff --git a/apps/api/src/app/portfolio/interfaces/portfolio-positions.interface.ts b/apps/api/src/app/portfolio/interfaces/portfolio-positions.interface.ts deleted file mode 100644 index fa6141a7a..000000000 --- a/apps/api/src/app/portfolio/interfaces/portfolio-positions.interface.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { Position } from '@ghostfolio/common/interfaces'; - -export interface PortfolioPositions { - positions: Position[]; -} diff --git a/apps/api/src/app/portfolio/portfolio.controller.ts b/apps/api/src/app/portfolio/portfolio.controller.ts index 4a07cd65b..ed3c0f174 100644 --- a/apps/api/src/app/portfolio/portfolio.controller.ts +++ b/apps/api/src/app/portfolio/portfolio.controller.ts @@ -52,7 +52,6 @@ import { Big } from 'big.js'; import { StatusCodes, getReasonPhrase } from 'http-status-codes'; import { PortfolioPositionDetail } from './interfaces/portfolio-position-detail.interface'; -import { PortfolioPositions } from './interfaces/portfolio-positions.interface'; import { PortfolioService } from './portfolio.service'; @Controller('portfolio') @@ -494,35 +493,6 @@ export class PortfolioController { return performanceInformation; } - /** - * @deprecated - */ - @Get('positions') - @UseGuards(AuthGuard('jwt'), HasPermissionGuard) - @UseInterceptors(RedactValuesInResponseInterceptor) - @UseInterceptors(TransformDataSourceInResponseInterceptor) - public async getPositions( - @Headers(HEADER_KEY_IMPERSONATION.toLowerCase()) impersonationId: string, - @Query('accounts') filterByAccounts?: string, - @Query('assetClasses') filterByAssetClasses?: string, - @Query('query') filterBySearchQuery?: string, - @Query('range') dateRange: DateRange = 'max', - @Query('tags') filterByTags?: string - ): Promise { - const filters = this.apiService.buildFiltersFromQueryParams({ - filterByAccounts, - filterByAssetClasses, - filterBySearchQuery, - filterByTags - }); - - return this.portfolioService.getPositions({ - dateRange, - filters, - impersonationId - }); - } - @Get('public/:accessId') @UseInterceptors(TransformDataSourceInResponseInterceptor) public async getPublic( diff --git a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts index ccc861335..b59994811 100644 --- a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts +++ b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2,7 +2,7 @@ import { CreateAccountDto } from '@ghostfolio/api/app/account/create-account.dto import { Activity } from '@ghostfolio/api/app/order/interfaces/activities.interface'; import { DataService } from '@ghostfolio/client/services/data.service'; import { ImportActivitiesService } from '@ghostfolio/client/services/import-activities.service'; -import { Position } from '@ghostfolio/common/interfaces'; +import { PortfolioPosition } from '@ghostfolio/common/interfaces'; import { StepperOrientation, @@ -43,7 +43,7 @@ export class ImportActivitiesDialog implements OnDestroy { public deviceType: string; public dialogTitle = $localize`Import Activities`; public errorMessages: string[] = []; - public holdings: Position[] = []; + public holdings: PortfolioPosition[] = []; public importStep: ImportStep = ImportStep.UPLOAD_FILE; public isLoading = false; public maxSafeInteger = Number.MAX_SAFE_INTEGER; @@ -88,7 +88,7 @@ export class ImportActivitiesDialog implements OnDestroy { this.uniqueAssetForm.get('uniqueAsset').disable(); this.dataService - .fetchPositions({ + .fetchPortfolioHoldings({ filters: [ { id: AssetClass.EQUITY, @@ -98,8 +98,8 @@ export class ImportActivitiesDialog implements OnDestroy { range: 'max' }) .pipe(takeUntil(this.unsubscribeSubject)) - .subscribe(({ positions }) => { - this.holdings = sortBy(positions, ({ name }) => { + .subscribe(({ holdings }) => { + this.holdings = sortBy(holdings, ({ name }) => { return name.toLowerCase(); }); this.uniqueAssetForm.get('uniqueAsset').enable(); diff --git a/apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts b/apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts index 4acf6dbb9..93dfb6517 100644 --- a/apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts +++ b/apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts @@ -8,7 +8,7 @@ import { HistoricalDataItem, PortfolioInvestments, PortfolioPerformance, - Position, + PortfolioPosition, User } from '@ghostfolio/common/interfaces'; import { InvestmentItem } from '@ghostfolio/common/interfaces/investment-item.interface'; @@ -35,7 +35,7 @@ export class AnalysisPageComponent implements OnDestroy, OnInit { public benchmark: Partial; public benchmarkDataItems: HistoricalDataItem[] = []; public benchmarks: Partial[]; - public bottom3: Position[]; + public bottom3: PortfolioPosition[]; public dateRangeOptions = ToggleComponent.DEFAULT_DATE_RANGE_OPTIONS; public daysInMarket: number; public deviceType: string; @@ -60,7 +60,7 @@ export class AnalysisPageComponent implements OnDestroy, OnInit { public performanceDataItemsInPercentage: HistoricalDataItem[]; public portfolioEvolutionDataLabel = $localize`Investment`; public streaks: PortfolioInvestments['streaks']; - public top3: Position[]; + public top3: PortfolioPosition[]; public unitCurrentStreak: string; public unitLongestStreak: string; public user: User; @@ -308,23 +308,23 @@ export class AnalysisPageComponent implements OnDestroy, OnInit { }); this.dataService - .fetchPositions({ + .fetchPortfolioHoldings({ filters: this.userService.getFilters(), range: this.user?.settings?.dateRange }) .pipe(takeUntil(this.unsubscribeSubject)) - .subscribe(({ positions }) => { - const positionsSorted = sortBy( - positions.filter(({ netPerformancePercentageWithCurrencyEffect }) => { - return isNumber(netPerformancePercentageWithCurrencyEffect); + .subscribe(({ holdings }) => { + const holdingsSorted = sortBy( + holdings.filter(({ netPerformancePercentWithCurrencyEffect }) => { + return isNumber(netPerformancePercentWithCurrencyEffect); }), - 'netPerformancePercentageWithCurrencyEffect' + 'netPerformancePercentWithCurrencyEffect' ).reverse(); - this.top3 = positionsSorted.slice(0, 3); + this.top3 = holdingsSorted.slice(0, 3); - if (positions?.length > 3) { - this.bottom3 = positionsSorted.slice(-3).reverse(); + if (holdings?.length > 3) { + this.bottom3 = holdingsSorted.slice(-3).reverse(); } else { this.bottom3 = []; } diff --git a/apps/client/src/app/pages/portfolio/analysis/analysis-page.html b/apps/client/src/app/pages/portfolio/analysis/analysis-page.html index 191dca06f..90cf8bc06 100644 --- a/apps/client/src/app/pages/portfolio/analysis/analysis-page.html +++ b/apps/client/src/app/pages/portfolio/analysis/analysis-page.html @@ -170,17 +170,17 @@
    -
  1. +
  2. -
    {{ position.name }}
    +
    {{ holding.name }}
    @@ -218,17 +216,17 @@
      -
    1. +
    2. -
      {{ position.name }}
      +
      {{ holding.name }}
      diff --git a/apps/client/src/app/services/data.service.ts b/apps/client/src/app/services/data.service.ts index d5c1bec00..4f8615e41 100644 --- a/apps/client/src/app/services/data.service.ts +++ b/apps/client/src/app/services/data.service.ts @@ -6,7 +6,6 @@ import { CreateOrderDto } from '@ghostfolio/api/app/order/create-order.dto'; import { Activities } from '@ghostfolio/api/app/order/interfaces/activities.interface'; import { UpdateOrderDto } from '@ghostfolio/api/app/order/update-order.dto'; import { PortfolioPositionDetail } from '@ghostfolio/api/app/portfolio/interfaces/portfolio-position-detail.interface'; -import { PortfolioPositions } from '@ghostfolio/api/app/portfolio/interfaces/portfolio-positions.interface'; import { LookupItem } from '@ghostfolio/api/app/symbol/interfaces/lookup-item.interface'; import { SymbolItem } from '@ghostfolio/api/app/symbol/interfaces/symbol-item.interface'; import { UserItem } from '@ghostfolio/api/app/user/interfaces/user-item.interface'; @@ -376,24 +375,6 @@ export class DataService { }); } - /** - * @deprecated - */ - public fetchPositions({ - filters, - range - }: { - filters?: Filter[]; - range: DateRange; - }): Observable { - let params = this.buildFiltersAsQueryParams({ filters }); - params = params.append('range', range); - - return this.http.get('/api/v1/portfolio/positions', { - params - }); - } - public fetchSymbols({ includeIndices = false, query diff --git a/libs/ui/src/lib/assistant/assistant.component.ts b/libs/ui/src/lib/assistant/assistant.component.ts index f932fd5c2..101872a86 100644 --- a/libs/ui/src/lib/assistant/assistant.component.ts +++ b/libs/ui/src/lib/assistant/assistant.component.ts @@ -416,7 +416,7 @@ export class GfAssistantComponent implements OnChanges, OnDestroy, OnInit { private searchHoldings(aSearchTerm: string): Observable { return this.dataService - .fetchPositions({ + .fetchPortfolioHoldings({ filters: [ { id: aSearchTerm, @@ -429,8 +429,8 @@ export class GfAssistantComponent implements OnChanges, OnDestroy, OnInit { catchError(() => { return EMPTY; }), - map(({ positions }) => { - return positions.map( + map(({ holdings }) => { + return holdings.map( ({ assetSubClass, currency, dataSource, name, symbol }) => { return { currency, From 66bdb374e8d4a511d74d8118f4cdade667b21a3f Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 8 May 2024 20:04:58 +0200 Subject: [PATCH 04/83] Feature/set icon columns of tables to stick at beginning (#3377) * Set icon columns to stick at the beginning * Update changelog --- CHANGELOG.md | 2 ++ .../ui/src/lib/activities-table/activities-table.component.html | 2 +- libs/ui/src/lib/holdings-table/holdings-table.component.html | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe097b380..7a571b620 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Set the icon column of the activities table to stick at the beginning +- Set the icon column of the holdings table to stick at the beginning - Increased the number of attempts of queue jobs from `10` to `12` (fail later) - Upgraded `ionicons` from version `7.3.0` to `7.4.0` 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 4a1b1004d..dfa17a28c 100644 --- a/libs/ui/src/lib/activities-table/activities-table.component.html +++ b/libs/ui/src/lib/activities-table/activities-table.component.html @@ -119,7 +119,7 @@ - + - + Date: Wed, 8 May 2024 20:37:53 +0200 Subject: [PATCH 05/83] Update translations (#3384) --- apps/client/src/locales/messages.de.xlf | 296 ++++++++++++------------ apps/client/src/locales/messages.es.xlf | 293 ++++++++++++----------- apps/client/src/locales/messages.fr.xlf | 293 ++++++++++++----------- apps/client/src/locales/messages.it.xlf | 293 ++++++++++++----------- apps/client/src/locales/messages.nl.xlf | 293 ++++++++++++----------- apps/client/src/locales/messages.pl.xlf | 296 ++++++++++++------------ apps/client/src/locales/messages.pt.xlf | 293 ++++++++++++----------- apps/client/src/locales/messages.tr.xlf | 293 ++++++++++++----------- apps/client/src/locales/messages.xlf | 289 +++++++++++------------ apps/client/src/locales/messages.zh.xlf | 296 ++++++++++++------------ 10 files changed, 1428 insertions(+), 1507 deletions(-) diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 1d368b781..23e492b38 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -105,11 +105,11 @@ 134 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 221 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 331 @@ -337,7 +337,7 @@ 34 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 301 @@ -465,7 +465,7 @@ 26 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 112 @@ -561,7 +561,7 @@ 130 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 209 @@ -841,7 +841,7 @@ 257 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 356 @@ -1222,10 +1222,6 @@ Aktivitäten verwalten apps/client/src/app/components/home-holdings/home-holdings.html - 22 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page.html 32 @@ -1330,7 +1326,7 @@ Kauf apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 21 + 31 @@ -1338,7 +1334,7 @@ Verkauf apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 33 + 43 @@ -1346,10 +1342,10 @@ Einlage apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 48 + 58 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 165 @@ -1358,7 +1354,7 @@ Absolute Brutto Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 60 + 70 @@ -1366,29 +1362,7 @@ Brutto Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 77 - - - - - - - - - - - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12 - - - - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - {VAR_PLURAL, plural, =1 {Transaktion} other {Transaktionen}} - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 14 + 85 @@ -1396,7 +1370,7 @@ Absolute Netto Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 116 + 124 @@ -1404,7 +1378,7 @@ Netto Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 133 + 139 @@ -1412,7 +1386,7 @@ Gesamtanlagevermögen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 159 + 165 @@ -1420,7 +1394,7 @@ Wertsachen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 172 + 178 @@ -1428,7 +1402,7 @@ Notfallfonds apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 184 + 190 apps/client/src/app/pages/features/features-page.html @@ -1444,7 +1418,7 @@ Kaufkraft apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 231 + 237 @@ -1452,7 +1426,7 @@ Gesamtvermögen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 278 + 284 @@ -1460,7 +1434,7 @@ Performance pro Jahr apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 290 + 296 @@ -1468,10 +1442,10 @@ Dividenden apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 324 + 330 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 177 @@ -1492,7 +1466,7 @@ Bitte gib den Betrag deines Notfallfonds ein: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 53 + 57 @@ -1507,7 +1481,7 @@ 316 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 270 @@ -1527,7 +1501,7 @@ 327 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 282 @@ -1539,7 +1513,7 @@ 10 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 376 @@ -1555,7 +1529,7 @@ Report Data Glitch Datenfehler melden - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 394 @@ -1575,12 +1549,12 @@ 6 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 89 libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 + 142 @@ -1588,7 +1562,7 @@ Alle anzeigen libs/ui/src/lib/holdings-table/holdings-table.component.html - 174 + 197 @@ -2052,7 +2026,7 @@ Bargeld apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 205 + 211 @@ -2176,7 +2150,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 34 + 61 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -2192,11 +2166,11 @@ Märkte apps/client/src/app/pages/home/home-page-routing.module.ts - 33 + 38 apps/client/src/app/pages/home/home-page.component.ts - 49 + 76 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2212,7 +2186,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 49 + 44 @@ -2316,7 +2290,7 @@ Zeitstrahl der Investitionen apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 298 + 294 @@ -2332,7 +2306,7 @@ Verlierer apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 216 + 214 @@ -2375,16 +2349,12 @@ 23 - apps/client/src/app/pages/home/home-page.component.ts - 39 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page-routing.module.ts - 13 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 + apps/client/src/app/pages/home/home-page.component.ts + 66 apps/client/src/app/pages/zen/zen-page.component.ts @@ -2399,7 +2369,7 @@ 77 - apps/client/src/app/pages/portfolio/holdings/holdings-page.html + apps/client/src/app/components/home-holdings/home-holdings.html 4 @@ -2436,7 +2406,7 @@ Verkauf libs/ui/src/lib/i18n.ts - 36 + 37 @@ -2455,7 +2425,7 @@ Quantity Anzahl - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 154 @@ -2531,7 +2501,7 @@ 232 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 228 @@ -2548,7 +2518,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 + 39 @@ -2584,7 +2554,7 @@ apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 48 + 41 @@ -2851,15 +2821,19 @@ Change Änderung - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 63 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + Average Unit Price Ø Preis pro Einheit - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 101 @@ -2867,7 +2841,7 @@ Minimum Price Minimum Preis - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 128 @@ -2875,7 +2849,7 @@ Maximum Price Maximum Preis - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 144 @@ -2895,7 +2869,7 @@ 245 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 237 @@ -2911,7 +2885,7 @@ 174 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 254 @@ -2927,7 +2901,7 @@ 77 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 264 @@ -3000,7 +2974,7 @@ libs/ui/src/lib/i18n.ts - 33 + 34 @@ -3036,7 +3010,7 @@ libs/ui/src/lib/i18n.ts - 70 + 71 @@ -3048,7 +3022,7 @@ libs/ui/src/lib/i18n.ts - 71 + 72 @@ -3116,7 +3090,7 @@ Von der Analyse ausgenommen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 243 + 249 @@ -3172,7 +3146,7 @@ Portfolio Wertentwicklung apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 268 + 264 @@ -3204,7 +3178,7 @@ Symbol libs/ui/src/lib/i18n.ts - 24 + 25 @@ -3212,7 +3186,7 @@ Tag libs/ui/src/lib/i18n.ts - 25 + 26 @@ -3220,7 +3194,7 @@ Bargeld libs/ui/src/lib/i18n.ts - 39 + 40 @@ -3228,7 +3202,7 @@ Rohstoff libs/ui/src/lib/i18n.ts - 40 + 41 @@ -3236,7 +3210,7 @@ Beteiligungskapital libs/ui/src/lib/i18n.ts - 41 + 42 @@ -3244,7 +3218,7 @@ Feste Einkünfte libs/ui/src/lib/i18n.ts - 42 + 43 @@ -3252,7 +3226,7 @@ Immobilien libs/ui/src/lib/i18n.ts - 44 + 45 @@ -3260,7 +3234,7 @@ Anleihe libs/ui/src/lib/i18n.ts - 47 + 48 @@ -3268,7 +3242,7 @@ Kryptowährung libs/ui/src/lib/i18n.ts - 48 + 49 @@ -3276,7 +3250,7 @@ ETF libs/ui/src/lib/i18n.ts - 49 + 50 @@ -3284,7 +3258,7 @@ Investmentfonds libs/ui/src/lib/i18n.ts - 50 + 51 @@ -3292,7 +3266,7 @@ Edelmetall libs/ui/src/lib/i18n.ts - 51 + 52 @@ -3300,7 +3274,7 @@ Privates Beteiligungskapital libs/ui/src/lib/i18n.ts - 52 + 53 @@ -3308,7 +3282,7 @@ Aktie libs/ui/src/lib/i18n.ts - 53 + 54 @@ -3316,7 +3290,7 @@ Notfallfonds libs/ui/src/lib/i18n.ts - 12 + 13 @@ -3324,7 +3298,7 @@ Andere libs/ui/src/lib/i18n.ts - 20 + 21 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3348,7 +3322,7 @@ Nordamerika libs/ui/src/lib/i18n.ts - 63 + 64 @@ -3356,7 +3330,7 @@ Afrika libs/ui/src/lib/i18n.ts - 60 + 61 @@ -3364,7 +3338,7 @@ Asien libs/ui/src/lib/i18n.ts - 61 + 62 @@ -3372,7 +3346,7 @@ Europa libs/ui/src/lib/i18n.ts - 62 + 63 @@ -3380,7 +3354,7 @@ Ozeanien libs/ui/src/lib/i18n.ts - 64 + 65 @@ -3388,7 +3362,7 @@ Südamerika libs/ui/src/lib/i18n.ts - 65 + 66 @@ -3484,7 +3458,7 @@ Zeitstrahl der Dividenden apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 356 + 352 @@ -3496,7 +3470,7 @@ libs/ui/src/lib/i18n.ts - 31 + 32 @@ -3568,11 +3542,11 @@ Zusammenfassung apps/client/src/app/pages/home/home-page-routing.module.ts - 28 + 33 apps/client/src/app/pages/home/home-page.component.ts - 44 + 71 @@ -3620,7 +3594,7 @@ Kern libs/ui/src/lib/i18n.ts - 8 + 9 @@ -3628,7 +3602,7 @@ Zuwendung libs/ui/src/lib/i18n.ts - 13 + 14 @@ -3636,7 +3610,7 @@ Höheres Risiko libs/ui/src/lib/i18n.ts - 14 + 15 @@ -3644,7 +3618,7 @@ Geringeres Risiko libs/ui/src/lib/i18n.ts - 17 + 18 @@ -3652,7 +3626,7 @@ Altersvorsorge libs/ui/src/lib/i18n.ts - 22 + 23 @@ -3660,7 +3634,7 @@ Satellit libs/ui/src/lib/i18n.ts - 23 + 24 @@ -3920,10 +3894,10 @@ Gebühren apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 100 + 108 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 199 @@ -3980,7 +3954,7 @@ Einfacher Wechsel zu Ghostfolio Premium libs/ui/src/lib/i18n.ts - 10 + 11 @@ -4004,7 +3978,7 @@ Einfacher Wechsel zu Ghostfolio Premium oder Ghostfolio Open Source libs/ui/src/lib/i18n.ts - 9 + 10 @@ -4012,7 +3986,7 @@ Einfacher Wechsel zu Ghostfolio Open Source oder Ghostfolio Basic libs/ui/src/lib/i18n.ts - 11 + 12 @@ -4252,7 +4226,7 @@ Diese Aktivität existiert bereits. libs/ui/src/lib/i18n.ts - 15 + 16 @@ -4344,7 +4318,7 @@ Aktueller Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 319 + 315 @@ -4352,7 +4326,7 @@ Längster Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 328 + 324 @@ -4360,7 +4334,7 @@ Monate libs/ui/src/lib/i18n.ts - 19 + 20 @@ -4368,7 +4342,7 @@ Jahre libs/ui/src/lib/i18n.ts - 27 + 28 @@ -4376,7 +4350,7 @@ Monat libs/ui/src/lib/i18n.ts - 18 + 19 @@ -4384,7 +4358,7 @@ Jahr libs/ui/src/lib/i18n.ts - 26 + 27 @@ -4392,7 +4366,7 @@ Verbindlichkeiten apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 258 + 264 apps/client/src/app/pages/features/features-page.html @@ -4532,7 +4506,7 @@ Verbindlichkeit libs/ui/src/lib/i18n.ts - 35 + 36 @@ -9868,7 +9842,7 @@ Kauf libs/ui/src/lib/i18n.ts - 30 + 31 @@ -9876,7 +9850,7 @@ Wertsache libs/ui/src/lib/i18n.ts - 34 + 35 @@ -9900,7 +9874,7 @@ Anlagevermögen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 224 @@ -9908,7 +9882,7 @@ Filtervorlage libs/ui/src/lib/i18n.ts - 21 + 22 @@ -9932,7 +9906,7 @@ Japan libs/ui/src/lib/i18n.ts - 16 + 17 @@ -13244,7 +13218,7 @@ Gebühr libs/ui/src/lib/i18n.ts - 32 + 33 @@ -13252,7 +13226,7 @@ Zins apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 312 + 318 @@ -13760,7 +13734,7 @@ Extreme Angst libs/ui/src/lib/i18n.ts - 68 + 69 @@ -13768,7 +13742,7 @@ Extreme Gier libs/ui/src/lib/i18n.ts - 69 + 70 @@ -13776,7 +13750,7 @@ Neutral libs/ui/src/lib/i18n.ts - 72 + 73 @@ -14732,7 +14706,7 @@ Die Marktdaten sind verzögert für apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts - 82 + 81 @@ -14983,7 +14957,7 @@ Active Aktiv - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 30 @@ -14991,7 +14965,7 @@ Closed Abgeschlossen - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 31 @@ -14999,7 +14973,7 @@ Activity Aktivität - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 219 @@ -15007,7 +14981,7 @@ Dividend Yield Dividendenrendite - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 187 @@ -15040,14 +15014,14 @@ Liquidität libs/ui/src/lib/i18n.ts - 43 + 44 Change with currency effect Änderung mit Währungseffekt - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 52 @@ -15055,10 +15029,26 @@ Performance with currency effect Performance mit Währungseffekt - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 79 + + {VAR_PLURAL, plural, =1 {activity} other {activities}} + {VAR_PLURAL, plural, =1 {Aktivität} other {Aktivitäten}} + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 14 + + + + Buy and sell + Kauf und Verkauf + + libs/ui/src/lib/i18n.ts + 8 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 09dd7c44a..51edc3b79 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -106,11 +106,11 @@ 134 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 221 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 331 @@ -338,7 +338,7 @@ 34 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 301 @@ -466,7 +466,7 @@ 26 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 112 @@ -562,7 +562,7 @@ 130 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 209 @@ -842,7 +842,7 @@ 257 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 356 @@ -1223,10 +1223,6 @@ Gestión de las operaciones apps/client/src/app/components/home-holdings/home-holdings.html - 22 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page.html 32 @@ -1331,7 +1327,7 @@ Compra apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 21 + 31 @@ -1339,7 +1335,7 @@ Venta apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 33 + 43 @@ -1347,10 +1343,10 @@ Inversión apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 48 + 58 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 165 @@ -1359,7 +1355,7 @@ Rendimiento bruto absoluto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 60 + 70 @@ -1367,26 +1363,7 @@ Rendimiento bruto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 77 - - - - - - - - Comisiones por - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12 - - - - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - {VAR_PLURAL, plural, =1 {transacción} other {transacciones}} - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 14 + 85 @@ -1394,7 +1371,7 @@ Rendimiento neto absoluto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 116 + 124 @@ -1402,7 +1379,7 @@ Rendimiento neto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 133 + 139 @@ -1410,7 +1387,7 @@ Total de activos apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 159 + 165 @@ -1418,7 +1395,7 @@ Objetos de valor apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 172 + 178 @@ -1426,7 +1403,7 @@ Fondo de emergencia apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 184 + 190 apps/client/src/app/pages/features/features-page.html @@ -1442,7 +1419,7 @@ Capacidad de compra apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 231 + 237 @@ -1450,7 +1427,7 @@ Patrimonio neto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 278 + 284 @@ -1458,7 +1435,7 @@ Rendimiento anualizado apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 290 + 296 @@ -1466,10 +1443,10 @@ Dividendo apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 324 + 330 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 177 @@ -1490,7 +1467,7 @@ Por favor, ingresa la cantidad de tu fondo de emergencia: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 53 + 57 @@ -1505,7 +1482,7 @@ 316 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 270 @@ -1525,7 +1502,7 @@ 327 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 282 @@ -1537,7 +1514,7 @@ 10 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 376 @@ -1553,7 +1530,7 @@ Report Data Glitch Reporta un anomalía de los datos - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 394 @@ -1573,12 +1550,12 @@ 6 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 89 libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 + 142 @@ -1586,7 +1563,7 @@ Mostrar todos libs/ui/src/lib/holdings-table/holdings-table.component.html - 174 + 197 @@ -2050,7 +2027,7 @@ Efectivo apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 205 + 211 @@ -2174,7 +2151,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 34 + 61 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -2190,11 +2167,11 @@ Mercados apps/client/src/app/pages/home/home-page-routing.module.ts - 33 + 38 apps/client/src/app/pages/home/home-page.component.ts - 49 + 76 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2210,7 +2187,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 49 + 44 @@ -2314,7 +2291,7 @@ Cronología de la inversión apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 298 + 294 @@ -2330,7 +2307,7 @@ Lo peor apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 216 + 214 @@ -2373,16 +2350,12 @@ 23 - apps/client/src/app/pages/home/home-page.component.ts - 39 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page-routing.module.ts - 13 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 + apps/client/src/app/pages/home/home-page.component.ts + 66 apps/client/src/app/pages/zen/zen-page.component.ts @@ -2397,7 +2370,7 @@ 77 - apps/client/src/app/pages/portfolio/holdings/holdings-page.html + apps/client/src/app/components/home-holdings/home-holdings.html 4 @@ -2434,7 +2407,7 @@ Venta libs/ui/src/lib/i18n.ts - 36 + 37 @@ -2453,7 +2426,7 @@ Quantity Cantidad - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 154 @@ -2529,7 +2502,7 @@ 232 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 228 @@ -2546,7 +2519,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 + 39 @@ -2582,7 +2555,7 @@ apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 48 + 41 @@ -2849,9 +2822,13 @@ Change Modificar - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 63 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + Developed Markets @@ -2881,7 +2858,7 @@ 245 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 237 @@ -2893,7 +2870,7 @@ Average Unit Price Precio unitario medio - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 101 @@ -2901,7 +2878,7 @@ Maximum Price Precio máximo - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 144 @@ -2937,7 +2914,7 @@ 174 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 254 @@ -2953,7 +2930,7 @@ 77 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 264 @@ -2961,7 +2938,7 @@ Minimum Price Precio mínimo - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 128 @@ -2990,7 +2967,7 @@ libs/ui/src/lib/i18n.ts - 33 + 34 @@ -3034,7 +3011,7 @@ libs/ui/src/lib/i18n.ts - 70 + 71 @@ -3046,7 +3023,7 @@ libs/ui/src/lib/i18n.ts - 71 + 72 @@ -3114,7 +3091,7 @@ Excluido del análisis apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 243 + 249 @@ -3170,7 +3147,7 @@ Evolución cartera apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 268 + 264 @@ -3202,7 +3179,7 @@ Símbolo libs/ui/src/lib/i18n.ts - 24 + 25 @@ -3210,7 +3187,7 @@ Etiqueta libs/ui/src/lib/i18n.ts - 25 + 26 @@ -3218,7 +3195,7 @@ Efectivo libs/ui/src/lib/i18n.ts - 39 + 40 @@ -3226,7 +3203,7 @@ Bien libs/ui/src/lib/i18n.ts - 40 + 41 @@ -3234,7 +3211,7 @@ Capital libs/ui/src/lib/i18n.ts - 41 + 42 @@ -3242,7 +3219,7 @@ Renta fija libs/ui/src/lib/i18n.ts - 42 + 43 @@ -3250,7 +3227,7 @@ Propiedad inmobiliaria libs/ui/src/lib/i18n.ts - 44 + 45 @@ -3258,7 +3235,7 @@ Bono libs/ui/src/lib/i18n.ts - 47 + 48 @@ -3266,7 +3243,7 @@ Criptomoneda libs/ui/src/lib/i18n.ts - 48 + 49 @@ -3274,7 +3251,7 @@ ETF libs/ui/src/lib/i18n.ts - 49 + 50 @@ -3282,7 +3259,7 @@ Fondo de inversión libs/ui/src/lib/i18n.ts - 50 + 51 @@ -3290,7 +3267,7 @@ Metal precioso libs/ui/src/lib/i18n.ts - 51 + 52 @@ -3298,7 +3275,7 @@ Capital riesgo libs/ui/src/lib/i18n.ts - 52 + 53 @@ -3306,7 +3283,7 @@ Acción libs/ui/src/lib/i18n.ts - 53 + 54 @@ -3314,7 +3291,7 @@ Fondo de emergencia libs/ui/src/lib/i18n.ts - 12 + 13 @@ -3322,7 +3299,7 @@ Otros libs/ui/src/lib/i18n.ts - 20 + 21 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3346,7 +3323,7 @@ América del Norte libs/ui/src/lib/i18n.ts - 63 + 64 @@ -3354,7 +3331,7 @@ África libs/ui/src/lib/i18n.ts - 60 + 61 @@ -3362,7 +3339,7 @@ Asia libs/ui/src/lib/i18n.ts - 61 + 62 @@ -3370,7 +3347,7 @@ Europa libs/ui/src/lib/i18n.ts - 62 + 63 @@ -3378,7 +3355,7 @@ Oceanía libs/ui/src/lib/i18n.ts - 64 + 65 @@ -3386,7 +3363,7 @@ América del Sur libs/ui/src/lib/i18n.ts - 65 + 66 @@ -3486,7 +3463,7 @@ libs/ui/src/lib/i18n.ts - 31 + 32 @@ -3494,7 +3471,7 @@ Dividend Timeline apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 356 + 352 @@ -3566,11 +3543,11 @@ Summary apps/client/src/app/pages/home/home-page-routing.module.ts - 28 + 33 apps/client/src/app/pages/home/home-page.component.ts - 44 + 71 @@ -3618,7 +3595,7 @@ Core libs/ui/src/lib/i18n.ts - 8 + 9 @@ -3626,7 +3603,7 @@ Grant libs/ui/src/lib/i18n.ts - 13 + 14 @@ -3634,7 +3611,7 @@ Higher Risk libs/ui/src/lib/i18n.ts - 14 + 15 @@ -3642,7 +3619,7 @@ Lower Risk libs/ui/src/lib/i18n.ts - 17 + 18 @@ -3650,7 +3627,7 @@ Retirement Provision libs/ui/src/lib/i18n.ts - 22 + 23 @@ -3658,7 +3635,7 @@ Satellite libs/ui/src/lib/i18n.ts - 23 + 24 @@ -3918,10 +3895,10 @@ Fees apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 100 + 108 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 199 @@ -3978,7 +3955,7 @@ Switch to Ghostfolio Premium easily libs/ui/src/lib/i18n.ts - 10 + 11 @@ -4002,7 +3979,7 @@ Switch to Ghostfolio Premium or Ghostfolio Open Source easily libs/ui/src/lib/i18n.ts - 9 + 10 @@ -4010,7 +3987,7 @@ Switch to Ghostfolio Open Source or Ghostfolio Basic easily libs/ui/src/lib/i18n.ts - 11 + 12 @@ -4250,7 +4227,7 @@ This activity already exists. libs/ui/src/lib/i18n.ts - 15 + 16 @@ -4342,7 +4319,7 @@ Current Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 319 + 315 @@ -4350,7 +4327,7 @@ Longest Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 328 + 324 @@ -4358,7 +4335,7 @@ Months libs/ui/src/lib/i18n.ts - 19 + 20 @@ -4366,7 +4343,7 @@ Years libs/ui/src/lib/i18n.ts - 27 + 28 @@ -4374,7 +4351,7 @@ Month libs/ui/src/lib/i18n.ts - 18 + 19 @@ -4382,7 +4359,7 @@ Year libs/ui/src/lib/i18n.ts - 26 + 27 @@ -4390,7 +4367,7 @@ Liabilities apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 258 + 264 apps/client/src/app/pages/features/features-page.html @@ -4530,7 +4507,7 @@ Liability libs/ui/src/lib/i18n.ts - 35 + 36 @@ -9866,7 +9843,7 @@ Buy libs/ui/src/lib/i18n.ts - 30 + 31 @@ -9874,7 +9851,7 @@ Valuable libs/ui/src/lib/i18n.ts - 34 + 35 @@ -9898,7 +9875,7 @@ Assets apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 224 @@ -9906,7 +9883,7 @@ Preset libs/ui/src/lib/i18n.ts - 21 + 22 @@ -9930,7 +9907,7 @@ Japan libs/ui/src/lib/i18n.ts - 16 + 17 @@ -13242,7 +13219,7 @@ Fee libs/ui/src/lib/i18n.ts - 32 + 33 @@ -13250,7 +13227,7 @@ Interest apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 312 + 318 @@ -13758,7 +13735,7 @@ Extreme Fear libs/ui/src/lib/i18n.ts - 68 + 69 @@ -13766,7 +13743,7 @@ Extreme Greed libs/ui/src/lib/i18n.ts - 69 + 70 @@ -13774,7 +13751,7 @@ Neutral libs/ui/src/lib/i18n.ts - 72 + 73 @@ -14730,7 +14707,7 @@ Market data is delayed for apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts - 82 + 81 @@ -14981,7 +14958,7 @@ Active Active - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 30 @@ -14989,7 +14966,7 @@ Closed Closed - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 31 @@ -14997,7 +14974,7 @@ Activity Activity - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 219 @@ -15005,7 +14982,7 @@ Dividend Yield Dividend Yield - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 187 @@ -15038,14 +15015,14 @@ Liquidity libs/ui/src/lib/i18n.ts - 43 + 44 Change with currency effect Change with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 52 @@ -15053,10 +15030,26 @@ Performance with currency effect Performance with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 79 + + {VAR_PLURAL, plural, =1 {activity} other {activities}} + {VAR_PLURAL, plural, =1 {activity} other {activities}} + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 14 + + + + Buy and sell + Buy and sell + + libs/ui/src/lib/i18n.ts + 8 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 9042459f8..198523c74 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -117,11 +117,11 @@ 134 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 221 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 331 @@ -385,7 +385,7 @@ 34 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 301 @@ -521,7 +521,7 @@ 26 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 112 @@ -629,7 +629,7 @@ 232 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 228 @@ -653,7 +653,7 @@ 245 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 237 @@ -673,7 +673,7 @@ 130 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 209 @@ -761,7 +761,7 @@ 174 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 254 @@ -777,7 +777,7 @@ 77 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 264 @@ -793,7 +793,7 @@ 316 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 270 @@ -813,7 +813,7 @@ 327 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 282 @@ -929,7 +929,7 @@ 10 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 376 @@ -1053,7 +1053,7 @@ 257 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 356 @@ -1089,12 +1089,12 @@ 6 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 89 libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 + 142 @@ -1114,7 +1114,7 @@ apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 48 + 41 @@ -1534,10 +1534,6 @@ Gérer les Activités apps/client/src/app/components/home-holdings/home-holdings.html - 22 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page.html 32 @@ -1550,7 +1546,7 @@ libs/ui/src/lib/i18n.ts - 70 + 71 @@ -1562,7 +1558,7 @@ libs/ui/src/lib/i18n.ts - 71 + 72 @@ -1694,7 +1690,7 @@ Achat apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 21 + 31 @@ -1702,7 +1698,7 @@ Vente apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 33 + 43 @@ -1710,10 +1706,10 @@ Investissement apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 48 + 58 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 165 @@ -1722,7 +1718,7 @@ Performance Absolue Brute apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 60 + 70 @@ -1730,26 +1726,7 @@ Performance Brute apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 77 - - - - - - - - Frais pour - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12 - - - - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - {VAR_PLURAL, plural, =1 {transaction} autres {transactions}} - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 14 + 85 @@ -1757,7 +1734,7 @@ Performance Absolue Nette apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 116 + 124 @@ -1765,7 +1742,7 @@ Performance nette apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 133 + 139 @@ -1773,7 +1750,7 @@ Actifs Totaux apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 159 + 165 @@ -1781,7 +1758,7 @@ Biens apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 172 + 178 @@ -1789,7 +1766,7 @@ Fonds d'Urgence apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 184 + 190 apps/client/src/app/pages/features/features-page.html @@ -1805,7 +1782,7 @@ Pouvoir d'Achat apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 231 + 237 @@ -1813,7 +1790,7 @@ Exclus de l'Analyse apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 243 + 249 @@ -1821,7 +1798,7 @@ Fortune apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 278 + 284 @@ -1829,7 +1806,7 @@ Performance annualisée apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 290 + 296 @@ -1837,10 +1814,10 @@ Dividende apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 324 + 330 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 177 @@ -1861,22 +1838,26 @@ Veuillez entrer le montant de votre fonds d'urgence : apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 53 + 57 Change Différence - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 63 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + Average Unit Price Prix Unitaire Moyen - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 101 @@ -1884,7 +1865,7 @@ Minimum Price Prix Minimum - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 128 @@ -1892,7 +1873,7 @@ Maximum Price Prix Maximum - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 144 @@ -1900,7 +1881,7 @@ Quantity Quantité - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 154 @@ -1916,7 +1897,7 @@ Report Data Glitch Signaler une Erreur de Données - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 394 @@ -2405,7 +2386,7 @@ Cash apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 205 + 211 @@ -2580,16 +2561,12 @@ 23 - apps/client/src/app/pages/home/home-page.component.ts - 39 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page-routing.module.ts - 13 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 + apps/client/src/app/pages/home/home-page.component.ts + 66 apps/client/src/app/pages/zen/zen-page.component.ts @@ -2601,11 +2578,11 @@ Résumé apps/client/src/app/pages/home/home-page-routing.module.ts - 28 + 33 apps/client/src/app/pages/home/home-page.component.ts - 44 + 71 @@ -2613,11 +2590,11 @@ Marchés apps/client/src/app/pages/home/home-page-routing.module.ts - 33 + 38 apps/client/src/app/pages/home/home-page.component.ts - 49 + 76 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2633,7 +2610,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 + 39 @@ -2661,7 +2638,7 @@ Vente libs/ui/src/lib/i18n.ts - 36 + 37 @@ -2777,7 +2754,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 49 + 44 @@ -2921,7 +2898,7 @@ libs/ui/src/lib/i18n.ts - 31 + 32 @@ -2961,7 +2938,7 @@ Bas apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 216 + 214 @@ -2969,7 +2946,7 @@ Évolution du Portefeuille apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 268 + 264 @@ -2977,7 +2954,7 @@ Historique des Investissements apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 298 + 294 @@ -2985,7 +2962,7 @@ Historique des Dividendes apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 356 + 352 @@ -3028,7 +3005,7 @@ 77 - apps/client/src/app/pages/portfolio/holdings/holdings-page.html + apps/client/src/app/components/home-holdings/home-holdings.html 4 @@ -3197,7 +3174,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 34 + 61 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -3321,7 +3298,7 @@ libs/ui/src/lib/i18n.ts - 33 + 34 @@ -3345,7 +3322,7 @@ Montrer tout libs/ui/src/lib/holdings-table/holdings-table.component.html - 174 + 197 @@ -3377,7 +3354,7 @@ Fonds d'Urgence libs/ui/src/lib/i18n.ts - 12 + 13 @@ -3385,7 +3362,7 @@ Autre libs/ui/src/lib/i18n.ts - 20 + 21 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3397,7 +3374,7 @@ Symbole libs/ui/src/lib/i18n.ts - 24 + 25 @@ -3405,7 +3382,7 @@ Étiquette libs/ui/src/lib/i18n.ts - 25 + 26 @@ -3413,7 +3390,7 @@ Cash libs/ui/src/lib/i18n.ts - 39 + 40 @@ -3421,7 +3398,7 @@ Marchandise libs/ui/src/lib/i18n.ts - 40 + 41 @@ -3429,7 +3406,7 @@ Capital libs/ui/src/lib/i18n.ts - 41 + 42 @@ -3437,7 +3414,7 @@ Revenu Fixe libs/ui/src/lib/i18n.ts - 42 + 43 @@ -3445,7 +3422,7 @@ Immobilier libs/ui/src/lib/i18n.ts - 44 + 45 @@ -3453,7 +3430,7 @@ Obligation libs/ui/src/lib/i18n.ts - 47 + 48 @@ -3461,7 +3438,7 @@ Cryptomonnaie libs/ui/src/lib/i18n.ts - 48 + 49 @@ -3469,7 +3446,7 @@ ETF libs/ui/src/lib/i18n.ts - 49 + 50 @@ -3477,7 +3454,7 @@ SICAV libs/ui/src/lib/i18n.ts - 50 + 51 @@ -3485,7 +3462,7 @@ Métal Précieux libs/ui/src/lib/i18n.ts - 51 + 52 @@ -3493,7 +3470,7 @@ Capital Propre libs/ui/src/lib/i18n.ts - 52 + 53 @@ -3501,7 +3478,7 @@ Action libs/ui/src/lib/i18n.ts - 53 + 54 @@ -3509,7 +3486,7 @@ Afrique libs/ui/src/lib/i18n.ts - 60 + 61 @@ -3517,7 +3494,7 @@ Asie libs/ui/src/lib/i18n.ts - 61 + 62 @@ -3525,7 +3502,7 @@ Europe libs/ui/src/lib/i18n.ts - 62 + 63 @@ -3533,7 +3510,7 @@ Amérique du Nord libs/ui/src/lib/i18n.ts - 63 + 64 @@ -3541,7 +3518,7 @@ Océanie libs/ui/src/lib/i18n.ts - 64 + 65 @@ -3549,7 +3526,7 @@ Amérique du Sud libs/ui/src/lib/i18n.ts - 65 + 66 @@ -3617,7 +3594,7 @@ Core libs/ui/src/lib/i18n.ts - 8 + 9 @@ -3625,7 +3602,7 @@ Donner libs/ui/src/lib/i18n.ts - 13 + 14 @@ -3633,7 +3610,7 @@ Risque élevé libs/ui/src/lib/i18n.ts - 14 + 15 @@ -3641,7 +3618,7 @@ Risque faible libs/ui/src/lib/i18n.ts - 17 + 18 @@ -3649,7 +3626,7 @@ Réserve pour retraite libs/ui/src/lib/i18n.ts - 22 + 23 @@ -3657,7 +3634,7 @@ Satellite libs/ui/src/lib/i18n.ts - 23 + 24 @@ -3917,10 +3894,10 @@ Frais apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 100 + 108 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 199 @@ -3977,7 +3954,7 @@ Passez à Ghostfolio Premium facilement libs/ui/src/lib/i18n.ts - 10 + 11 @@ -4001,7 +3978,7 @@ Passez à Ghostfolio Premium ou Ghostfolio Open Source facilement libs/ui/src/lib/i18n.ts - 9 + 10 @@ -4009,7 +3986,7 @@ Passez à Ghostfolio Open Source ou Ghostfolio Basic facilement libs/ui/src/lib/i18n.ts - 11 + 12 @@ -4249,7 +4226,7 @@ Cette activité existe déjà. libs/ui/src/lib/i18n.ts - 15 + 16 @@ -4341,7 +4318,7 @@ Série en cours apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 319 + 315 @@ -4349,7 +4326,7 @@ Série la plus longue apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 328 + 324 @@ -4357,7 +4334,7 @@ Mois libs/ui/src/lib/i18n.ts - 19 + 20 @@ -4365,7 +4342,7 @@ Années libs/ui/src/lib/i18n.ts - 27 + 28 @@ -4373,7 +4350,7 @@ Mois libs/ui/src/lib/i18n.ts - 18 + 19 @@ -4381,7 +4358,7 @@ Année libs/ui/src/lib/i18n.ts - 26 + 27 @@ -4389,7 +4366,7 @@ Dettes apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 258 + 264 apps/client/src/app/pages/features/features-page.html @@ -4529,7 +4506,7 @@ Dette libs/ui/src/lib/i18n.ts - 35 + 36 @@ -9865,7 +9842,7 @@ Buy libs/ui/src/lib/i18n.ts - 30 + 31 @@ -9873,7 +9850,7 @@ Valuable libs/ui/src/lib/i18n.ts - 34 + 35 @@ -9897,7 +9874,7 @@ Assets apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 224 @@ -9905,7 +9882,7 @@ Preset libs/ui/src/lib/i18n.ts - 21 + 22 @@ -9929,7 +9906,7 @@ Japan libs/ui/src/lib/i18n.ts - 16 + 17 @@ -13241,7 +13218,7 @@ Fee libs/ui/src/lib/i18n.ts - 32 + 33 @@ -13249,7 +13226,7 @@ Interest apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 312 + 318 @@ -13757,7 +13734,7 @@ Extreme Fear libs/ui/src/lib/i18n.ts - 68 + 69 @@ -13765,7 +13742,7 @@ Extreme Greed libs/ui/src/lib/i18n.ts - 69 + 70 @@ -13773,7 +13750,7 @@ Neutral libs/ui/src/lib/i18n.ts - 72 + 73 @@ -14729,7 +14706,7 @@ Market data is delayed for apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts - 82 + 81 @@ -14980,7 +14957,7 @@ Active Active - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 30 @@ -14988,7 +14965,7 @@ Closed Closed - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 31 @@ -14996,7 +14973,7 @@ Activity Activity - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 219 @@ -15004,7 +14981,7 @@ Dividend Yield Dividend Yield - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 187 @@ -15037,14 +15014,14 @@ Liquidity libs/ui/src/lib/i18n.ts - 43 + 44 Change with currency effect Change with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 52 @@ -15052,10 +15029,26 @@ Performance with currency effect Performance with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 79 + + {VAR_PLURAL, plural, =1 {activity} other {activities}} + {VAR_PLURAL, plural, =1 {activity} other {activities}} + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 14 + + + + Buy and sell + Buy and sell + + libs/ui/src/lib/i18n.ts + 8 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 6e141e532..2589c8146 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -106,11 +106,11 @@ 134 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 221 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 331 @@ -338,7 +338,7 @@ 34 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 301 @@ -466,7 +466,7 @@ 26 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 112 @@ -562,7 +562,7 @@ 130 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 209 @@ -842,7 +842,7 @@ 257 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 356 @@ -1223,10 +1223,6 @@ Gestione delle attività apps/client/src/app/components/home-holdings/home-holdings.html - 22 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page.html 32 @@ -1331,7 +1327,7 @@ Compra apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 21 + 31 @@ -1339,7 +1335,7 @@ Vendi apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 33 + 43 @@ -1347,10 +1343,10 @@ Investimento apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 48 + 58 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 165 @@ -1359,7 +1355,7 @@ Prestazioni lorde assolute apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 60 + 70 @@ -1367,26 +1363,7 @@ Prestazioni lorde apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 77 - - - - - - - - Commissioni per - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12 - - - - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - {VAR_PLURAL, plural, =1 {transazione} other {transazioni}} - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 14 + 85 @@ -1394,7 +1371,7 @@ Prestazioni nette assolute apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 116 + 124 @@ -1402,7 +1379,7 @@ Prestazioni nette apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 133 + 139 @@ -1410,7 +1387,7 @@ Asset totali apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 159 + 165 @@ -1418,7 +1395,7 @@ Oggetti di valore apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 172 + 178 @@ -1426,7 +1403,7 @@ Fondo di emergenza apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 184 + 190 apps/client/src/app/pages/features/features-page.html @@ -1442,7 +1419,7 @@ Potere d'acquisto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 231 + 237 @@ -1450,7 +1427,7 @@ Patrimonio netto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 278 + 284 @@ -1458,7 +1435,7 @@ Prestazioni annualizzate apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 290 + 296 @@ -1466,10 +1443,10 @@ Dividendo apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 324 + 330 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 177 @@ -1490,7 +1467,7 @@ Inserisci l'importo del tuo fondo di emergenza: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 53 + 57 @@ -1505,7 +1482,7 @@ 316 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 270 @@ -1525,7 +1502,7 @@ 327 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 282 @@ -1537,7 +1514,7 @@ 10 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 376 @@ -1553,7 +1530,7 @@ Report Data Glitch Segnala un'anomalia dei dati - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 394 @@ -1573,12 +1550,12 @@ 6 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 89 libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 + 142 @@ -1586,7 +1563,7 @@ Mostra tutti libs/ui/src/lib/holdings-table/holdings-table.component.html - 174 + 197 @@ -2050,7 +2027,7 @@ Contanti apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 205 + 211 @@ -2174,7 +2151,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 34 + 61 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -2190,11 +2167,11 @@ Mercati apps/client/src/app/pages/home/home-page-routing.module.ts - 33 + 38 apps/client/src/app/pages/home/home-page.component.ts - 49 + 76 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2210,7 +2187,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 49 + 44 @@ -2314,7 +2291,7 @@ Cronologia degli investimenti apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 298 + 294 @@ -2330,7 +2307,7 @@ In basso apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 216 + 214 @@ -2373,16 +2350,12 @@ 23 - apps/client/src/app/pages/home/home-page.component.ts - 39 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page-routing.module.ts - 13 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 + apps/client/src/app/pages/home/home-page.component.ts + 66 apps/client/src/app/pages/zen/zen-page.component.ts @@ -2397,7 +2370,7 @@ 77 - apps/client/src/app/pages/portfolio/holdings/holdings-page.html + apps/client/src/app/components/home-holdings/home-holdings.html 4 @@ -2434,7 +2407,7 @@ Vendi libs/ui/src/lib/i18n.ts - 36 + 37 @@ -2453,7 +2426,7 @@ Quantity Quantità - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 154 @@ -2529,7 +2502,7 @@ 232 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 228 @@ -2546,7 +2519,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 + 39 @@ -2582,7 +2555,7 @@ apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 48 + 41 @@ -2849,9 +2822,13 @@ Change Modifica - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 63 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + Developed Markets @@ -2881,7 +2858,7 @@ 245 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 237 @@ -2893,7 +2870,7 @@ Average Unit Price Prezzo unitario medio - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 101 @@ -2901,7 +2878,7 @@ Maximum Price Prezzo massimo - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 144 @@ -2937,7 +2914,7 @@ 174 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 254 @@ -2953,7 +2930,7 @@ 77 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 264 @@ -2961,7 +2938,7 @@ Minimum Price Prezzo minimo - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 128 @@ -2990,7 +2967,7 @@ libs/ui/src/lib/i18n.ts - 33 + 34 @@ -3034,7 +3011,7 @@ libs/ui/src/lib/i18n.ts - 70 + 71 @@ -3046,7 +3023,7 @@ libs/ui/src/lib/i18n.ts - 71 + 72 @@ -3114,7 +3091,7 @@ Escluso dall'analisi apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 243 + 249 @@ -3170,7 +3147,7 @@ Evoluzione del portafoglio apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 268 + 264 @@ -3202,7 +3179,7 @@ Simbolo libs/ui/src/lib/i18n.ts - 24 + 25 @@ -3210,7 +3187,7 @@ Etichetta libs/ui/src/lib/i18n.ts - 25 + 26 @@ -3218,7 +3195,7 @@ Contanti libs/ui/src/lib/i18n.ts - 39 + 40 @@ -3226,7 +3203,7 @@ Materia prima libs/ui/src/lib/i18n.ts - 40 + 41 @@ -3234,7 +3211,7 @@ Azione ordinaria libs/ui/src/lib/i18n.ts - 41 + 42 @@ -3242,7 +3219,7 @@ Reddito fisso libs/ui/src/lib/i18n.ts - 42 + 43 @@ -3250,7 +3227,7 @@ Immobiliare libs/ui/src/lib/i18n.ts - 44 + 45 @@ -3258,7 +3235,7 @@ Obbligazioni libs/ui/src/lib/i18n.ts - 47 + 48 @@ -3266,7 +3243,7 @@ Criptovaluta libs/ui/src/lib/i18n.ts - 48 + 49 @@ -3274,7 +3251,7 @@ ETF libs/ui/src/lib/i18n.ts - 49 + 50 @@ -3282,7 +3259,7 @@ Fondo comune di investimento libs/ui/src/lib/i18n.ts - 50 + 51 @@ -3290,7 +3267,7 @@ Metalli preziosi libs/ui/src/lib/i18n.ts - 51 + 52 @@ -3298,7 +3275,7 @@ Azione ordinaria privata libs/ui/src/lib/i18n.ts - 52 + 53 @@ -3306,7 +3283,7 @@ Azione libs/ui/src/lib/i18n.ts - 53 + 54 @@ -3314,7 +3291,7 @@ Fondo di emergenza libs/ui/src/lib/i18n.ts - 12 + 13 @@ -3322,7 +3299,7 @@ Altro libs/ui/src/lib/i18n.ts - 20 + 21 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3346,7 +3323,7 @@ Nord America libs/ui/src/lib/i18n.ts - 63 + 64 @@ -3354,7 +3331,7 @@ Africa libs/ui/src/lib/i18n.ts - 60 + 61 @@ -3362,7 +3339,7 @@ Asia libs/ui/src/lib/i18n.ts - 61 + 62 @@ -3370,7 +3347,7 @@ Europa libs/ui/src/lib/i18n.ts - 62 + 63 @@ -3378,7 +3355,7 @@ Oceania libs/ui/src/lib/i18n.ts - 64 + 65 @@ -3386,7 +3363,7 @@ Sud America libs/ui/src/lib/i18n.ts - 65 + 66 @@ -3486,7 +3463,7 @@ libs/ui/src/lib/i18n.ts - 31 + 32 @@ -3494,7 +3471,7 @@ Cronologia dei dividendi apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 356 + 352 @@ -3566,11 +3543,11 @@ Summario apps/client/src/app/pages/home/home-page-routing.module.ts - 28 + 33 apps/client/src/app/pages/home/home-page.component.ts - 44 + 71 @@ -3618,7 +3595,7 @@ Nucleo libs/ui/src/lib/i18n.ts - 8 + 9 @@ -3626,7 +3603,7 @@ Sovvenzione libs/ui/src/lib/i18n.ts - 13 + 14 @@ -3634,7 +3611,7 @@ Rischio più elevato libs/ui/src/lib/i18n.ts - 14 + 15 @@ -3642,7 +3619,7 @@ Rischio inferiore libs/ui/src/lib/i18n.ts - 17 + 18 @@ -3650,7 +3627,7 @@ Fondo pensione libs/ui/src/lib/i18n.ts - 22 + 23 @@ -3658,7 +3635,7 @@ Satellite libs/ui/src/lib/i18n.ts - 23 + 24 @@ -3918,10 +3895,10 @@ Commissioni apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 100 + 108 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 199 @@ -3978,7 +3955,7 @@ Passa facilmente a Ghostfolio Premium libs/ui/src/lib/i18n.ts - 10 + 11 @@ -4002,7 +3979,7 @@ Passa facilmente a Ghostfolio Premium o Ghostfolio Open Source libs/ui/src/lib/i18n.ts - 9 + 10 @@ -4010,7 +3987,7 @@ Passa facilmente a Ghostfolio Open Source o a Ghostfolio Basic libs/ui/src/lib/i18n.ts - 11 + 12 @@ -4250,7 +4227,7 @@ Questa attività esiste già. libs/ui/src/lib/i18n.ts - 15 + 16 @@ -4342,7 +4319,7 @@ Serie attuale apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 319 + 315 @@ -4350,7 +4327,7 @@ Serie più lunga apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 328 + 324 @@ -4358,7 +4335,7 @@ Mesi libs/ui/src/lib/i18n.ts - 19 + 20 @@ -4366,7 +4343,7 @@ Anni libs/ui/src/lib/i18n.ts - 27 + 28 @@ -4374,7 +4351,7 @@ Mese libs/ui/src/lib/i18n.ts - 18 + 19 @@ -4382,7 +4359,7 @@ Anno libs/ui/src/lib/i18n.ts - 26 + 27 @@ -4390,7 +4367,7 @@ Passività apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 258 + 264 apps/client/src/app/pages/features/features-page.html @@ -4530,7 +4507,7 @@ Passività libs/ui/src/lib/i18n.ts - 35 + 36 @@ -9866,7 +9843,7 @@ Compra libs/ui/src/lib/i18n.ts - 30 + 31 @@ -9874,7 +9851,7 @@ Prezioso libs/ui/src/lib/i18n.ts - 34 + 35 @@ -9898,7 +9875,7 @@ Asset apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 224 @@ -9906,7 +9883,7 @@ Preimpostato libs/ui/src/lib/i18n.ts - 21 + 22 @@ -9930,7 +9907,7 @@ Giappone libs/ui/src/lib/i18n.ts - 16 + 17 @@ -13242,7 +13219,7 @@ Fee libs/ui/src/lib/i18n.ts - 32 + 33 @@ -13250,7 +13227,7 @@ Interest apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 312 + 318 @@ -13758,7 +13735,7 @@ Extreme Fear libs/ui/src/lib/i18n.ts - 68 + 69 @@ -13766,7 +13743,7 @@ Extreme Greed libs/ui/src/lib/i18n.ts - 69 + 70 @@ -13774,7 +13751,7 @@ Neutral libs/ui/src/lib/i18n.ts - 72 + 73 @@ -14730,7 +14707,7 @@ Market data is delayed for apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts - 82 + 81 @@ -14981,7 +14958,7 @@ Active Active - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 30 @@ -14989,7 +14966,7 @@ Closed Closed - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 31 @@ -14997,7 +14974,7 @@ Activity Activity - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 219 @@ -15005,7 +14982,7 @@ Dividend Yield Dividend Yield - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 187 @@ -15038,14 +15015,14 @@ Liquidity libs/ui/src/lib/i18n.ts - 43 + 44 Change with currency effect Change with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 52 @@ -15053,10 +15030,26 @@ Performance with currency effect Performance with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 79 + + {VAR_PLURAL, plural, =1 {activity} other {activities}} + {VAR_PLURAL, plural, =1 {activity} other {activities}} + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 14 + + + + Buy and sell + Buy and sell + + libs/ui/src/lib/i18n.ts + 8 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index da29f87e3..620200f74 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -105,11 +105,11 @@ 134 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 221 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 331 @@ -337,7 +337,7 @@ 34 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 301 @@ -465,7 +465,7 @@ 26 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 112 @@ -561,7 +561,7 @@ 130 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 209 @@ -841,7 +841,7 @@ 257 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 356 @@ -1222,10 +1222,6 @@ Activiteiten beheren apps/client/src/app/components/home-holdings/home-holdings.html - 22 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page.html 32 @@ -1330,7 +1326,7 @@ Kopen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 21 + 31 @@ -1338,7 +1334,7 @@ Verkopen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 33 + 43 @@ -1346,10 +1342,10 @@ Belegging apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 48 + 58 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 165 @@ -1358,7 +1354,7 @@ Absoluut bruto rendement apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 60 + 70 @@ -1366,26 +1362,7 @@ Bruto rendement apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 77 - - - - - - - - Transactiekosten voor - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12 - - - - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 14 + 85 @@ -1393,7 +1370,7 @@ Absoluut netto rendement apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 116 + 124 @@ -1401,7 +1378,7 @@ Netto rendement apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 133 + 139 @@ -1409,7 +1386,7 @@ Totaal Activa apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 159 + 165 @@ -1417,7 +1394,7 @@ Kostbaarheden apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 172 + 178 @@ -1425,7 +1402,7 @@ Noodfonds apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 184 + 190 apps/client/src/app/pages/features/features-page.html @@ -1441,7 +1418,7 @@ Koopkracht apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 231 + 237 @@ -1449,7 +1426,7 @@ Netto waarde apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 278 + 284 @@ -1457,7 +1434,7 @@ Rendement per jaar apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 290 + 296 @@ -1465,10 +1442,10 @@ Dividend apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 324 + 330 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 177 @@ -1489,7 +1466,7 @@ Voer het bedrag van je noodfonds in: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 53 + 57 @@ -1504,7 +1481,7 @@ 316 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 270 @@ -1524,7 +1501,7 @@ 327 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 282 @@ -1536,7 +1513,7 @@ 10 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 376 @@ -1552,7 +1529,7 @@ Report Data Glitch Gegevensstoring melden - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 394 @@ -1572,12 +1549,12 @@ 6 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 89 libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 + 142 @@ -1585,7 +1562,7 @@ Toon alle libs/ui/src/lib/holdings-table/holdings-table.component.html - 174 + 197 @@ -2049,7 +2026,7 @@ Contant geld apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 205 + 211 @@ -2173,7 +2150,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 34 + 61 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -2189,11 +2166,11 @@ Markten apps/client/src/app/pages/home/home-page-routing.module.ts - 33 + 38 apps/client/src/app/pages/home/home-page.component.ts - 49 + 76 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2209,7 +2186,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 49 + 44 @@ -2313,7 +2290,7 @@ Tijdlijn investeringen apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 298 + 294 @@ -2329,7 +2306,7 @@ Verliezers apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 216 + 214 @@ -2372,16 +2349,12 @@ 23 - apps/client/src/app/pages/home/home-page.component.ts - 39 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page-routing.module.ts - 13 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 + apps/client/src/app/pages/home/home-page.component.ts + 66 apps/client/src/app/pages/zen/zen-page.component.ts @@ -2396,7 +2369,7 @@ 77 - apps/client/src/app/pages/portfolio/holdings/holdings-page.html + apps/client/src/app/components/home-holdings/home-holdings.html 4 @@ -2433,7 +2406,7 @@ Verkopen libs/ui/src/lib/i18n.ts - 36 + 37 @@ -2452,7 +2425,7 @@ Quantity Hoeveelheid - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 154 @@ -2528,7 +2501,7 @@ 232 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 228 @@ -2545,7 +2518,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 + 39 @@ -2581,7 +2554,7 @@ apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 48 + 41 @@ -2848,9 +2821,13 @@ Change Verandering - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 63 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + Developed Markets @@ -2880,7 +2857,7 @@ 245 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 237 @@ -2892,7 +2869,7 @@ Average Unit Price Gemiddelde prijs per eenheid - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 101 @@ -2900,7 +2877,7 @@ Maximum Price Maximale prijs - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 144 @@ -2936,7 +2913,7 @@ 174 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 254 @@ -2952,7 +2929,7 @@ 77 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 264 @@ -2960,7 +2937,7 @@ Minimum Price Minimale prijs - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 128 @@ -2989,7 +2966,7 @@ libs/ui/src/lib/i18n.ts - 33 + 34 @@ -3033,7 +3010,7 @@ libs/ui/src/lib/i18n.ts - 70 + 71 @@ -3045,7 +3022,7 @@ libs/ui/src/lib/i18n.ts - 71 + 72 @@ -3113,7 +3090,7 @@ Uitgesloten van analyse apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 243 + 249 @@ -3169,7 +3146,7 @@ Waardeontwikkeling van portefeuille apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 268 + 264 @@ -3201,7 +3178,7 @@ Symbool libs/ui/src/lib/i18n.ts - 24 + 25 @@ -3209,7 +3186,7 @@ Label libs/ui/src/lib/i18n.ts - 25 + 26 @@ -3217,7 +3194,7 @@ Contant geld libs/ui/src/lib/i18n.ts - 39 + 40 @@ -3225,7 +3202,7 @@ Grondstof libs/ui/src/lib/i18n.ts - 40 + 41 @@ -3233,7 +3210,7 @@ Equity libs/ui/src/lib/i18n.ts - 41 + 42 @@ -3241,7 +3218,7 @@ Vast inkomen libs/ui/src/lib/i18n.ts - 42 + 43 @@ -3249,7 +3226,7 @@ Vastgoed libs/ui/src/lib/i18n.ts - 44 + 45 @@ -3257,7 +3234,7 @@ Obligatie libs/ui/src/lib/i18n.ts - 47 + 48 @@ -3265,7 +3242,7 @@ Cryptovaluta libs/ui/src/lib/i18n.ts - 48 + 49 @@ -3273,7 +3250,7 @@ ETF libs/ui/src/lib/i18n.ts - 49 + 50 @@ -3281,7 +3258,7 @@ Beleggingsfonds libs/ui/src/lib/i18n.ts - 50 + 51 @@ -3289,7 +3266,7 @@ Edelmetaal libs/ui/src/lib/i18n.ts - 51 + 52 @@ -3297,7 +3274,7 @@ Private equity libs/ui/src/lib/i18n.ts - 52 + 53 @@ -3305,7 +3282,7 @@ Aandeel libs/ui/src/lib/i18n.ts - 53 + 54 @@ -3313,7 +3290,7 @@ Noodfonds libs/ui/src/lib/i18n.ts - 12 + 13 @@ -3321,7 +3298,7 @@ Anders libs/ui/src/lib/i18n.ts - 20 + 21 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3345,7 +3322,7 @@ Noord-Amerika libs/ui/src/lib/i18n.ts - 63 + 64 @@ -3353,7 +3330,7 @@ Afrika libs/ui/src/lib/i18n.ts - 60 + 61 @@ -3361,7 +3338,7 @@ Azië libs/ui/src/lib/i18n.ts - 61 + 62 @@ -3369,7 +3346,7 @@ Europa libs/ui/src/lib/i18n.ts - 62 + 63 @@ -3377,7 +3354,7 @@ Oceanië libs/ui/src/lib/i18n.ts - 64 + 65 @@ -3385,7 +3362,7 @@ Zuid-Amerika libs/ui/src/lib/i18n.ts - 65 + 66 @@ -3485,7 +3462,7 @@ libs/ui/src/lib/i18n.ts - 31 + 32 @@ -3493,7 +3470,7 @@ Tijdlijn dividend apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 356 + 352 @@ -3565,11 +3542,11 @@ Samenvatting apps/client/src/app/pages/home/home-page-routing.module.ts - 28 + 33 apps/client/src/app/pages/home/home-page.component.ts - 44 + 71 @@ -3617,7 +3594,7 @@ Kern libs/ui/src/lib/i18n.ts - 8 + 9 @@ -3625,7 +3602,7 @@ Toelage libs/ui/src/lib/i18n.ts - 13 + 14 @@ -3633,7 +3610,7 @@ Hoger risico libs/ui/src/lib/i18n.ts - 14 + 15 @@ -3641,7 +3618,7 @@ Lager risico libs/ui/src/lib/i18n.ts - 17 + 18 @@ -3649,7 +3626,7 @@ Pensioen libs/ui/src/lib/i18n.ts - 22 + 23 @@ -3657,7 +3634,7 @@ Satelliet libs/ui/src/lib/i18n.ts - 23 + 24 @@ -3917,10 +3894,10 @@ Kosten apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 100 + 108 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 199 @@ -3977,7 +3954,7 @@ Eenvoudig overstappen naar Ghostfolio Premium libs/ui/src/lib/i18n.ts - 10 + 11 @@ -4001,7 +3978,7 @@ Eenvoudig overstappen naar Ghostfolio Premium of Ghostfolio Open Source libs/ui/src/lib/i18n.ts - 9 + 10 @@ -4009,7 +3986,7 @@ Eenvoudig overstappen naar Ghostfolio Open Source of Ghostfolio Basic libs/ui/src/lib/i18n.ts - 11 + 12 @@ -4249,7 +4226,7 @@ Deze activiteit bestaat al. libs/ui/src/lib/i18n.ts - 15 + 16 @@ -4341,7 +4318,7 @@ Huidige reeks apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 319 + 315 @@ -4349,7 +4326,7 @@ Langste reeks apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 328 + 324 @@ -4357,7 +4334,7 @@ Maanden libs/ui/src/lib/i18n.ts - 19 + 20 @@ -4365,7 +4342,7 @@ Jaren libs/ui/src/lib/i18n.ts - 27 + 28 @@ -4373,7 +4350,7 @@ Maand libs/ui/src/lib/i18n.ts - 18 + 19 @@ -4381,7 +4358,7 @@ Jaar libs/ui/src/lib/i18n.ts - 26 + 27 @@ -4389,7 +4366,7 @@ Verplichtingen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 258 + 264 apps/client/src/app/pages/features/features-page.html @@ -4529,7 +4506,7 @@ Verplichtingen libs/ui/src/lib/i18n.ts - 35 + 36 @@ -9865,7 +9842,7 @@ Koop libs/ui/src/lib/i18n.ts - 30 + 31 @@ -9873,7 +9850,7 @@ Waardevol libs/ui/src/lib/i18n.ts - 34 + 35 @@ -9897,7 +9874,7 @@ Assets apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 224 @@ -9905,7 +9882,7 @@ Voorinstelling libs/ui/src/lib/i18n.ts - 21 + 22 @@ -9929,7 +9906,7 @@ Japan libs/ui/src/lib/i18n.ts - 16 + 17 @@ -13241,7 +13218,7 @@ Fee libs/ui/src/lib/i18n.ts - 32 + 33 @@ -13249,7 +13226,7 @@ Interest apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 312 + 318 @@ -13757,7 +13734,7 @@ Extreme Fear libs/ui/src/lib/i18n.ts - 68 + 69 @@ -13765,7 +13742,7 @@ Extreme Greed libs/ui/src/lib/i18n.ts - 69 + 70 @@ -13773,7 +13750,7 @@ Neutral libs/ui/src/lib/i18n.ts - 72 + 73 @@ -14729,7 +14706,7 @@ Market data is delayed for apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts - 82 + 81 @@ -14980,7 +14957,7 @@ Active Active - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 30 @@ -14988,7 +14965,7 @@ Closed Closed - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 31 @@ -14996,7 +14973,7 @@ Activity Activity - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 219 @@ -15004,7 +14981,7 @@ Dividend Yield Dividend Yield - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 187 @@ -15037,14 +15014,14 @@ Liquidity libs/ui/src/lib/i18n.ts - 43 + 44 Change with currency effect Change with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 52 @@ -15052,10 +15029,26 @@ Performance with currency effect Performance with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 79 + + {VAR_PLURAL, plural, =1 {activity} other {activities}} + {VAR_PLURAL, plural, =1 {activity} other {activities}} + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 14 + + + + Buy and sell + Buy and sell + + libs/ui/src/lib/i18n.ts + 8 + + diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index 4dec633e4..4ea586194 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -1621,11 +1621,11 @@ 134 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 221 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 331 @@ -1917,7 +1917,7 @@ 34 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 301 @@ -2037,7 +2037,7 @@ 26 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 112 @@ -2177,7 +2177,7 @@ 232 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 228 @@ -2201,7 +2201,7 @@ 245 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 237 @@ -2221,7 +2221,7 @@ 130 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 209 @@ -2341,7 +2341,7 @@ 174 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 254 @@ -2357,7 +2357,7 @@ 77 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 264 @@ -2373,7 +2373,7 @@ 316 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 270 @@ -2393,7 +2393,7 @@ 327 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 282 @@ -2681,7 +2681,7 @@ 257 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 356 @@ -2733,7 +2733,7 @@ 10 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 376 @@ -2841,12 +2841,12 @@ 6 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 89 libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 + 142 @@ -2874,7 +2874,7 @@ apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 48 + 41 @@ -3010,10 +3010,6 @@ Manage Activities apps/client/src/app/components/home-holdings/home-holdings.html - 22 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page.html 32 @@ -3026,7 +3022,7 @@ libs/ui/src/lib/i18n.ts - 70 + 71 @@ -3038,7 +3034,7 @@ libs/ui/src/lib/i18n.ts - 71 + 72 @@ -3249,34 +3245,12 @@ 3 - - - - - - - - - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12 - - - - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 14 - - Buy Buy apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 21 + 31 @@ -3284,7 +3258,7 @@ Sell apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 33 + 43 @@ -3292,10 +3266,10 @@ Investment apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 48 + 58 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 165 @@ -3304,7 +3278,7 @@ Absolute Gross Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 60 + 70 @@ -3312,7 +3286,7 @@ Gross Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 77 + 85 @@ -3320,10 +3294,10 @@ Fees apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 100 + 108 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 199 @@ -3336,7 +3310,7 @@ Absolute Net Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 116 + 124 @@ -3344,7 +3318,7 @@ Net Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 133 + 139 @@ -3352,7 +3326,7 @@ Total Assets apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 159 + 165 @@ -3360,7 +3334,7 @@ Valuables apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 172 + 178 @@ -3368,7 +3342,7 @@ Emergency Fund apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 184 + 190 apps/client/src/app/pages/features/features-page.html @@ -3384,7 +3358,7 @@ Cash apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 205 + 211 @@ -3392,7 +3366,7 @@ Assets apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 224 @@ -3400,7 +3374,7 @@ Buying Power apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 231 + 237 @@ -3408,7 +3382,7 @@ Excluded from Analysis apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 243 + 249 @@ -3416,7 +3390,7 @@ Liabilities apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 258 + 264 apps/client/src/app/pages/features/features-page.html @@ -3428,7 +3402,7 @@ Net Worth apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 278 + 284 @@ -3436,7 +3410,7 @@ Annualized Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 290 + 296 @@ -3444,7 +3418,7 @@ Interest apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 312 + 318 @@ -3452,10 +3426,10 @@ Dividend apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 324 + 330 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 177 @@ -3476,22 +3450,26 @@ Please enter the amount of your emergency fund: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 53 + 57 Change Change - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 63 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + Average Unit Price Average Unit Price - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 101 @@ -3499,7 +3477,7 @@ Minimum Price Minimum Price - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 128 @@ -3507,7 +3485,7 @@ Maximum Price Maximum Price - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 144 @@ -3515,7 +3493,7 @@ Quantity Quantity - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 154 @@ -3531,7 +3509,7 @@ Report Data Glitch Report Data Glitch - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 394 @@ -4252,7 +4230,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 34 + 61 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -4455,16 +4433,12 @@ 23 - apps/client/src/app/pages/home/home-page.component.ts - 39 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page-routing.module.ts - 13 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 + apps/client/src/app/pages/home/home-page.component.ts + 66 apps/client/src/app/pages/zen/zen-page.component.ts @@ -4476,11 +4450,11 @@ Summary apps/client/src/app/pages/home/home-page-routing.module.ts - 28 + 33 apps/client/src/app/pages/home/home-page.component.ts - 44 + 71 @@ -4488,11 +4462,11 @@ Markets apps/client/src/app/pages/home/home-page-routing.module.ts - 33 + 38 apps/client/src/app/pages/home/home-page.component.ts - 49 + 76 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -4940,7 +4914,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 + 39 @@ -5204,7 +5178,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 49 + 44 @@ -5384,7 +5358,7 @@ libs/ui/src/lib/i18n.ts - 31 + 32 @@ -5432,7 +5406,7 @@ Bottom apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 216 + 214 @@ -5440,7 +5414,7 @@ Portfolio Evolution apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 268 + 264 @@ -5448,7 +5422,7 @@ Investment Timeline apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 298 + 294 @@ -5456,7 +5430,7 @@ Current Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 319 + 315 @@ -5464,7 +5438,7 @@ Longest Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 328 + 324 @@ -5472,7 +5446,7 @@ Dividend Timeline apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 356 + 352 @@ -5539,7 +5513,7 @@ 77 - apps/client/src/app/pages/portfolio/holdings/holdings-page.html + apps/client/src/app/components/home-holdings/home-holdings.html 4 @@ -13328,7 +13302,7 @@ libs/ui/src/lib/i18n.ts - 33 + 34 @@ -13352,7 +13326,7 @@ Show all libs/ui/src/lib/holdings-table/holdings-table.component.html - 174 + 197 @@ -13392,7 +13366,7 @@ Core libs/ui/src/lib/i18n.ts - 8 + 9 @@ -13400,7 +13374,7 @@ Switch to Ghostfolio Premium or Ghostfolio Open Source easily libs/ui/src/lib/i18n.ts - 9 + 10 @@ -13408,7 +13382,7 @@ Switch to Ghostfolio Premium easily libs/ui/src/lib/i18n.ts - 10 + 11 @@ -13416,7 +13390,7 @@ Switch to Ghostfolio Open Source or Ghostfolio Basic easily libs/ui/src/lib/i18n.ts - 11 + 12 @@ -13424,7 +13398,7 @@ Emergency Fund libs/ui/src/lib/i18n.ts - 12 + 13 @@ -13432,7 +13406,7 @@ Grant libs/ui/src/lib/i18n.ts - 13 + 14 @@ -13440,7 +13414,7 @@ Higher Risk libs/ui/src/lib/i18n.ts - 14 + 15 @@ -13448,7 +13422,7 @@ This activity already exists. libs/ui/src/lib/i18n.ts - 15 + 16 @@ -13456,7 +13430,7 @@ Japan libs/ui/src/lib/i18n.ts - 16 + 17 @@ -13464,7 +13438,7 @@ Lower Risk libs/ui/src/lib/i18n.ts - 17 + 18 @@ -13472,7 +13446,7 @@ Month libs/ui/src/lib/i18n.ts - 18 + 19 @@ -13480,7 +13454,7 @@ Months libs/ui/src/lib/i18n.ts - 19 + 20 @@ -13488,7 +13462,7 @@ Other libs/ui/src/lib/i18n.ts - 20 + 21 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -13500,7 +13474,7 @@ Preset libs/ui/src/lib/i18n.ts - 21 + 22 @@ -13508,7 +13482,7 @@ Retirement Provision libs/ui/src/lib/i18n.ts - 22 + 23 @@ -13516,7 +13490,7 @@ Satellite libs/ui/src/lib/i18n.ts - 23 + 24 @@ -13524,7 +13498,7 @@ Symbol libs/ui/src/lib/i18n.ts - 24 + 25 @@ -13532,7 +13506,7 @@ Tag libs/ui/src/lib/i18n.ts - 25 + 26 @@ -13540,7 +13514,7 @@ Year libs/ui/src/lib/i18n.ts - 26 + 27 @@ -13548,7 +13522,7 @@ Years libs/ui/src/lib/i18n.ts - 27 + 28 @@ -13556,7 +13530,7 @@ Buy libs/ui/src/lib/i18n.ts - 30 + 31 @@ -13564,7 +13538,7 @@ Fee libs/ui/src/lib/i18n.ts - 32 + 33 @@ -13572,7 +13546,7 @@ Valuable libs/ui/src/lib/i18n.ts - 34 + 35 @@ -13580,7 +13554,7 @@ Liability libs/ui/src/lib/i18n.ts - 35 + 36 @@ -13588,7 +13562,7 @@ Sell libs/ui/src/lib/i18n.ts - 36 + 37 @@ -13596,7 +13570,7 @@ Cash libs/ui/src/lib/i18n.ts - 39 + 40 @@ -13604,7 +13578,7 @@ Commodity libs/ui/src/lib/i18n.ts - 40 + 41 @@ -13612,7 +13586,7 @@ Equity libs/ui/src/lib/i18n.ts - 41 + 42 @@ -13620,7 +13594,7 @@ Fixed Income libs/ui/src/lib/i18n.ts - 42 + 43 @@ -13628,7 +13602,7 @@ Real Estate libs/ui/src/lib/i18n.ts - 44 + 45 @@ -13636,7 +13610,7 @@ Bond libs/ui/src/lib/i18n.ts - 47 + 48 @@ -13644,7 +13618,7 @@ Cryptocurrency libs/ui/src/lib/i18n.ts - 48 + 49 @@ -13652,7 +13626,7 @@ ETF libs/ui/src/lib/i18n.ts - 49 + 50 @@ -13660,7 +13634,7 @@ Mutual Fund libs/ui/src/lib/i18n.ts - 50 + 51 @@ -13668,7 +13642,7 @@ Precious Metal libs/ui/src/lib/i18n.ts - 51 + 52 @@ -13676,7 +13650,7 @@ Private Equity libs/ui/src/lib/i18n.ts - 52 + 53 @@ -13684,7 +13658,7 @@ Stock libs/ui/src/lib/i18n.ts - 53 + 54 @@ -13692,7 +13666,7 @@ Africa libs/ui/src/lib/i18n.ts - 60 + 61 @@ -13700,7 +13674,7 @@ Asia libs/ui/src/lib/i18n.ts - 61 + 62 @@ -13708,7 +13682,7 @@ Europe libs/ui/src/lib/i18n.ts - 62 + 63 @@ -13716,7 +13690,7 @@ North America libs/ui/src/lib/i18n.ts - 63 + 64 @@ -13724,7 +13698,7 @@ Oceania libs/ui/src/lib/i18n.ts - 64 + 65 @@ -13732,7 +13706,7 @@ South America libs/ui/src/lib/i18n.ts - 65 + 66 @@ -13740,7 +13714,7 @@ Extreme Fear libs/ui/src/lib/i18n.ts - 68 + 69 @@ -13748,7 +13722,7 @@ Extreme Greed libs/ui/src/lib/i18n.ts - 69 + 70 @@ -13756,7 +13730,7 @@ Neutral libs/ui/src/lib/i18n.ts - 72 + 73 @@ -14732,7 +14706,7 @@ Market data is delayed for apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts - 82 + 81 @@ -14983,7 +14957,7 @@ Active Active - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 30 @@ -14991,7 +14965,7 @@ Closed Closed - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 31 @@ -14999,7 +14973,7 @@ Activity Activity - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 219 @@ -15007,7 +14981,7 @@ Dividend Yield Dividend Yield - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 187 @@ -15040,14 +15014,14 @@ Liquidity libs/ui/src/lib/i18n.ts - 43 + 44 Change with currency effect Change with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 52 @@ -15055,10 +15029,26 @@ Performance with currency effect Performance with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 79 + + {VAR_PLURAL, plural, =1 {activity} other {activities}} + {VAR_PLURAL, plural, =1 {activity} other {activities}} + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 14 + + + + Buy and sell + Buy and sell + + libs/ui/src/lib/i18n.ts + 8 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index a467edaa5..1709130f0 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -117,11 +117,11 @@ 134 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 221 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 331 @@ -385,7 +385,7 @@ 34 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 301 @@ -521,7 +521,7 @@ 26 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 112 @@ -629,7 +629,7 @@ 232 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 228 @@ -653,7 +653,7 @@ 245 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 237 @@ -673,7 +673,7 @@ 130 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 209 @@ -921,7 +921,7 @@ 257 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 356 @@ -957,12 +957,12 @@ 6 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 89 libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 + 142 @@ -982,7 +982,7 @@ apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 48 + 41 @@ -1402,10 +1402,6 @@ Gerir Atividades apps/client/src/app/components/home-holdings/home-holdings.html - 22 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page.html 32 @@ -1418,7 +1414,7 @@ libs/ui/src/lib/i18n.ts - 70 + 71 @@ -1430,7 +1426,7 @@ libs/ui/src/lib/i18n.ts - 71 + 72 @@ -1570,7 +1566,7 @@ Compra apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 21 + 31 @@ -1578,7 +1574,7 @@ Venda apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 33 + 43 @@ -1586,10 +1582,10 @@ Investimento apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 48 + 58 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 165 @@ -1598,7 +1594,7 @@ Desempenho Bruto Absoluto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 60 + 70 @@ -1606,26 +1602,7 @@ Desempenho Bruto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 77 - - - - - - - - Taxas para - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12 - - - - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - {VAR_PLURAL, plural, =1 {transação} other {transações}} - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 14 + 85 @@ -1633,7 +1610,7 @@ Desempenho Líquido Absoluto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 116 + 124 @@ -1641,7 +1618,7 @@ Desempenho Líquido apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 133 + 139 @@ -1649,7 +1626,7 @@ Ativos Totais apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 159 + 165 @@ -1657,7 +1634,7 @@ Bens de valor apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 172 + 178 @@ -1665,7 +1642,7 @@ Fundo de Emergência apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 184 + 190 apps/client/src/app/pages/features/features-page.html @@ -1681,7 +1658,7 @@ Poder de Compra apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 231 + 237 @@ -1689,7 +1666,7 @@ Excluído da Análise apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 243 + 249 @@ -1697,7 +1674,7 @@ Valor Líquido apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 278 + 284 @@ -1705,7 +1682,7 @@ Desempenho Anual apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 290 + 296 @@ -1713,10 +1690,10 @@ Dividendo apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 324 + 330 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 177 @@ -1737,22 +1714,26 @@ Por favor, insira o valor do seu fundo de emergência: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 53 + 57 Change Alterar - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 63 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + Average Unit Price Preço Médio por Unidade - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 101 @@ -1760,7 +1741,7 @@ Minimum Price Preço Mínimo - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 128 @@ -1768,7 +1749,7 @@ Maximum Price Preço Máximo - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 144 @@ -1776,7 +1757,7 @@ Quantity Quantidade - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 154 @@ -1796,7 +1777,7 @@ 174 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 254 @@ -1812,7 +1793,7 @@ 77 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 264 @@ -1828,7 +1809,7 @@ 316 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 270 @@ -1848,7 +1829,7 @@ 327 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 282 @@ -1860,7 +1841,7 @@ 10 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 376 @@ -1876,7 +1857,7 @@ Report Data Glitch Dados do Relatório com Problema - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 394 @@ -1893,7 +1874,7 @@ Mostrar tudo libs/ui/src/lib/holdings-table/holdings-table.component.html - 174 + 197 @@ -2349,7 +2330,7 @@ Dinheiro apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 205 + 211 @@ -2501,7 +2482,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 34 + 61 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -2517,11 +2498,11 @@ Mercados apps/client/src/app/pages/home/home-page-routing.module.ts - 33 + 38 apps/client/src/app/pages/home/home-page.component.ts - 49 + 76 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2537,7 +2518,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 + 39 @@ -2565,7 +2546,7 @@ Venda libs/ui/src/lib/i18n.ts - 36 + 37 @@ -2673,7 +2654,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 49 + 44 @@ -2837,7 +2818,7 @@ Fundo apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 216 + 214 @@ -2845,7 +2826,7 @@ Evolução do Portefólio apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 268 + 264 @@ -2853,7 +2834,7 @@ Cronograma de Investimento apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 298 + 294 @@ -2896,16 +2877,12 @@ 23 - apps/client/src/app/pages/home/home-page.component.ts - 39 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page-routing.module.ts - 13 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 + apps/client/src/app/pages/home/home-page.component.ts + 66 apps/client/src/app/pages/zen/zen-page.component.ts @@ -2920,7 +2897,7 @@ 77 - apps/client/src/app/pages/portfolio/holdings/holdings-page.html + apps/client/src/app/components/home-holdings/home-holdings.html 4 @@ -3193,7 +3170,7 @@ libs/ui/src/lib/i18n.ts - 33 + 34 @@ -3225,7 +3202,7 @@ Fundo de Emergência libs/ui/src/lib/i18n.ts - 12 + 13 @@ -3233,7 +3210,7 @@ Outro libs/ui/src/lib/i18n.ts - 20 + 21 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3245,7 +3222,7 @@ Símbolo libs/ui/src/lib/i18n.ts - 24 + 25 @@ -3253,7 +3230,7 @@ Marcador libs/ui/src/lib/i18n.ts - 25 + 26 @@ -3261,7 +3238,7 @@ Dinheiro libs/ui/src/lib/i18n.ts - 39 + 40 @@ -3269,7 +3246,7 @@ Matéria-prima libs/ui/src/lib/i18n.ts - 40 + 41 @@ -3277,7 +3254,7 @@ Ações libs/ui/src/lib/i18n.ts - 41 + 42 @@ -3285,7 +3262,7 @@ Rendimento Fixo libs/ui/src/lib/i18n.ts - 42 + 43 @@ -3293,7 +3270,7 @@ Imobiliário libs/ui/src/lib/i18n.ts - 44 + 45 @@ -3301,7 +3278,7 @@ Obrigação libs/ui/src/lib/i18n.ts - 47 + 48 @@ -3309,7 +3286,7 @@ Criptomoedas libs/ui/src/lib/i18n.ts - 48 + 49 @@ -3317,7 +3294,7 @@ ETF libs/ui/src/lib/i18n.ts - 49 + 50 @@ -3325,7 +3302,7 @@ Fundo de Investimento libs/ui/src/lib/i18n.ts - 50 + 51 @@ -3333,7 +3310,7 @@ Metal Precioso libs/ui/src/lib/i18n.ts - 51 + 52 @@ -3341,7 +3318,7 @@ Private Equity libs/ui/src/lib/i18n.ts - 52 + 53 @@ -3349,7 +3326,7 @@ Ação libs/ui/src/lib/i18n.ts - 53 + 54 @@ -3357,7 +3334,7 @@ África libs/ui/src/lib/i18n.ts - 60 + 61 @@ -3365,7 +3342,7 @@ Ásia libs/ui/src/lib/i18n.ts - 61 + 62 @@ -3373,7 +3350,7 @@ Europa libs/ui/src/lib/i18n.ts - 62 + 63 @@ -3381,7 +3358,7 @@ América do Norte libs/ui/src/lib/i18n.ts - 63 + 64 @@ -3389,7 +3366,7 @@ Oceânia libs/ui/src/lib/i18n.ts - 64 + 65 @@ -3397,7 +3374,7 @@ América do Sul libs/ui/src/lib/i18n.ts - 65 + 66 @@ -3513,11 +3490,11 @@ Sumário apps/client/src/app/pages/home/home-page-routing.module.ts - 28 + 33 apps/client/src/app/pages/home/home-page.component.ts - 44 + 71 @@ -3553,7 +3530,7 @@ libs/ui/src/lib/i18n.ts - 31 + 32 @@ -3561,7 +3538,7 @@ Cronograma de Dividendos apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 356 + 352 @@ -3617,7 +3594,7 @@ Núcleo libs/ui/src/lib/i18n.ts - 8 + 9 @@ -3625,7 +3602,7 @@ Conceder libs/ui/src/lib/i18n.ts - 13 + 14 @@ -3633,7 +3610,7 @@ Risco mais Elevado libs/ui/src/lib/i18n.ts - 14 + 15 @@ -3641,7 +3618,7 @@ Risco menos Elevado libs/ui/src/lib/i18n.ts - 17 + 18 @@ -3649,7 +3626,7 @@ Provisão de Reforma libs/ui/src/lib/i18n.ts - 22 + 23 @@ -3657,7 +3634,7 @@ Satélite libs/ui/src/lib/i18n.ts - 23 + 24 @@ -3917,10 +3894,10 @@ Taxas apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 100 + 108 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 199 @@ -3977,7 +3954,7 @@ Mude para o Ghostfolio Premium facilmente libs/ui/src/lib/i18n.ts - 10 + 11 @@ -4001,7 +3978,7 @@ Mude para o Ghostfolio Premium ou Ghostfolio Open Source facilmente libs/ui/src/lib/i18n.ts - 9 + 10 @@ -4009,7 +3986,7 @@ Mude para o Ghostfolio Open Source ou Ghostfolio Basic facilmente libs/ui/src/lib/i18n.ts - 11 + 12 @@ -4249,7 +4226,7 @@ Essa atividade já existe. libs/ui/src/lib/i18n.ts - 15 + 16 @@ -4341,7 +4318,7 @@ Série Atual apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 319 + 315 @@ -4349,7 +4326,7 @@ Série mais Longa apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 328 + 324 @@ -4357,7 +4334,7 @@ Meses libs/ui/src/lib/i18n.ts - 19 + 20 @@ -4365,7 +4342,7 @@ Anos libs/ui/src/lib/i18n.ts - 27 + 28 @@ -4373,7 +4350,7 @@ Mês libs/ui/src/lib/i18n.ts - 18 + 19 @@ -4381,7 +4358,7 @@ Ano libs/ui/src/lib/i18n.ts - 26 + 27 @@ -4389,7 +4366,7 @@ Liabilities apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 258 + 264 apps/client/src/app/pages/features/features-page.html @@ -4529,7 +4506,7 @@ Liability libs/ui/src/lib/i18n.ts - 35 + 36 @@ -9865,7 +9842,7 @@ Buy libs/ui/src/lib/i18n.ts - 30 + 31 @@ -9873,7 +9850,7 @@ Valuable libs/ui/src/lib/i18n.ts - 34 + 35 @@ -9897,7 +9874,7 @@ Assets apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 224 @@ -9905,7 +9882,7 @@ Preset libs/ui/src/lib/i18n.ts - 21 + 22 @@ -9929,7 +9906,7 @@ Japan libs/ui/src/lib/i18n.ts - 16 + 17 @@ -13241,7 +13218,7 @@ Fee libs/ui/src/lib/i18n.ts - 32 + 33 @@ -13249,7 +13226,7 @@ Interest apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 312 + 318 @@ -13757,7 +13734,7 @@ Extreme Fear libs/ui/src/lib/i18n.ts - 68 + 69 @@ -13765,7 +13742,7 @@ Extreme Greed libs/ui/src/lib/i18n.ts - 69 + 70 @@ -13773,7 +13750,7 @@ Neutral libs/ui/src/lib/i18n.ts - 72 + 73 @@ -14729,7 +14706,7 @@ Market data is delayed for apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts - 82 + 81 @@ -14980,7 +14957,7 @@ Active Active - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 30 @@ -14988,7 +14965,7 @@ Closed Closed - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 31 @@ -14996,7 +14973,7 @@ Activity Activity - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 219 @@ -15004,7 +14981,7 @@ Dividend Yield Dividend Yield - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 187 @@ -15037,14 +15014,14 @@ Liquidity libs/ui/src/lib/i18n.ts - 43 + 44 Change with currency effect Change with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 52 @@ -15052,10 +15029,26 @@ Performance with currency effect Performance with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 79 + + {VAR_PLURAL, plural, =1 {activity} other {activities}} + {VAR_PLURAL, plural, =1 {activity} other {activities}} + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 14 + + + + Buy and sell + Buy and sell + + libs/ui/src/lib/i18n.ts + 8 + + diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 91e97ea12..95fba4c70 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -1613,11 +1613,11 @@ 134 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 221 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 331 @@ -1865,7 +1865,7 @@ 34 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 301 @@ -2001,7 +2001,7 @@ 26 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 112 @@ -2133,7 +2133,7 @@ 232 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 228 @@ -2157,7 +2157,7 @@ 245 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 237 @@ -2177,7 +2177,7 @@ 130 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 209 @@ -2273,7 +2273,7 @@ 174 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 254 @@ -2289,7 +2289,7 @@ 77 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 264 @@ -2305,7 +2305,7 @@ 316 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 270 @@ -2325,7 +2325,7 @@ 327 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 282 @@ -2469,7 +2469,7 @@ 10 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 376 @@ -2593,7 +2593,7 @@ 257 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 356 @@ -2701,12 +2701,12 @@ 6 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 89 libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 + 142 @@ -2734,7 +2734,7 @@ apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 48 + 41 @@ -2862,10 +2862,6 @@ İşlemleri Yönet apps/client/src/app/components/home-holdings/home-holdings.html - 22 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page.html 32 @@ -2878,7 +2874,7 @@ libs/ui/src/lib/i18n.ts - 70 + 71 @@ -2890,7 +2886,7 @@ libs/ui/src/lib/i18n.ts - 71 + 72 @@ -3106,7 +3102,7 @@ Al apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 21 + 31 @@ -3114,7 +3110,7 @@ Sat apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 33 + 43 @@ -3122,10 +3118,10 @@ Yatırım apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 48 + 58 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 165 @@ -3134,7 +3130,7 @@ Toplam Brüt Performans apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 60 + 70 @@ -3142,26 +3138,7 @@ Brüt Performans apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 77 - - - - - - - - için komisyon tutarı - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12 - - - - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 14 + 85 @@ -3169,7 +3146,7 @@ Toplam Net Performans apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 116 + 124 @@ -3177,7 +3154,7 @@ Net Performans apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 133 + 139 @@ -3185,7 +3162,7 @@ Toplam Varlıklar apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 159 + 165 @@ -3193,7 +3170,7 @@ Yatırım Varlıkları apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 172 + 178 @@ -3201,7 +3178,7 @@ Acil Durum Yedeği apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 184 + 190 apps/client/src/app/pages/features/features-page.html @@ -3217,7 +3194,7 @@ Nakit apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 205 + 211 @@ -3225,7 +3202,7 @@ Varlıklar apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 224 @@ -3233,7 +3210,7 @@ Alım Limiti apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 231 + 237 @@ -3241,7 +3218,7 @@ Analize Dahil Edilmemiştir. apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 243 + 249 @@ -3249,7 +3226,7 @@ Yükümlülükler apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 258 + 264 apps/client/src/app/pages/features/features-page.html @@ -3261,7 +3238,7 @@ Toplam Varlık apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 278 + 284 @@ -3269,7 +3246,7 @@ Yıllıklandırılmış Performans apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 290 + 296 @@ -3277,10 +3254,10 @@ Temettü apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 324 + 330 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 177 @@ -3301,22 +3278,26 @@ Lütfen acil durum yedeği meblağını giriniz: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 53 + 57 Change Para Birimi - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 63 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + Average Unit Price Ortalama Birim Fiyat - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 101 @@ -3324,7 +3305,7 @@ Minimum Price Asgari Fiyat - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 128 @@ -3332,7 +3313,7 @@ Maximum Price Azami Fiyat - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 144 @@ -3340,7 +3321,7 @@ Quantity Miktar - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 154 @@ -3357,10 +3338,10 @@ Komisyon apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 100 + 108 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 199 @@ -3372,7 +3353,7 @@ Report Data Glitch Rapor Veri Sorunu - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 394 @@ -3801,7 +3782,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 34 + 61 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -4016,16 +3997,12 @@ 23 - apps/client/src/app/pages/home/home-page.component.ts - 39 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page-routing.module.ts - 13 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 + apps/client/src/app/pages/home/home-page.component.ts + 66 apps/client/src/app/pages/zen/zen-page.component.ts @@ -4037,11 +4014,11 @@ Özet apps/client/src/app/pages/home/home-page-routing.module.ts - 28 + 33 apps/client/src/app/pages/home/home-page.component.ts - 44 + 71 @@ -4049,11 +4026,11 @@ Piyasalar apps/client/src/app/pages/home/home-page-routing.module.ts - 33 + 38 apps/client/src/app/pages/home/home-page.component.ts - 49 + 76 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -4449,7 +4426,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 + 39 @@ -4689,7 +4666,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 49 + 44 @@ -4869,7 +4846,7 @@ libs/ui/src/lib/i18n.ts - 31 + 32 @@ -4917,7 +4894,7 @@ Alt apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 216 + 214 @@ -4925,7 +4902,7 @@ Portföyün Gelişimi apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 268 + 264 @@ -4933,7 +4910,7 @@ Yatırım Zaman Çizelgesi apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 298 + 294 @@ -4941,7 +4918,7 @@ Güncel Seri apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 319 + 315 @@ -4949,7 +4926,7 @@ En Uzun Seri apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 328 + 324 @@ -4957,7 +4934,7 @@ Temettü Zaman Çizelgesi apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 356 + 352 @@ -5000,7 +4977,7 @@ 77 - apps/client/src/app/pages/portfolio/holdings/holdings-page.html + apps/client/src/app/components/home-holdings/home-holdings.html 4 @@ -12749,7 +12726,7 @@ libs/ui/src/lib/i18n.ts - 33 + 34 @@ -12773,7 +12750,7 @@ Tümünü göster libs/ui/src/lib/holdings-table/holdings-table.component.html - 174 + 197 @@ -12813,7 +12790,7 @@ Core libs/ui/src/lib/i18n.ts - 8 + 9 @@ -12821,7 +12798,7 @@ Switch to Ghostfolio Premium or Ghostfolio Open Source easily libs/ui/src/lib/i18n.ts - 9 + 10 @@ -12829,7 +12806,7 @@ Switch to Ghostfolio Premium easily libs/ui/src/lib/i18n.ts - 10 + 11 @@ -12837,7 +12814,7 @@ Switch to Ghostfolio Open Source or Ghostfolio Basic easily libs/ui/src/lib/i18n.ts - 11 + 12 @@ -12845,7 +12822,7 @@ Emergency Fund libs/ui/src/lib/i18n.ts - 12 + 13 @@ -12853,7 +12830,7 @@ Grant libs/ui/src/lib/i18n.ts - 13 + 14 @@ -12861,7 +12838,7 @@ Higher Risk libs/ui/src/lib/i18n.ts - 14 + 15 @@ -12869,7 +12846,7 @@ This activity already exists. libs/ui/src/lib/i18n.ts - 15 + 16 @@ -12877,7 +12854,7 @@ Japan libs/ui/src/lib/i18n.ts - 16 + 17 @@ -12885,7 +12862,7 @@ Lower Risk libs/ui/src/lib/i18n.ts - 17 + 18 @@ -12893,7 +12870,7 @@ Month libs/ui/src/lib/i18n.ts - 18 + 19 @@ -12901,7 +12878,7 @@ Months libs/ui/src/lib/i18n.ts - 19 + 20 @@ -12909,7 +12886,7 @@ Other libs/ui/src/lib/i18n.ts - 20 + 21 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -12921,7 +12898,7 @@ Preset libs/ui/src/lib/i18n.ts - 21 + 22 @@ -12929,7 +12906,7 @@ Retirement Provision libs/ui/src/lib/i18n.ts - 22 + 23 @@ -12937,7 +12914,7 @@ Satellite libs/ui/src/lib/i18n.ts - 23 + 24 @@ -12945,7 +12922,7 @@ Symbol libs/ui/src/lib/i18n.ts - 24 + 25 @@ -12953,7 +12930,7 @@ Tag libs/ui/src/lib/i18n.ts - 25 + 26 @@ -12961,7 +12938,7 @@ Yıl libs/ui/src/lib/i18n.ts - 26 + 27 @@ -12969,7 +12946,7 @@ Years libs/ui/src/lib/i18n.ts - 27 + 28 @@ -12977,7 +12954,7 @@ Buy libs/ui/src/lib/i18n.ts - 30 + 31 @@ -12985,7 +12962,7 @@ Valuable libs/ui/src/lib/i18n.ts - 34 + 35 @@ -12993,7 +12970,7 @@ Liability libs/ui/src/lib/i18n.ts - 35 + 36 @@ -13001,7 +12978,7 @@ Sell libs/ui/src/lib/i18n.ts - 36 + 37 @@ -13009,7 +12986,7 @@ Cash libs/ui/src/lib/i18n.ts - 39 + 40 @@ -13017,7 +12994,7 @@ Commodity libs/ui/src/lib/i18n.ts - 40 + 41 @@ -13025,7 +13002,7 @@ Equity libs/ui/src/lib/i18n.ts - 41 + 42 @@ -13033,7 +13010,7 @@ Fixed Income libs/ui/src/lib/i18n.ts - 42 + 43 @@ -13041,7 +13018,7 @@ Real Estate libs/ui/src/lib/i18n.ts - 44 + 45 @@ -13049,7 +13026,7 @@ Bond libs/ui/src/lib/i18n.ts - 47 + 48 @@ -13057,7 +13034,7 @@ Cryptocurrency libs/ui/src/lib/i18n.ts - 48 + 49 @@ -13065,7 +13042,7 @@ ETF libs/ui/src/lib/i18n.ts - 49 + 50 @@ -13073,7 +13050,7 @@ Mutual Fund libs/ui/src/lib/i18n.ts - 50 + 51 @@ -13081,7 +13058,7 @@ Precious Metal libs/ui/src/lib/i18n.ts - 51 + 52 @@ -13089,7 +13066,7 @@ Private Equity libs/ui/src/lib/i18n.ts - 52 + 53 @@ -13097,7 +13074,7 @@ Stock libs/ui/src/lib/i18n.ts - 53 + 54 @@ -13105,7 +13082,7 @@ Africa libs/ui/src/lib/i18n.ts - 60 + 61 @@ -13113,7 +13090,7 @@ Asia libs/ui/src/lib/i18n.ts - 61 + 62 @@ -13121,7 +13098,7 @@ Europe libs/ui/src/lib/i18n.ts - 62 + 63 @@ -13129,7 +13106,7 @@ North America libs/ui/src/lib/i18n.ts - 63 + 64 @@ -13137,7 +13114,7 @@ Oceania libs/ui/src/lib/i18n.ts - 64 + 65 @@ -13145,7 +13122,7 @@ South America libs/ui/src/lib/i18n.ts - 65 + 66 @@ -13181,7 +13158,7 @@ Interest apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 312 + 318 @@ -13257,7 +13234,7 @@ Fee libs/ui/src/lib/i18n.ts - 32 + 33 @@ -13757,7 +13734,7 @@ Extreme Fear libs/ui/src/lib/i18n.ts - 68 + 69 @@ -13765,7 +13742,7 @@ Extreme Greed libs/ui/src/lib/i18n.ts - 69 + 70 @@ -13773,7 +13750,7 @@ Neutral libs/ui/src/lib/i18n.ts - 72 + 73 @@ -14729,7 +14706,7 @@ Market data is delayed for apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts - 82 + 81 @@ -14980,7 +14957,7 @@ Active Active - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 30 @@ -14988,7 +14965,7 @@ Closed Closed - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 31 @@ -14996,7 +14973,7 @@ Activity Activity - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 219 @@ -15004,7 +14981,7 @@ Dividend Yield Dividend Yield - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 187 @@ -15037,14 +15014,14 @@ Liquidity libs/ui/src/lib/i18n.ts - 43 + 44 Change with currency effect Change with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 52 @@ -15052,10 +15029,26 @@ Performance with currency effect Performance with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 79 + + {VAR_PLURAL, plural, =1 {activity} other {activities}} + {VAR_PLURAL, plural, =1 {activity} other {activities}} + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 14 + + + + Buy and sell + Buy and sell + + libs/ui/src/lib/i18n.ts + 8 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 2c1e7fa02..b7eaa7131 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -1589,11 +1589,11 @@ 134 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 221 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 331 @@ -1880,7 +1880,7 @@ 34 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 301 @@ -1988,7 +1988,7 @@ 26 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 112 @@ -2120,7 +2120,7 @@ 232 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 228 @@ -2143,7 +2143,7 @@ 245 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 237 @@ -2162,7 +2162,7 @@ 130 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 209 @@ -2270,7 +2270,7 @@ 174 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 254 @@ -2285,7 +2285,7 @@ 77 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 264 @@ -2300,7 +2300,7 @@ 316 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 270 @@ -2319,7 +2319,7 @@ 327 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 282 @@ -2583,7 +2583,7 @@ 257 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 356 @@ -2630,7 +2630,7 @@ 10 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 376 @@ -2726,12 +2726,12 @@ 6 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 89 libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 + 142 @@ -2756,7 +2756,7 @@ apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 48 + 41 @@ -2878,10 +2878,6 @@ Manage Activities apps/client/src/app/components/home-holdings/home-holdings.html - 22 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page.html 32 @@ -2893,7 +2889,7 @@ libs/ui/src/lib/i18n.ts - 70 + 71 @@ -2904,7 +2900,7 @@ libs/ui/src/lib/i18n.ts - 71 + 72 @@ -3093,45 +3089,28 @@ 3 - - - - - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12 - - - - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 14 - - Buy apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 21 + 31 Sell apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 33 + 43 Investment apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 48 + 58 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 165 @@ -3139,24 +3118,24 @@ Absolute Gross Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 60 + 70 Gross Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 77 + 85 Fees apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 100 + 108 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 199 @@ -3168,35 +3147,35 @@ Absolute Net Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 116 + 124 Net Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 133 + 139 Total Assets apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 159 + 165 Valuables apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 172 + 178 Emergency Fund apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 184 + 190 apps/client/src/app/pages/features/features-page.html @@ -3211,35 +3190,35 @@ Cash apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 205 + 211 Assets apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 224 Buying Power apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 231 + 237 Excluded from Analysis apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 243 + 249 Liabilities apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 258 + 264 apps/client/src/app/pages/features/features-page.html @@ -3250,31 +3229,31 @@ Net Worth apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 278 + 284 Annualized Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 290 + 296 Interest apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 312 + 318 Dividend apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 324 + 330 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 177 @@ -3294,41 +3273,45 @@ Please enter the amount of your emergency fund: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 53 + 57 Change - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 63 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + Average Unit Price - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 101 Minimum Price - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 128 Maximum Price - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 144 Quantity - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 154 @@ -3343,7 +3326,7 @@ Report Data Glitch - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 394 @@ -3993,7 +3976,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 34 + 61 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -4174,16 +4157,12 @@ 23 - apps/client/src/app/pages/home/home-page.component.ts - 39 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page-routing.module.ts - 13 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 + apps/client/src/app/pages/home/home-page.component.ts + 66 apps/client/src/app/pages/zen/zen-page.component.ts @@ -4194,22 +4173,22 @@ Summary apps/client/src/app/pages/home/home-page-routing.module.ts - 28 + 33 apps/client/src/app/pages/home/home-page.component.ts - 44 + 71 Markets apps/client/src/app/pages/home/home-page-routing.module.ts - 33 + 38 apps/client/src/app/pages/home/home-page.component.ts - 49 + 76 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -4605,7 +4584,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 + 39 @@ -4840,7 +4819,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 49 + 44 @@ -5001,7 +4980,7 @@ libs/ui/src/lib/i18n.ts - 31 + 32 @@ -5043,42 +5022,42 @@ Bottom apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 216 + 214 Portfolio Evolution apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 268 + 264 Investment Timeline apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 298 + 294 Current Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 319 + 315 Longest Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 328 + 324 Dividend Timeline apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 356 + 352 @@ -5137,7 +5116,7 @@ 77 - apps/client/src/app/pages/portfolio/holdings/holdings-page.html + apps/client/src/app/components/home-holdings/home-holdings.html 4 @@ -13648,7 +13627,7 @@ libs/ui/src/lib/i18n.ts - 33 + 34 @@ -13669,7 +13648,7 @@ Show all libs/ui/src/lib/holdings-table/holdings-table.component.html - 174 + 197 @@ -13704,91 +13683,91 @@ Core libs/ui/src/lib/i18n.ts - 8 + 9 Switch to Ghostfolio Premium or Ghostfolio Open Source easily libs/ui/src/lib/i18n.ts - 9 + 10 Switch to Ghostfolio Premium easily libs/ui/src/lib/i18n.ts - 10 + 11 Switch to Ghostfolio Open Source or Ghostfolio Basic easily libs/ui/src/lib/i18n.ts - 11 + 12 Emergency Fund libs/ui/src/lib/i18n.ts - 12 + 13 Grant libs/ui/src/lib/i18n.ts - 13 + 14 Higher Risk libs/ui/src/lib/i18n.ts - 14 + 15 This activity already exists. libs/ui/src/lib/i18n.ts - 15 + 16 Japan libs/ui/src/lib/i18n.ts - 16 + 17 Lower Risk libs/ui/src/lib/i18n.ts - 17 + 18 Month libs/ui/src/lib/i18n.ts - 18 + 19 Months libs/ui/src/lib/i18n.ts - 19 + 20 Other libs/ui/src/lib/i18n.ts - 20 + 21 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -13799,231 +13778,231 @@ Preset libs/ui/src/lib/i18n.ts - 21 + 22 Retirement Provision libs/ui/src/lib/i18n.ts - 22 + 23 Satellite libs/ui/src/lib/i18n.ts - 23 + 24 Symbol libs/ui/src/lib/i18n.ts - 24 + 25 Tag libs/ui/src/lib/i18n.ts - 25 + 26 Year libs/ui/src/lib/i18n.ts - 26 + 27 Years libs/ui/src/lib/i18n.ts - 27 + 28 Buy libs/ui/src/lib/i18n.ts - 30 + 31 Fee libs/ui/src/lib/i18n.ts - 32 + 33 Valuable libs/ui/src/lib/i18n.ts - 34 + 35 Liability libs/ui/src/lib/i18n.ts - 35 + 36 Sell libs/ui/src/lib/i18n.ts - 36 + 37 Cash libs/ui/src/lib/i18n.ts - 39 + 40 Commodity libs/ui/src/lib/i18n.ts - 40 + 41 Equity libs/ui/src/lib/i18n.ts - 41 + 42 Fixed Income libs/ui/src/lib/i18n.ts - 42 + 43 Real Estate libs/ui/src/lib/i18n.ts - 44 + 45 Bond libs/ui/src/lib/i18n.ts - 47 + 48 Cryptocurrency libs/ui/src/lib/i18n.ts - 48 + 49 ETF libs/ui/src/lib/i18n.ts - 49 + 50 Mutual Fund libs/ui/src/lib/i18n.ts - 50 + 51 Precious Metal libs/ui/src/lib/i18n.ts - 51 + 52 Private Equity libs/ui/src/lib/i18n.ts - 52 + 53 Stock libs/ui/src/lib/i18n.ts - 53 + 54 Africa libs/ui/src/lib/i18n.ts - 60 + 61 Asia libs/ui/src/lib/i18n.ts - 61 + 62 Europe libs/ui/src/lib/i18n.ts - 62 + 63 North America libs/ui/src/lib/i18n.ts - 63 + 64 Oceania libs/ui/src/lib/i18n.ts - 64 + 65 South America libs/ui/src/lib/i18n.ts - 65 + 66 Extreme Fear libs/ui/src/lib/i18n.ts - 68 + 69 Extreme Greed libs/ui/src/lib/i18n.ts - 69 + 70 Neutral libs/ui/src/lib/i18n.ts - 72 + 73 @@ -14137,7 +14116,7 @@ Market data is delayed for apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts - 82 + 81 @@ -14359,28 +14338,28 @@ Closed - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 31 Active - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 30 Activity - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 219 Dividend Yield - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 187 @@ -14409,23 +14388,37 @@ Liquidity libs/ui/src/lib/i18n.ts - 43 + 44 Change with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 52 Performance with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 79 + + Buy and sell + + libs/ui/src/lib/i18n.ts + 8 + + + + {VAR_PLURAL, plural, =1 {activity} other {activities}} + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 14 + + diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index 0c48eaed2..3f792b054 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -1622,11 +1622,11 @@ 134 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 221 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 331 @@ -1926,7 +1926,7 @@ 34 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 301 @@ -2046,7 +2046,7 @@ 26 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 112 @@ -2186,7 +2186,7 @@ 232 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 228 @@ -2210,7 +2210,7 @@ 245 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 237 @@ -2230,7 +2230,7 @@ 130 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 209 @@ -2350,7 +2350,7 @@ 174 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 254 @@ -2366,7 +2366,7 @@ 77 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 264 @@ -2382,7 +2382,7 @@ 316 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 270 @@ -2402,7 +2402,7 @@ 327 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 282 @@ -2698,7 +2698,7 @@ 257 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 356 @@ -2750,7 +2750,7 @@ 10 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 376 @@ -2858,12 +2858,12 @@ 6 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 89 libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 + 142 @@ -2891,7 +2891,7 @@ apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 48 + 41 @@ -3027,10 +3027,6 @@ 管理活动 apps/client/src/app/components/home-holdings/home-holdings.html - 22 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page.html 32 @@ -3043,7 +3039,7 @@ libs/ui/src/lib/i18n.ts - 70 + 71 @@ -3055,7 +3051,7 @@ libs/ui/src/lib/i18n.ts - 71 + 72 @@ -3266,34 +3262,12 @@ 3 - - - - - - - - - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 12 - - - - {VAR_PLURAL, plural, =1 {transaction} other {transactions}} - {VAR_PLURAL,复数,=1 {交易} 其他{交易}} - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 14 - - Buy apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 21 + 31 @@ -3301,7 +3275,7 @@ apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 33 + 43 @@ -3309,10 +3283,10 @@ 投资 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 48 + 58 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 165 @@ -3321,7 +3295,7 @@ 绝对总业绩 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 60 + 70 @@ -3329,7 +3303,7 @@ 总表现 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 77 + 85 @@ -3337,10 +3311,10 @@ 费用 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 100 + 108 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 199 @@ -3353,7 +3327,7 @@ 绝对净绩效 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 116 + 124 @@ -3361,7 +3335,7 @@ 净绩效 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 133 + 139 @@ -3369,7 +3343,7 @@ 总资产 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 159 + 165 @@ -3377,7 +3351,7 @@ 贵重物品 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 172 + 178 @@ -3385,7 +3359,7 @@ 应急基金 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 184 + 190 apps/client/src/app/pages/features/features-page.html @@ -3401,7 +3375,7 @@ 现金 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 205 + 211 @@ -3409,7 +3383,7 @@ 资产 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 218 + 224 @@ -3417,7 +3391,7 @@ 购买力 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 231 + 237 @@ -3425,7 +3399,7 @@ 从分析中排除 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 243 + 249 @@ -3433,7 +3407,7 @@ 负债 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 258 + 264 apps/client/src/app/pages/features/features-page.html @@ -3445,7 +3419,7 @@ 净值 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 278 + 284 @@ -3453,7 +3427,7 @@ 年化业绩 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 290 + 296 @@ -3461,7 +3435,7 @@ 利息 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 312 + 318 @@ -3469,10 +3443,10 @@ 股息 apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 324 + 330 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 177 @@ -3493,22 +3467,26 @@ 请输入您的应急基金金额: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 53 + 57 Change 修改 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 63 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + Average Unit Price 平均单价 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 101 @@ -3516,7 +3494,7 @@ Minimum Price 最低价格 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 128 @@ -3524,7 +3502,7 @@ Maximum Price 最高价格 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 144 @@ -3532,7 +3510,7 @@ Quantity 数量 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 154 @@ -3548,7 +3526,7 @@ Report Data Glitch 报告数据故障 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 394 @@ -4269,7 +4247,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 34 + 61 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -4472,16 +4450,12 @@ 23 - apps/client/src/app/pages/home/home-page.component.ts - 39 - - - apps/client/src/app/pages/portfolio/holdings/holdings-page-routing.module.ts - 13 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 + apps/client/src/app/pages/home/home-page.component.ts + 66 apps/client/src/app/pages/zen/zen-page.component.ts @@ -4493,11 +4467,11 @@ 概括 apps/client/src/app/pages/home/home-page-routing.module.ts - 28 + 33 apps/client/src/app/pages/home/home-page.component.ts - 44 + 71 @@ -4505,11 +4479,11 @@ 市场 apps/client/src/app/pages/home/home-page-routing.module.ts - 33 + 38 apps/client/src/app/pages/home/home-page.component.ts - 49 + 76 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -4957,7 +4931,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 + 39 @@ -5221,7 +5195,7 @@ apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 49 + 44 @@ -5401,7 +5375,7 @@ libs/ui/src/lib/i18n.ts - 31 + 32 @@ -5449,7 +5423,7 @@ 底部 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 216 + 214 @@ -5457,7 +5431,7 @@ 投资组合演变 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 268 + 264 @@ -5465,7 +5439,7 @@ 投资时间表 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 298 + 294 @@ -5473,7 +5447,7 @@ 当前连胜 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 319 + 315 @@ -5481,7 +5455,7 @@ 最长连续纪录 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 328 + 324 @@ -5489,7 +5463,7 @@ 股息时间表 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 356 + 352 @@ -5556,7 +5530,7 @@ 77 - apps/client/src/app/pages/portfolio/holdings/holdings-page.html + apps/client/src/app/components/home-holdings/home-holdings.html 4 @@ -14177,7 +14151,7 @@ libs/ui/src/lib/i18n.ts - 33 + 34 @@ -14201,7 +14175,7 @@ 显示所有 libs/ui/src/lib/holdings-table/holdings-table.component.html - 174 + 197 @@ -14241,7 +14215,7 @@ 核心 libs/ui/src/lib/i18n.ts - 8 + 9 @@ -14249,7 +14223,7 @@ 轻松切换到 Ghostfolio Premium 或 Ghostfolio Open Source libs/ui/src/lib/i18n.ts - 9 + 10 @@ -14257,7 +14231,7 @@ 轻松切换到 Ghostfolio Premium libs/ui/src/lib/i18n.ts - 10 + 11 @@ -14265,7 +14239,7 @@ 轻松切换到 Ghostfolio Open Source 或 Ghostfolio Basic libs/ui/src/lib/i18n.ts - 11 + 12 @@ -14273,7 +14247,7 @@ 应急基金 libs/ui/src/lib/i18n.ts - 12 + 13 @@ -14281,7 +14255,7 @@ 授予 libs/ui/src/lib/i18n.ts - 13 + 14 @@ -14289,7 +14263,7 @@ 风险较高 libs/ui/src/lib/i18n.ts - 14 + 15 @@ -14297,7 +14271,7 @@ 这项活动已经存在。 libs/ui/src/lib/i18n.ts - 15 + 16 @@ -14305,7 +14279,7 @@ 日本 libs/ui/src/lib/i18n.ts - 16 + 17 @@ -14313,7 +14287,7 @@ 降低风险 libs/ui/src/lib/i18n.ts - 17 + 18 @@ -14321,7 +14295,7 @@ libs/ui/src/lib/i18n.ts - 18 + 19 @@ -14329,7 +14303,7 @@ 几个月 libs/ui/src/lib/i18n.ts - 19 + 20 @@ -14337,7 +14311,7 @@ 其他 libs/ui/src/lib/i18n.ts - 20 + 21 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -14349,7 +14323,7 @@ 预设 libs/ui/src/lib/i18n.ts - 21 + 22 @@ -14357,7 +14331,7 @@ 退休金 libs/ui/src/lib/i18n.ts - 22 + 23 @@ -14365,7 +14339,7 @@ 卫星 libs/ui/src/lib/i18n.ts - 23 + 24 @@ -14373,7 +14347,7 @@ 符号 libs/ui/src/lib/i18n.ts - 24 + 25 @@ -14381,7 +14355,7 @@ 标签 libs/ui/src/lib/i18n.ts - 25 + 26 @@ -14389,7 +14363,7 @@ libs/ui/src/lib/i18n.ts - 26 + 27 @@ -14397,7 +14371,7 @@ libs/ui/src/lib/i18n.ts - 27 + 28 @@ -14405,7 +14379,7 @@ libs/ui/src/lib/i18n.ts - 30 + 31 @@ -14413,7 +14387,7 @@ 费用 libs/ui/src/lib/i18n.ts - 32 + 33 @@ -14421,7 +14395,7 @@ 有价值的 libs/ui/src/lib/i18n.ts - 34 + 35 @@ -14429,7 +14403,7 @@ 责任 libs/ui/src/lib/i18n.ts - 35 + 36 @@ -14437,7 +14411,7 @@ libs/ui/src/lib/i18n.ts - 36 + 37 @@ -14445,7 +14419,7 @@ 现金 libs/ui/src/lib/i18n.ts - 39 + 40 @@ -14453,7 +14427,7 @@ 商品 libs/ui/src/lib/i18n.ts - 40 + 41 @@ -14461,7 +14435,7 @@ 公平 libs/ui/src/lib/i18n.ts - 41 + 42 @@ -14469,7 +14443,7 @@ 固定收入 libs/ui/src/lib/i18n.ts - 42 + 43 @@ -14477,7 +14451,7 @@ 房地产 libs/ui/src/lib/i18n.ts - 44 + 45 @@ -14485,7 +14459,7 @@ 纽带 libs/ui/src/lib/i18n.ts - 47 + 48 @@ -14493,7 +14467,7 @@ 加密货币 libs/ui/src/lib/i18n.ts - 48 + 49 @@ -14501,7 +14475,7 @@ 交易所交易基金 libs/ui/src/lib/i18n.ts - 49 + 50 @@ -14509,7 +14483,7 @@ 共同基金 libs/ui/src/lib/i18n.ts - 50 + 51 @@ -14517,7 +14491,7 @@ 贵金属 libs/ui/src/lib/i18n.ts - 51 + 52 @@ -14525,7 +14499,7 @@ 私人产权 libs/ui/src/lib/i18n.ts - 52 + 53 @@ -14533,7 +14507,7 @@ 库存 libs/ui/src/lib/i18n.ts - 53 + 54 @@ -14541,7 +14515,7 @@ 非洲 libs/ui/src/lib/i18n.ts - 60 + 61 @@ -14549,7 +14523,7 @@ 亚洲 libs/ui/src/lib/i18n.ts - 61 + 62 @@ -14557,7 +14531,7 @@ 欧洲 libs/ui/src/lib/i18n.ts - 62 + 63 @@ -14565,7 +14539,7 @@ 北美 libs/ui/src/lib/i18n.ts - 63 + 64 @@ -14573,7 +14547,7 @@ 大洋洲 libs/ui/src/lib/i18n.ts - 64 + 65 @@ -14581,7 +14555,7 @@ 南美洲 libs/ui/src/lib/i18n.ts - 65 + 66 @@ -14589,7 +14563,7 @@ 极度恐惧 libs/ui/src/lib/i18n.ts - 68 + 69 @@ -14597,7 +14571,7 @@ 极度贪婪 libs/ui/src/lib/i18n.ts - 69 + 70 @@ -14605,7 +14579,7 @@ 中性的 libs/ui/src/lib/i18n.ts - 72 + 73 @@ -14733,7 +14707,7 @@ 市场数据延迟 apps/client/src/app/components/portfolio-performance/portfolio-performance.component.ts - 82 + 81 @@ -14984,7 +14958,7 @@ Closed 关闭 - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 31 @@ -14992,7 +14966,7 @@ Active 积极的 - apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + apps/client/src/app/components/home-holdings/home-holdings.component.ts 30 @@ -15000,7 +14974,7 @@ Activity 活动 - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 219 @@ -15008,7 +14982,7 @@ Dividend Yield Dividend Yield - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 187 @@ -15041,14 +15015,14 @@ Liquidity libs/ui/src/lib/i18n.ts - 43 + 44 Change with currency effect Change with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 52 @@ -15056,10 +15030,26 @@ Performance with currency effect Performance with currency effect - apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html 79 + + {VAR_PLURAL, plural, =1 {activity} other {activities}} + {VAR_PLURAL, plural, =1 {activity} other {activities}} + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 14 + + + + Buy and sell + Buy and sell + + libs/ui/src/lib/i18n.ts + 8 + + From 74f432390348c74dca05b37cb6309bdacfa9e4fa Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 8 May 2024 20:54:13 +0200 Subject: [PATCH 06/83] Feature/increase spacing around floating action buttons (#3385) * Increase spacing around floating action buttons * Update changelog --- CHANGELOG.md | 1 + .../admin-market-data/admin-market-data.component.ts | 1 + .../user-account-access.component.ts | 1 + .../app/pages/accounts/accounts-page.component.ts | 2 +- .../activities/activities-page.component.ts | 1 + apps/client/src/styles.scss | 12 ++++++++---- 6 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a571b620..98001e25e 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 ### Changed +- Increased the spacing around the floating action buttons (FAB) - Set the icon column of the activities table to stick at the beginning - Set the icon column of the holdings table to stick at the beginning - Increased the number of attempts of queue jobs from `10` to `12` (fail later) 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 0ccf85701..61f11c9bd 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 @@ -38,6 +38,7 @@ import { CreateAssetProfileDialogParams } from './create-asset-profile-dialog/in @Component({ changeDetection: ChangeDetectionStrategy.OnPush, + host: { class: 'has-fab' }, selector: 'gf-admin-market-data', styleUrls: ['./admin-market-data.scss'], templateUrl: './admin-market-data.html' diff --git a/apps/client/src/app/components/user-account-access/user-account-access.component.ts b/apps/client/src/app/components/user-account-access/user-account-access.component.ts index b2ee5ae59..d36c31632 100644 --- a/apps/client/src/app/components/user-account-access/user-account-access.component.ts +++ b/apps/client/src/app/components/user-account-access/user-account-access.component.ts @@ -21,6 +21,7 @@ import { CreateOrUpdateAccessDialog } from './create-or-update-access-dialog/cre @Component({ changeDetection: ChangeDetectionStrategy.OnPush, + host: { class: 'has-fab' }, selector: 'gf-user-account-access', styleUrls: ['./user-account-access.scss'], templateUrl: './user-account-access.html' diff --git a/apps/client/src/app/pages/accounts/accounts-page.component.ts b/apps/client/src/app/pages/accounts/accounts-page.component.ts index e445863b4..244333243 100644 --- a/apps/client/src/app/pages/accounts/accounts-page.component.ts +++ b/apps/client/src/app/pages/accounts/accounts-page.component.ts @@ -21,7 +21,7 @@ import { CreateOrUpdateAccountDialog } from './create-or-update-account-dialog/c import { TransferBalanceDialog } from './transfer-balance/transfer-balance-dialog.component'; @Component({ - host: { class: 'page' }, + host: { class: 'has-fab page' }, selector: 'gf-accounts-page', styleUrls: ['./accounts-page.scss'], templateUrl: './accounts-page.html' diff --git a/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts b/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts index 6e66bb666..f75bc260b 100644 --- a/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts +++ b/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts @@ -29,6 +29,7 @@ import { ImportActivitiesDialog } from './import-activities-dialog/import-activi import { ImportActivitiesDialogParams } from './import-activities-dialog/interfaces/interfaces'; @Component({ + host: { class: 'has-fab' }, selector: 'gf-activities-page', styleUrls: ['./activities-page.scss'], templateUrl: './activities-page.html' diff --git a/apps/client/src/styles.scss b/apps/client/src/styles.scss index 6d3cffff2..ce18789b2 100644 --- a/apps/client/src/styles.scss +++ b/apps/client/src/styles.scss @@ -387,6 +387,10 @@ ngx-skeleton-loader { @include gf-table; } +.has-fab { + padding-bottom: 3rem !important; +} + .has-info-message { .page.has-tabs { height: calc(100svh - 2 * var(--mat-toolbar-standard-height)); @@ -543,6 +547,10 @@ ngx-skeleton-loader { --mdc-tab-indicator-active-indicator-color: transparent; } + .mat-mdc-tab-nav-panel { + padding: 2rem 0; + } + @media (max-width: 575.98px) { .mat-mdc-tab-link { --mdc-secondary-navigation-tab-container-height: 3rem; @@ -567,10 +575,6 @@ ngx-skeleton-loader { } } } - - .mat-mdc-tab-nav-panel { - padding: 2rem 0; - } } } } From 80464c78467f232d2d466d576db871b0da966d12 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 8 May 2024 20:55:39 +0200 Subject: [PATCH 07/83] Release 2.80.0 (#3386) --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98001e25e..64b3e5467 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.80.0 - 2024-05-08 ### Added diff --git a/package.json b/package.json index f99d9b57c..dd7355bd5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghostfolio", - "version": "2.79.0", + "version": "2.80.0", "homepage": "https://ghostfol.io", "license": "AGPL-3.0", "repository": "https://github.com/ghostfolio/ghostfolio", From 61f0da35bc02177dbcd5e8eaa7f58a0e023544a2 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Fri, 10 May 2024 08:51:34 +0200 Subject: [PATCH 08/83] Feature/disable delete all activities if filters are active (#3389) * Disable delete all activities button if filters are active * Update changelog --- CHANGELOG.md | 6 ++++++ .../account-detail-dialog/account-detail-dialog.html | 1 + .../position-detail-dialog.html | 1 + .../activities/activities-page.component.ts | 7 ++++--- .../pages/portfolio/activities/activities-page.html | 1 + .../import-activities-dialog.html | 1 + apps/client/src/app/services/data.service.ts | 12 ++++++------ apps/client/src/app/services/user/user.service.ts | 4 ++++ .../activities-table/activities-table.component.html | 7 ++++++- .../activities-table/activities-table.component.ts | 1 + 10 files changed, 31 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64b3e5467..75c6a2c9a 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 + +- Disabled the button to delete all activities on the portfolio activities page if there are active filters + ## 2.80.0 - 2024-05-08 ### Added diff --git a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html index e092cce68..0f0091ce5 100644 --- a/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html +++ b/apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html @@ -94,6 +94,7 @@ [dataSource]="dataSource" [deviceType]="data.deviceType" [hasPermissionToCreateActivity]="false" + [hasPermissionToDeleteActivity]="false" [hasPermissionToExportActivities]=" !data.hasImpersonationId && !user.settings.isRestrictedView " diff --git a/apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html b/apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html index 9ae432a35..19d916920 100644 --- a/apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html +++ b/apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html @@ -335,6 +335,7 @@ [dataSource]="dataSource" [deviceType]="data.deviceType" [hasPermissionToCreateActivity]="false" + [hasPermissionToDeleteActivity]="false" [hasPermissionToExportActivities]=" !data.hasImpersonationId && !user?.settings?.isRestrictedView " diff --git a/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts b/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts index f75bc260b..618b2addc 100644 --- a/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts +++ b/apps/client/src/app/pages/portfolio/activities/activities-page.component.ts @@ -155,7 +155,7 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit { public onDeleteActivity(aId: string) { this.dataService - .deleteOrder(aId) + .deleteActivity(aId) .pipe(takeUntil(this.unsubscribeSubject)) .subscribe({ next: () => { @@ -171,7 +171,7 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit { if (confirmation) { this.dataService - .deleteAllOrders() + .deleteAllActivities() .pipe(takeUntil(this.unsubscribeSubject)) .subscribe({ next: () => { @@ -400,6 +400,7 @@ export class ActivitiesPageComponent implements OnDestroy, OnInit { hasPermission(this.user.permissions, permissions.createOrder); this.hasPermissionToDeleteActivity = !this.hasImpersonationId && - hasPermission(this.user.permissions, permissions.deleteOrder); + hasPermission(this.user.permissions, permissions.deleteOrder) && + !this.userService.hasFilters(); } } diff --git a/apps/client/src/app/pages/portfolio/activities/activities-page.html b/apps/client/src/app/pages/portfolio/activities/activities-page.html index 8872470b7..c16d8a689 100644 --- a/apps/client/src/app/pages/portfolio/activities/activities-page.html +++ b/apps/client/src/app/pages/portfolio/activities/activities-page.html @@ -7,6 +7,7 @@ [dataSource]="dataSource" [deviceType]="deviceType" [hasPermissionToCreateActivity]="hasPermissionToCreateActivity" + [hasPermissionToDeleteActivity]="hasPermissionToDeleteActivity" [hasPermissionToExportActivities]="!hasImpersonationId" [locale]="user?.settings?.locale" [pageIndex]="pageIndex" diff --git a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html index 3e0a00e93..99c3fe99c 100644 --- a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html +++ b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -126,6 +126,7 @@ [dataSource]="dataSource" [deviceType]="data?.deviceType" [hasPermissionToCreateActivity]="false" + [hasPermissionToDeleteActivity]="false" [hasPermissionToExportActivities]="false" [hasPermissionToFilter]="false" [hasPermissionToOpenDetails]="false" diff --git a/apps/client/src/app/services/data.service.ts b/apps/client/src/app/services/data.service.ts index 4f8615e41..bfa4cb71e 100644 --- a/apps/client/src/app/services/data.service.ts +++ b/apps/client/src/app/services/data.service.ts @@ -256,16 +256,16 @@ export class DataService { return this.http.delete(`/api/v1/account-balance/${aId}`); } - public deleteAllOrders() { - return this.http.delete(`/api/v1/order/`); + public deleteActivity(aId: string) { + return this.http.delete(`/api/v1/order/${aId}`); } - public deleteBenchmark({ dataSource, symbol }: UniqueAsset) { - return this.http.delete(`/api/v1/benchmark/${dataSource}/${symbol}`); + public deleteAllActivities() { + return this.http.delete(`/api/v1/order`); } - public deleteOrder(aId: string) { - return this.http.delete(`/api/v1/order/${aId}`); + public deleteBenchmark({ dataSource, symbol }: UniqueAsset) { + return this.http.delete(`/api/v1/benchmark/${dataSource}/${symbol}`); } public deleteUser(aId: string) { diff --git a/apps/client/src/app/services/user/user.service.ts b/apps/client/src/app/services/user/user.service.ts index b1c98bde7..ed389e81e 100644 --- a/apps/client/src/app/services/user/user.service.ts +++ b/apps/client/src/app/services/user/user.service.ts @@ -75,6 +75,10 @@ export class UserService extends ObservableStore { return filters; } + public hasFilters() { + return this.getFilters().length > 0; + } + public remove() { this.setState({ user: null }, UserStoreActions.RemoveUser); } 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 dfa17a28c..7aa5d0ee1 100644 --- a/libs/ui/src/lib/activities-table/activities-table.component.html +++ b/libs/ui/src/lib/activities-table/activities-table.component.html @@ -58,6 +58,7 @@ - diff --git a/libs/ui/src/lib/activities-table/activities-table.component.ts b/libs/ui/src/lib/activities-table/activities-table.component.ts index f63cec111..204cba0c2 100644 --- a/libs/ui/src/lib/activities-table/activities-table.component.ts +++ b/libs/ui/src/lib/activities-table/activities-table.component.ts @@ -92,10 +92,10 @@ export class GfActivitiesTableComponent @Input() sortDisabled = false; @Input() totalItems = Number.MAX_SAFE_INTEGER; + @Output() activitiesDeleted = new EventEmitter(); @Output() activityDeleted = new EventEmitter(); @Output() activityToClone = new EventEmitter(); @Output() activityToUpdate = new EventEmitter(); - @Output() deleteAllActivities = new EventEmitter(); @Output() export = new EventEmitter(); @Output() exportDrafts = new EventEmitter(); @Output() import = new EventEmitter(); @@ -211,6 +211,16 @@ export class GfActivitiesTableComponent this.activityToClone.emit(aActivity); } + public onDeleteActivities() { + const confirmation = confirm( + $localize`Do you really want to delete these activities?` + ); + + if (confirmation) { + this.activitiesDeleted.emit(); + } + } + public onDeleteActivity(aId: string) { const confirmation = confirm( $localize`Do you really want to delete this activity?` @@ -241,10 +251,6 @@ export class GfActivitiesTableComponent ); } - public onDeleteAllActivities() { - this.deleteAllActivities.emit(); - } - public onImport() { this.import.emit(); } From 37759ba03f041c46a1d8da2924b90ea86932a452 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 12 May 2024 09:58:11 +0200 Subject: [PATCH 13/83] Feature/improve language localization for tr 20240501 (#3355) * Improve translations * Update changelog --------- Co-authored-by: sadmimye <134071831+sadmimye@users.noreply.github.com> --- CHANGELOG.md | 1 + apps/client/src/locales/messages.tr.xlf | 192 ++++++++++++------------ 2 files changed, 97 insertions(+), 96 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eeba19537..0e7ff6868 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 ### Changed - Improved the delete all activities functionality on the portfolio activities page to work with the filters of the assistant +- Improved the language localization for Türkçe (`tr`) - Upgraded `Nx` from version `18.3.3` to `19.0.2` ### Fixed diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 95fba4c70..244c3f5e8 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -3855,7 +3855,7 @@ Check out the numerous features of Ghostfolio to manage your wealth - Varlığınızı yönetmek için Ghostfolio'nun pek çok özelliğini keşfedin + Varlıklarınızı yönetmek için Ghostfolio'nun özelliklerini keşfedin apps/client/src/app/pages/features/features-page.html 6 @@ -4039,7 +4039,7 @@ Manage your wealth like a boss - Servetinizi bir patron gibi yönetin + Varlıklarınızı bir patron gibi yönetin apps/client/src/app/pages/landing/landing-page.html 5 @@ -4047,7 +4047,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, mali durumunuz için gizlilik odaklı, açık kaynaklı bir kontrol panelidi. Varlık dağılımınızı analiz edin, net değerinizi öğrenin ve sağlam, veriye dayalı yatırım kararları alın. + Ghostfolio, mali durumunuz için gizlilik odaklı, açık kaynaklı bir kontrol panelidir. Varlık dağılımınızı analiz edin, net değerinizi öğrenin ve sağlam, veriye dayalı yatırım kararları alın. apps/client/src/app/pages/landing/landing-page.html 9 @@ -4191,7 +4191,7 @@ Why Ghostfolio? - Why Ghostfolio? + Neden Ghostfolio? apps/client/src/app/pages/landing/landing-page.html 262 @@ -4295,7 +4295,7 @@ Members from around the globe are using Ghostfolio Premium - Members from around the globe are using Ghostfolio Premium + Dünyanın dört bir yanındaki kullanıcılar Ghostfolio Premium kullanıyorlar. apps/client/src/app/pages/landing/landing-page.html 349 @@ -4359,7 +4359,7 @@ Join now or check out the example account - Join now or check out the example account + Şİmdi katılın ya da örnek hesabı inceleyin apps/client/src/app/pages/landing/landing-page.html 408 @@ -4947,7 +4947,7 @@ FIRE - FIRE + Finansal Özgürlük ve Erken Emeklilik (FIRE) apps/client/src/app/pages/portfolio/fire/fire-page.html 4 @@ -5323,7 +5323,7 @@ Discover Open Source Alternatives for Personal Finance Tools - Discover Open Source Alternatives for Personal Finance Tools + Açık Kaynak Kişisel Finans Seçeneklerini Keşfet apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html 4 @@ -5331,7 +5331,7 @@ This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + Bu genel bakış sayfası, diğer kişisel finans araçlarının seçilmiş bir koleksiyonunun açık kaynak alternatifiGhostfolio ile karşılaştırmasını sunmaktadır.. Şeffaflığa, veri gizliliğine ve topluluk işbirliğine değer veriyorsanız Ghostfolio, finansal yönetiminizin kontrolünü ele almak için mükemmel Şeffaflığa, veri gizliliğine ve topluluk işbirliğine değer veriyorsanız Ghostfolio, finansal yönetiminizin kontrolünü ele almak için mükemmel bir fırsat sunuyor. apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html 8 @@ -5559,7 +5559,7 @@ Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + ? yerine Açık Kaynak Kodlu bir alternatif mi arıyorsunuz? Ghostfolio,kullanıcılara yatırımlarını izlemek, analiz ve optimize etmek için kapsamlı bir platform sunan güçlü bir portföy yönetim aracıdır. Deneyimli bir yatırımcı da olsanuz henüz başlamış da olsanız, Ghostfolio sezgileri güçlü bir kullanıcı arayüzü ile geniş spektrumlu bir fonksiyon seti sunarak bilgiye dayalı kararlar vermenizi ve finansal geleceğinizin kontrolünü elinize almanızı sağlar. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 13 @@ -5763,7 +5763,7 @@ Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio, karşısında açık kaynak kodlu maliyet etkin bir seçenek sunmaktadır. gibi kısıtlı bütçeye sahip, finansal özgürlük ve erken emeklilik (FIRE) amaçlayan kulanıcılar için özellikle uygundur. Ghostfolio, topluluk içindeki geliştiricilerin ve kişisel finans meraklılarının kolektif çabası sayesinde yeteneklerini, güvenliğini ve kullanıcı deneyimini sürekli olarak geliştirmektedir. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 27 @@ -5967,7 +5967,7 @@ Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Ghostfolio ve arasındaki ayrıntılı karşılaştırmanın yer aldığı aşağıdaki tabloya daha yakından bakarak Ghostfolio'nun karşısında kendisini nasıl konumlandırdığını kapsamlı bir şekilde değerlendirelim. Bu kapsamda özellikler, veri güvenliği, fiyat vb. hususları inceleyerek kişisel gereksinimleriniz için bilgiye dayalı bir seçim yapmanızı sağlayabileceği. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 38 @@ -11015,7 +11015,7 @@ Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Lütfen dikkat, Ghostfolio ve arasındaki karşılaştırmanın yer aldığı tablodaki bilgiler bağımsız araştırmalarımıza dayanmaktadır. Websitemizin ile ya da bu karşılaştırmada adı geçen herhangi bir ürün ve hizmet ile ilişkisi bulunmamaktadır. Kişisel finans araçlarının kapsamı geliştikçe, belirli ayrıntıların veya değişikliklerin doğrudan ilgili ürün sayfasından doğrulanması önemlidir. Verilerin yenilenmesi mi gerekiyor? Doğru verileri sağlamamıza yardımcı olmak için sayfamızı ziyaret edin. GitHub. apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 210 @@ -12919,7 +12919,7 @@ Symbol - Symbol + Sembol libs/ui/src/lib/i18n.ts 25 @@ -12927,7 +12927,7 @@ Tag - Tag + Etiket libs/ui/src/lib/i18n.ts 26 @@ -12943,7 +12943,7 @@ Years - Years + Yıl libs/ui/src/lib/i18n.ts 28 @@ -12951,7 +12951,7 @@ Buy - Buy + Al libs/ui/src/lib/i18n.ts 31 @@ -12959,7 +12959,7 @@ Valuable - Valuable + Kıymet libs/ui/src/lib/i18n.ts 35 @@ -12967,7 +12967,7 @@ Liability - Liability + Yükümlülük libs/ui/src/lib/i18n.ts 36 @@ -12975,7 +12975,7 @@ Sell - Sell + Sat libs/ui/src/lib/i18n.ts 37 @@ -12983,7 +12983,7 @@ Cash - Cash + Nakit libs/ui/src/lib/i18n.ts 40 @@ -12991,7 +12991,7 @@ Commodity - Commodity + Emtia libs/ui/src/lib/i18n.ts 41 @@ -12999,7 +12999,7 @@ Equity - Equity + Menkul Kıymet libs/ui/src/lib/i18n.ts 42 @@ -13007,7 +13007,7 @@ Fixed Income - Fixed Income + Sabit Gelir libs/ui/src/lib/i18n.ts 43 @@ -13015,7 +13015,7 @@ Real Estate - Real Estate + Gayrimenkul libs/ui/src/lib/i18n.ts 45 @@ -13023,7 +13023,7 @@ Bond - Bond + Bono libs/ui/src/lib/i18n.ts 48 @@ -13031,7 +13031,7 @@ Cryptocurrency - Cryptocurrency + Kriptopara libs/ui/src/lib/i18n.ts 49 @@ -13039,7 +13039,7 @@ ETF - ETF + Borsada İşlem Gören Fonlar (ETF) libs/ui/src/lib/i18n.ts 50 @@ -13047,7 +13047,7 @@ Mutual Fund - Mutual Fund + Borsada İşlem Görmeyen Fonlar (Mutual Fund) libs/ui/src/lib/i18n.ts 51 @@ -13055,7 +13055,7 @@ Precious Metal - Precious Metal + Kıymetli Metaller libs/ui/src/lib/i18n.ts 52 @@ -13063,7 +13063,7 @@ Private Equity - Private Equity + Özel Menkul Kıymetler libs/ui/src/lib/i18n.ts 53 @@ -13071,7 +13071,7 @@ Stock - Stock + Hisse Senetleri libs/ui/src/lib/i18n.ts 54 @@ -13079,7 +13079,7 @@ Africa - Africa + Afrika libs/ui/src/lib/i18n.ts 61 @@ -13087,7 +13087,7 @@ Asia - Asia + Asya libs/ui/src/lib/i18n.ts 62 @@ -13095,7 +13095,7 @@ Europe - Europe + Avrupa libs/ui/src/lib/i18n.ts 63 @@ -13103,7 +13103,7 @@ North America - North America + Kuzey Amerika libs/ui/src/lib/i18n.ts 64 @@ -13111,7 +13111,7 @@ Oceania - Oceania + Okyanusya libs/ui/src/lib/i18n.ts 65 @@ -13119,7 +13119,7 @@ South America - South America + Güney Amerika libs/ui/src/lib/i18n.ts 66 @@ -13127,7 +13127,7 @@ Time to add your first activity. - Time to add your first activity. + İlk işleminizi girmanin tam zamanı. libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html 12 @@ -13135,7 +13135,7 @@ No data available - No data available + Veri mevcut değil libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts 391 @@ -13147,7 +13147,7 @@ You are using the Live Demo. - You are using the Live Demo. + Canlı demoyu kullanmaktasınız. apps/client/src/app/app.component.html 17 @@ -13155,7 +13155,7 @@ Interest - Interest + Faiz apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 318 @@ -13163,7 +13163,7 @@ (Last 24 hours) - (Last 24 hours) + (Son 24 saat) apps/client/src/app/pages/open/open-page.html 37 @@ -13171,7 +13171,7 @@ (Last 30 days) - (Last 30 days) + (Son 30 gün) apps/client/src/app/pages/open/open-page.html 48 @@ -13183,7 +13183,7 @@ (Last 90 days) - (Last 90 days) + (Son 90 gün) apps/client/src/app/pages/open/open-page.html 127 @@ -13191,7 +13191,7 @@ One-time fee, annual account fees - One-time fee, annual account fees + Tek seferlik ücret, yıllık hesap ücreti apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 30 @@ -13199,7 +13199,7 @@ Distribution of corporate earnings - Distribution of corporate earnings + Şirket gelirinin dağıtımı apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 38 @@ -13207,7 +13207,7 @@ Revenue for lending out money - Revenue for lending out money + Borç verme getirisi apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 46 @@ -13215,7 +13215,7 @@ Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from + Hay Allah! Tarihsel kur verisi elde edilemedi apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 226 @@ -13223,7 +13223,7 @@ Choose or drop a file here - Choose or drop a file here + Dosya seçin ya da sürükleyin apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html 86 @@ -13231,7 +13231,7 @@ Fee - Fee + Ücret libs/ui/src/lib/i18n.ts 33 @@ -13239,7 +13239,7 @@ Add Tag - Add Tag + Etiket Ekleyiniz apps/client/src/app/components/admin-tag/admin-tag.component.html 11 @@ -13247,7 +13247,7 @@ Do you really want to delete this tag? - Do you really want to delete this tag? + Bu etiketi silmeyi gerçekten istiyor musunuz? apps/client/src/app/components/admin-tag/admin-tag.component.ts 79 @@ -13255,7 +13255,7 @@ Update tag - Update tag + Etiketi güncelle apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html 7 @@ -13263,7 +13263,7 @@ Add tag - Add tag + Etiket ekle apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html 8 @@ -13271,7 +13271,7 @@ France - France + Fransa apps/client/src/app/pages/resources/personal-finance-tools/products.ts 121 @@ -13287,7 +13287,7 @@ Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray, portföyünüzdeki potansiyel sorunlar ve riskleri belirlemek için statik analiz yöntemleri uygulamaktadır. apps/client/src/app/pages/portfolio/fire/fire-page.html 111 @@ -13295,7 +13295,7 @@ Currency Cluster Risks - Currency Cluster Risks + Kur Kümelenme Riskleri (Currency Cluster Risks) apps/client/src/app/pages/portfolio/fire/fire-page.html 135 @@ -13303,7 +13303,7 @@ Account Cluster Risks - Account Cluster Risks + Hesap Kümelenme Riski (Account Cluster Risks) apps/client/src/app/pages/portfolio/fire/fire-page.html 148 @@ -13311,7 +13311,7 @@ Transfer Cash Balance - Transfer Cash Balance + Nakit Bakiyesini Transfer Et apps/client/src/app/components/accounts-table/accounts-table.component.html 9 @@ -13323,7 +13323,7 @@ Benchmark - Benchmark + Kıyaslama apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html 273 @@ -13331,7 +13331,7 @@ Version - Version + Versiyon apps/client/src/app/components/admin-overview/admin-overview.html 7 @@ -13339,7 +13339,7 @@ Settings - Settings + Ayarlar apps/client/src/app/components/user-account-settings/user-account-settings.html 2 @@ -13347,7 +13347,7 @@ From - From + Başlangıç apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html 11 @@ -13355,7 +13355,7 @@ To - To + Bitiş apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html 28 @@ -13363,7 +13363,7 @@ Transfer - Transfer + Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html 64 @@ -13371,7 +13371,7 @@ Finland - Finland + Finlandiya apps/client/src/app/pages/resources/personal-finance-tools/products.ts 490 @@ -13379,7 +13379,7 @@ Membership - Membership + Üyelik apps/client/src/app/pages/user-account/user-account-page-routing.module.ts 23 @@ -13391,7 +13391,7 @@ Access - Access + Erişim apps/client/src/app/pages/user-account/user-account-page-routing.module.ts 28 @@ -13403,7 +13403,7 @@ Find holding... - Find holding... + Sahip olunan varlıkları bul... libs/ui/src/lib/assistant/assistant.component.ts 138 @@ -13411,7 +13411,7 @@ No entries... - No entries... + Girdi yok... libs/ui/src/lib/assistant/assistant.html 63 @@ -13423,7 +13423,7 @@ Asset Profile - Asset Profile + Varlık Profili apps/client/src/app/components/admin-jobs/admin-jobs.html 31 @@ -13431,7 +13431,7 @@ Do you really want to delete this asset profile? - Do you really want to delete this asset profile? + Bu varlık profilini silmeyi gerçekten istiyor musunuz? apps/client/src/app/components/admin-market-data/admin-market-data.service.ts 13 @@ -13439,7 +13439,7 @@ Search - Search + Arama apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html 16 @@ -13447,7 +13447,7 @@ Add Manually - Add Manually + Elle Giriş apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html 19 @@ -13455,7 +13455,7 @@ Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio, hisse senetleri, ETF’ler veya kripto para birimleri gibi varlıklarınızı birden fazla platformda takip etmenizi sağlayan bir kişisel finans panosudur. + Ghostfolio, hisse senetleri, ETF’ler veya kriptopara birimleri gibi varlıklarınızı birden fazla platformda takip etmenizi sağlayan bir kişisel finans kontrol panelidir. apps/client/src/app/pages/i18n/i18n-page.html 4 @@ -13463,7 +13463,7 @@ Last All Time High - Last All Time High + Son, ATH libs/ui/src/lib/benchmark/benchmark.component.html 65 @@ -13471,7 +13471,7 @@ User - User + Kullanıcı apps/client/src/app/components/admin-users/admin-users.html 29 @@ -13479,7 +13479,7 @@ Ghostfolio vs comparison table - Ghostfolio vs comparison table + Ghostfolio ve karşılatırma tablosu apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 49 @@ -13683,7 +13683,7 @@ Canada - Canada + Kanada apps/client/src/app/pages/resources/personal-finance-tools/products.ts 561 @@ -13691,7 +13691,7 @@ Open Source Wealth Management Software - Open Source Wealth Management Software + Açık Kaynak Varlık Yönetim Yazılımı apps/client/src/app/pages/i18n/i18n-page.html 14 @@ -13699,7 +13699,7 @@ app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, varlık, kriptopara, kontrol paneli, etf, finans, yönetim, performans, portföy, yazılım, hisse, alım satım, varlık, web3 apps/client/src/app/pages/i18n/i18n-page.html 9 @@ -13707,7 +13707,7 @@ Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. + Hay Allah, Nakit bakiyesi tranferi başarısız oldu. apps/client/src/app/pages/accounts/accounts-page.component.ts 304 @@ -13715,7 +13715,7 @@ Poland - Poland + Polonya apps/client/src/app/pages/resources/personal-finance-tools/products.ts 131 @@ -13723,7 +13723,7 @@ South Africa - South Africa + Güney Afrika apps/client/src/app/pages/resources/personal-finance-tools/products.ts 251 @@ -13731,7 +13731,7 @@ Extreme Fear - Extreme Fear + Aşırı Korku libs/ui/src/lib/i18n.ts 69 @@ -13739,7 +13739,7 @@ Extreme Greed - Extreme Greed + Aşırı Açgözlülük libs/ui/src/lib/i18n.ts 70 @@ -13747,7 +13747,7 @@ Neutral - Neutral + Nötr libs/ui/src/lib/i18n.ts 73 @@ -13755,7 +13755,7 @@ Oops! Could not parse historical data. - Oops! Could not parse historical data. + Hay Allah! Geçmiş veriler ayrıştırılamadı. apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts 236 @@ -13763,7 +13763,7 @@ Do you really want to delete this system message? - Do you really want to delete this system message? + Bu sistem mesajını silmeyi gerçekten istiyor musunuz? apps/client/src/app/components/admin-overview/admin-overview.component.ts 166 @@ -13771,7 +13771,7 @@ 50-Day Trend - 50-Day Trend + 50 Günlük Trend libs/ui/src/lib/benchmark/benchmark.component.html 15 @@ -13779,7 +13779,7 @@ 200-Day Trend - 200-Day Trend + 200 Günlük Trend libs/ui/src/lib/benchmark/benchmark.component.html 40 @@ -13787,7 +13787,7 @@ Cash Balances - Cash Balances + Nakit Bakiyeleri apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html 114 @@ -13795,7 +13795,7 @@ Starting from - Starting from + Başlangıç apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 190 @@ -14199,7 +14199,7 @@ year - year + Yıl apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 191 @@ -14603,7 +14603,7 @@ Do you really want to delete this account balance? - Do you really want to delete this account balance? + Bu nakit bakiyesini silmeyi gerçekten istiyor musunuz? libs/ui/src/lib/account-balances/account-balances.component.ts 102 From ebc50085696fabe3b172417adf93a0de5d9a0052 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 12 May 2024 10:25:59 +0200 Subject: [PATCH 14/83] Feature/improve language localization for de 20240512 (#3402) * Update translations * Update changelog --- CHANGELOG.md | 1 + apps/client/src/locales/messages.de.xlf | 198 ++++++++++++------------ apps/client/src/locales/messages.es.xlf | 198 ++++++++++++------------ apps/client/src/locales/messages.fr.xlf | 198 ++++++++++++------------ apps/client/src/locales/messages.it.xlf | 198 ++++++++++++------------ apps/client/src/locales/messages.nl.xlf | 198 ++++++++++++------------ apps/client/src/locales/messages.pl.xlf | 198 ++++++++++++------------ apps/client/src/locales/messages.pt.xlf | 198 ++++++++++++------------ apps/client/src/locales/messages.tr.xlf | 198 ++++++++++++------------ apps/client/src/locales/messages.xlf | 194 +++++++++++------------ apps/client/src/locales/messages.zh.xlf | 198 ++++++++++++------------ 11 files changed, 989 insertions(+), 988 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e7ff6868..654ad7194 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 ### Changed - Improved the delete all activities functionality on the portfolio activities page to work with the filters of the assistant +- Improved the language localization for German (`de`) - Improved the language localization for Türkçe (`tr`) - Upgraded `Nx` from version `18.3.3` to `19.0.2` diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 23e492b38..68ca7a037 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -50,7 +50,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 159 + 160 @@ -158,7 +158,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 136 + 137 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -222,11 +222,11 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html - 291 + 292 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -258,7 +258,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 428 + 429 @@ -298,7 +298,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 450 + 455 @@ -454,7 +454,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 168 + 169 @@ -762,7 +762,7 @@ Benutzer apps/client/src/app/components/header/header.component.html - 225 + 230 @@ -806,7 +806,7 @@ apps/client/src/app/components/header/header.component.html - 239 + 244 @@ -818,7 +818,7 @@ apps/client/src/app/components/header/header.component.html - 249 + 254 @@ -838,11 +838,11 @@ apps/client/src/app/components/header/header.component.html - 257 + 262 apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 356 + 357 apps/client/src/app/pages/accounts/accounts-page.html @@ -862,7 +862,7 @@ apps/client/src/app/components/header/header.component.html - 273 + 278 @@ -878,7 +878,7 @@ apps/client/src/app/components/header/header.component.html - 284 + 289 apps/client/src/app/pages/resources/resources-page.html @@ -898,11 +898,11 @@ apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/components/header/header.component.html - 365 + 370 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -1118,7 +1118,7 @@ apps/client/src/app/components/header/header.component.html - 352 + 357 @@ -1126,7 +1126,7 @@ Ich apps/client/src/app/components/header/header.component.html - 206 + 211 @@ -1134,7 +1134,7 @@ Mein Ghostfolio apps/client/src/app/components/header/header.component.html - 264 + 269 @@ -1142,7 +1142,7 @@ Über Ghostfolio apps/client/src/app/components/header/header.component.html - 304 + 309 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1158,7 +1158,7 @@ apps/client/src/app/components/header/header.component.html - 339 + 344 apps/client/src/app/pages/features/features-page.html @@ -1174,7 +1174,7 @@ apps/client/src/app/components/header/header.component.html - 381 + 386 apps/client/src/app/components/home-market/home-market.html @@ -1202,7 +1202,7 @@ Einloggen apps/client/src/app/components/header/header.component.ts - 226 + 229 apps/client/src/app/pages/webauthn/webauthn-page-routing.module.ts @@ -1214,7 +1214,7 @@ Ups! Falsches Sicherheits-Token. apps/client/src/app/components/header/header.component.ts - 240 + 243 @@ -1306,7 +1306,7 @@ Einloggen apps/client/src/app/components/header/header.component.html - 394 + 399 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1514,7 +1514,7 @@ apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 376 + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1530,7 +1530,7 @@ Datenfehler melden apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 394 + 395 @@ -1870,7 +1870,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 306 + 307 @@ -2054,7 +2054,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 274 + 275 @@ -2150,7 +2150,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 61 + 37 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -2170,7 +2170,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 76 + 52 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2354,7 +2354,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 66 + 42 apps/client/src/app/pages/zen/zen-page.component.ts @@ -2434,7 +2434,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 184 + 185 @@ -2450,7 +2450,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 208 + 209 @@ -2466,7 +2466,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 232 + 233 @@ -2666,7 +2666,7 @@ Geplant libs/ui/src/lib/activities-table/activities-table.component.html - 143 + 144 @@ -2686,7 +2686,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 394 + 395 @@ -2698,7 +2698,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -2706,7 +2706,7 @@ Kopieren libs/ui/src/lib/activities-table/activities-table.component.html - 434 + 435 @@ -2714,7 +2714,7 @@ Geplante Aktivität als ICS exportieren libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 445 @@ -2722,7 +2722,7 @@ Möchtest du diese Aktivität wirklich löschen? libs/ui/src/lib/activities-table/activities-table.component.ts - 215 + 226 @@ -2778,7 +2778,7 @@ Registrieren apps/client/src/app/components/header/header.component.html - 406 + 411 @@ -2954,7 +2954,7 @@ Monatlich apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 55 + 50 @@ -3030,7 +3030,7 @@ Filtern nach... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 281 + 282 @@ -3378,11 +3378,11 @@ Zurück apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 145 + 146 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 181 + 182 @@ -3466,7 +3466,7 @@ Dividenden apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 43 + 38 libs/ui/src/lib/i18n.ts @@ -3506,11 +3506,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 154 + 155 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 189 + 190 @@ -3546,7 +3546,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 71 + 47 @@ -3570,7 +3570,7 @@ Jährlich apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 56 + 51 @@ -3746,7 +3746,7 @@ Abonnement abschliessen apps/client/src/app/components/header/header.component.html - 177 + 182 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -4046,7 +4046,7 @@ Abonnement erneuern apps/client/src/app/components/header/header.component.html - 185 + 190 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -4081,12 +4081,12 @@ 232 - - Do you really want to delete all your activities? - Möchtest du wirklich alle Aktivitäten löschen? + + Do you really want to delete these activities? + Möchtest du diese Aktivitäten wirklich löschen? - apps/client/src/app/pages/portfolio/activities/activities-page.component.ts - 168 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 @@ -4097,14 +4097,6 @@ 290 - - Delete all Activities - Alle Aktivitäten löschen - - libs/ui/src/lib/activities-table/activities-table.component.html - 65 - - Update platform Plattform bearbeiten @@ -4278,7 +4270,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 369 + 370 @@ -4290,7 +4282,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 381 + 382 @@ -9858,7 +9850,7 @@ ETFs ohne Länder apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 77 + 78 @@ -9866,7 +9858,7 @@ ETFs ohne Sektoren apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 82 + 83 @@ -10090,7 +10082,7 @@ Währungen apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 72 + 73 @@ -10470,7 +10462,7 @@ apps/client/src/app/app.component.ts - 55 + 66 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10502,15 +10494,15 @@ apps/client/src/app/app.component.ts - 56 + 67 apps/client/src/app/components/header/header.component.ts - 77 + 78 apps/client/src/app/components/header/header.component.ts - 82 + 83 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10762,27 +10754,27 @@ apps/client/src/app/app.component.ts - 48 + 59 apps/client/src/app/app.component.ts - 49 + 60 apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/app.component.ts - 52 + 63 apps/client/src/app/components/header/header.component.ts - 76 + 77 apps/client/src/app/components/header/header.component.ts - 81 + 82 apps/client/src/app/pages/about/about-page.component.ts @@ -11042,7 +11034,7 @@ apps/client/src/app/app.component.ts - 53 + 64 apps/client/src/app/pages/about/about-page.component.ts @@ -11058,7 +11050,7 @@ apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/pages/about/about-page.component.ts @@ -11074,15 +11066,15 @@ apps/client/src/app/app.component.ts - 57 + 68 apps/client/src/app/components/header/header.component.ts - 78 + 79 apps/client/src/app/components/header/header.component.ts - 83 + 84 apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts @@ -11106,15 +11098,15 @@ apps/client/src/app/app.component.ts - 58 + 69 apps/client/src/app/components/header/header.component.ts - 79 + 80 apps/client/src/app/components/header/header.component.ts - 84 + 85 apps/client/src/app/components/home-summary/home-summary.component.ts @@ -11178,11 +11170,11 @@ apps/client/src/app/app.component.ts - 59 + 70 apps/client/src/app/components/header/header.component.ts - 85 + 86 apps/client/src/app/core/auth.guard.ts @@ -11214,15 +11206,15 @@ apps/client/src/app/app.component.ts - 60 + 71 apps/client/src/app/components/header/header.component.ts - 80 + 81 apps/client/src/app/components/header/header.component.ts - 86 + 87 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts @@ -13790,7 +13782,7 @@ Cash-Bestände apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 114 + 115 @@ -14714,11 +14706,11 @@ Einlage apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 47 + 42 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 61 + 56 @@ -14958,7 +14950,7 @@ Aktiv apps/client/src/app/components/home-holdings/home-holdings.component.ts - 30 + 25 @@ -14966,7 +14958,7 @@ Abgeschlossen apps/client/src/app/components/home-holdings/home-holdings.component.ts - 31 + 26 @@ -15049,6 +15041,14 @@ 8 + + Delete Activities + Aktivitäten löschen + + libs/ui/src/lib/activities-table/activities-table.component.html + 66 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 51edc3b79..84c151724 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -51,7 +51,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 159 + 160 @@ -159,7 +159,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 136 + 137 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -223,11 +223,11 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html - 291 + 292 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -259,7 +259,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 428 + 429 @@ -299,7 +299,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 450 + 455 @@ -455,7 +455,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 168 + 169 @@ -763,7 +763,7 @@ Usuario apps/client/src/app/components/header/header.component.html - 225 + 230 @@ -807,7 +807,7 @@ apps/client/src/app/components/header/header.component.html - 239 + 244 @@ -819,7 +819,7 @@ apps/client/src/app/components/header/header.component.html - 249 + 254 @@ -839,11 +839,11 @@ apps/client/src/app/components/header/header.component.html - 257 + 262 apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 356 + 357 apps/client/src/app/pages/accounts/accounts-page.html @@ -863,7 +863,7 @@ apps/client/src/app/components/header/header.component.html - 273 + 278 @@ -879,7 +879,7 @@ apps/client/src/app/components/header/header.component.html - 284 + 289 apps/client/src/app/pages/resources/resources-page.html @@ -899,11 +899,11 @@ apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/components/header/header.component.html - 365 + 370 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -1119,7 +1119,7 @@ apps/client/src/app/components/header/header.component.html - 352 + 357 @@ -1127,7 +1127,7 @@ apps/client/src/app/components/header/header.component.html - 206 + 211 @@ -1135,7 +1135,7 @@ Mi Ghostfolio apps/client/src/app/components/header/header.component.html - 264 + 269 @@ -1143,7 +1143,7 @@ Sobre Ghostfolio apps/client/src/app/components/header/header.component.html - 304 + 309 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1159,7 +1159,7 @@ apps/client/src/app/components/header/header.component.html - 339 + 344 apps/client/src/app/pages/features/features-page.html @@ -1175,7 +1175,7 @@ apps/client/src/app/components/header/header.component.html - 381 + 386 apps/client/src/app/components/home-market/home-market.html @@ -1203,7 +1203,7 @@ Iniciar sesión apps/client/src/app/components/header/header.component.ts - 226 + 229 apps/client/src/app/pages/webauthn/webauthn-page-routing.module.ts @@ -1215,7 +1215,7 @@ Vaya! Token de seguridad incorrecto. apps/client/src/app/components/header/header.component.ts - 240 + 243 @@ -1307,7 +1307,7 @@ Iniciar sesión apps/client/src/app/components/header/header.component.html - 394 + 399 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1515,7 +1515,7 @@ apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 376 + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1531,7 +1531,7 @@ Reporta un anomalía de los datos apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 394 + 395 @@ -1871,7 +1871,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 306 + 307 @@ -2055,7 +2055,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 274 + 275 @@ -2151,7 +2151,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 61 + 37 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -2171,7 +2171,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 76 + 52 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2355,7 +2355,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 66 + 42 apps/client/src/app/pages/zen/zen-page.component.ts @@ -2435,7 +2435,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 184 + 185 @@ -2451,7 +2451,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 208 + 209 @@ -2467,7 +2467,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 232 + 233 @@ -2667,7 +2667,7 @@ Borrador libs/ui/src/lib/activities-table/activities-table.component.html - 143 + 144 @@ -2687,7 +2687,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 394 + 395 @@ -2699,7 +2699,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -2707,7 +2707,7 @@ Clonar libs/ui/src/lib/activities-table/activities-table.component.html - 434 + 435 @@ -2715,7 +2715,7 @@ Exportar borrador como ICS libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 445 @@ -2723,7 +2723,7 @@ ¿Estás seguro de eliminar esta operación? libs/ui/src/lib/activities-table/activities-table.component.ts - 215 + 226 @@ -2779,7 +2779,7 @@ Comenzar apps/client/src/app/components/header/header.component.html - 406 + 411 @@ -2983,7 +2983,7 @@ Mensual apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 55 + 50 @@ -3031,7 +3031,7 @@ Filtrar por... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 281 + 282 @@ -3379,11 +3379,11 @@ Volver apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 145 + 146 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 181 + 182 @@ -3459,7 +3459,7 @@ Dividend apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 43 + 38 libs/ui/src/lib/i18n.ts @@ -3507,11 +3507,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 154 + 155 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 189 + 190 @@ -3547,7 +3547,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 71 + 47 @@ -3571,7 +3571,7 @@ Yearly apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 56 + 51 @@ -3747,7 +3747,7 @@ Upgrade Plan apps/client/src/app/components/header/header.component.html - 177 + 182 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -4047,7 +4047,7 @@ Renew Plan apps/client/src/app/components/header/header.component.html - 185 + 190 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -4082,12 +4082,12 @@ 232 - - Do you really want to delete all your activities? - Do you really want to delete all your activities? + + Do you really want to delete these activities? + Do you really want to delete these activities? - apps/client/src/app/pages/portfolio/activities/activities-page.component.ts - 168 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 @@ -4098,14 +4098,6 @@ 290 - - Delete all Activities - Delete all Activities - - libs/ui/src/lib/activities-table/activities-table.component.html - 65 - - Update platform Update platform @@ -4279,7 +4271,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 369 + 370 @@ -4291,7 +4283,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 381 + 382 @@ -9859,7 +9851,7 @@ ETFs without Countries apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 77 + 78 @@ -9867,7 +9859,7 @@ ETFs without Sectors apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 82 + 83 @@ -10091,7 +10083,7 @@ Currencies apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 72 + 73 @@ -10471,7 +10463,7 @@ apps/client/src/app/app.component.ts - 55 + 66 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10503,15 +10495,15 @@ apps/client/src/app/app.component.ts - 56 + 67 apps/client/src/app/components/header/header.component.ts - 77 + 78 apps/client/src/app/components/header/header.component.ts - 82 + 83 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10763,27 +10755,27 @@ apps/client/src/app/app.component.ts - 48 + 59 apps/client/src/app/app.component.ts - 49 + 60 apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/app.component.ts - 52 + 63 apps/client/src/app/components/header/header.component.ts - 76 + 77 apps/client/src/app/components/header/header.component.ts - 81 + 82 apps/client/src/app/pages/about/about-page.component.ts @@ -11043,7 +11035,7 @@ apps/client/src/app/app.component.ts - 53 + 64 apps/client/src/app/pages/about/about-page.component.ts @@ -11059,7 +11051,7 @@ apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/pages/about/about-page.component.ts @@ -11075,15 +11067,15 @@ apps/client/src/app/app.component.ts - 57 + 68 apps/client/src/app/components/header/header.component.ts - 78 + 79 apps/client/src/app/components/header/header.component.ts - 83 + 84 apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts @@ -11107,15 +11099,15 @@ apps/client/src/app/app.component.ts - 58 + 69 apps/client/src/app/components/header/header.component.ts - 79 + 80 apps/client/src/app/components/header/header.component.ts - 84 + 85 apps/client/src/app/components/home-summary/home-summary.component.ts @@ -11179,11 +11171,11 @@ apps/client/src/app/app.component.ts - 59 + 70 apps/client/src/app/components/header/header.component.ts - 85 + 86 apps/client/src/app/core/auth.guard.ts @@ -11215,15 +11207,15 @@ apps/client/src/app/app.component.ts - 60 + 71 apps/client/src/app/components/header/header.component.ts - 80 + 81 apps/client/src/app/components/header/header.component.ts - 86 + 87 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts @@ -13791,7 +13783,7 @@ Cash Balances apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 114 + 115 @@ -14715,11 +14707,11 @@ Investment apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 47 + 42 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 61 + 56 @@ -14959,7 +14951,7 @@ Active apps/client/src/app/components/home-holdings/home-holdings.component.ts - 30 + 25 @@ -14967,7 +14959,7 @@ Closed apps/client/src/app/components/home-holdings/home-holdings.component.ts - 31 + 26 @@ -15050,6 +15042,14 @@ 8 + + Delete Activities + Delete Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 66 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 198523c74..7b6cdf1d4 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -46,7 +46,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 159 + 160 @@ -170,7 +170,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 136 + 137 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -210,7 +210,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 274 + 275 @@ -278,11 +278,11 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html - 291 + 292 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -314,7 +314,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 428 + 429 @@ -354,7 +354,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 450 + 455 @@ -510,7 +510,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 168 + 169 @@ -610,7 +610,7 @@ Filtrer par... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 281 + 282 @@ -930,7 +930,7 @@ apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 376 + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1022,7 +1022,7 @@ Utilisateur apps/client/src/app/components/header/header.component.html - 225 + 230 @@ -1050,11 +1050,11 @@ apps/client/src/app/components/header/header.component.html - 257 + 262 apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 356 + 357 apps/client/src/app/pages/accounts/accounts-page.html @@ -1142,7 +1142,7 @@ apps/client/src/app/components/header/header.component.html - 239 + 244 @@ -1154,7 +1154,7 @@ apps/client/src/app/components/header/header.component.html - 249 + 254 @@ -1166,7 +1166,7 @@ apps/client/src/app/components/header/header.component.html - 273 + 278 @@ -1182,7 +1182,7 @@ apps/client/src/app/components/header/header.component.html - 284 + 289 apps/client/src/app/pages/resources/resources-page.html @@ -1202,11 +1202,11 @@ apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/components/header/header.component.html - 365 + 370 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -1422,7 +1422,7 @@ apps/client/src/app/components/header/header.component.html - 352 + 357 @@ -1430,7 +1430,7 @@ Moi apps/client/src/app/components/header/header.component.html - 206 + 211 @@ -1438,7 +1438,7 @@ Mon Ghostfolio apps/client/src/app/components/header/header.component.html - 264 + 269 @@ -1446,7 +1446,7 @@ À propos de Ghostfolio apps/client/src/app/components/header/header.component.html - 304 + 309 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1462,7 +1462,7 @@ apps/client/src/app/components/header/header.component.html - 339 + 344 apps/client/src/app/pages/features/features-page.html @@ -1478,7 +1478,7 @@ apps/client/src/app/components/header/header.component.html - 381 + 386 apps/client/src/app/components/home-market/home-market.html @@ -1494,7 +1494,7 @@ Se connecter apps/client/src/app/components/header/header.component.html - 394 + 399 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1506,7 +1506,7 @@ Démarrer apps/client/src/app/components/header/header.component.html - 406 + 411 @@ -1514,7 +1514,7 @@ Se connecter apps/client/src/app/components/header/header.component.ts - 226 + 229 apps/client/src/app/pages/webauthn/webauthn-page-routing.module.ts @@ -1526,7 +1526,7 @@ Oups! Jeton de Sécurité Incorrect. apps/client/src/app/components/header/header.component.ts - 240 + 243 @@ -1890,7 +1890,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 184 + 185 @@ -1898,7 +1898,7 @@ Signaler une Erreur de Données apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 394 + 395 @@ -2138,7 +2138,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 306 + 307 @@ -2566,7 +2566,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 66 + 42 apps/client/src/app/pages/zen/zen-page.component.ts @@ -2582,7 +2582,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 71 + 47 @@ -2594,7 +2594,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 76 + 52 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2666,7 +2666,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 208 + 209 @@ -2682,7 +2682,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 232 + 233 @@ -2722,11 +2722,11 @@ Retour apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 145 + 146 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 181 + 182 @@ -2738,11 +2738,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 154 + 155 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 189 + 190 @@ -2894,7 +2894,7 @@ Dividende apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 43 + 38 libs/ui/src/lib/i18n.ts @@ -2914,7 +2914,7 @@ Mensuel apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 55 + 50 @@ -3174,7 +3174,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 61 + 37 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -3190,7 +3190,7 @@ Brouillon libs/ui/src/lib/activities-table/activities-table.component.html - 143 + 144 @@ -3210,7 +3210,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 394 + 395 @@ -3222,7 +3222,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -3230,7 +3230,7 @@ Dupliquer libs/ui/src/lib/activities-table/activities-table.component.html - 434 + 435 @@ -3238,7 +3238,7 @@ Exporter Brouillon sous ICS libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 445 @@ -3246,7 +3246,7 @@ Voulez-vous vraiment supprimer cette activité ? libs/ui/src/lib/activities-table/activities-table.component.ts - 215 + 226 @@ -3570,7 +3570,7 @@ Annuel apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 56 + 51 @@ -3746,7 +3746,7 @@ Mettre à niveau l'Abonnement apps/client/src/app/components/header/header.component.html - 177 + 182 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -4046,7 +4046,7 @@ Renouveler l'Abonnement apps/client/src/app/components/header/header.component.html - 185 + 190 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -4081,12 +4081,12 @@ 232 - - Do you really want to delete all your activities? - Voulez-vous vraiment supprimer toutes vos activités ? + + Do you really want to delete these activities? + Voulez-vous vraiment supprimer toutes vos activités ? - apps/client/src/app/pages/portfolio/activities/activities-page.component.ts - 168 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 @@ -4097,14 +4097,6 @@ 290 - - Delete all Activities - Supprimer toutes les Activités - - libs/ui/src/lib/activities-table/activities-table.component.html - 65 - - Update platform Mettre à jour la Plateforme @@ -4278,7 +4270,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 369 + 370 @@ -4290,7 +4282,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 381 + 382 @@ -9858,7 +9850,7 @@ ETFs without Countries apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 77 + 78 @@ -9866,7 +9858,7 @@ ETFs without Sectors apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 82 + 83 @@ -10090,7 +10082,7 @@ Currencies apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 72 + 73 @@ -10470,7 +10462,7 @@ apps/client/src/app/app.component.ts - 55 + 66 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10502,15 +10494,15 @@ apps/client/src/app/app.component.ts - 56 + 67 apps/client/src/app/components/header/header.component.ts - 77 + 78 apps/client/src/app/components/header/header.component.ts - 82 + 83 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10762,27 +10754,27 @@ apps/client/src/app/app.component.ts - 48 + 59 apps/client/src/app/app.component.ts - 49 + 60 apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/app.component.ts - 52 + 63 apps/client/src/app/components/header/header.component.ts - 76 + 77 apps/client/src/app/components/header/header.component.ts - 81 + 82 apps/client/src/app/pages/about/about-page.component.ts @@ -11042,7 +11034,7 @@ apps/client/src/app/app.component.ts - 53 + 64 apps/client/src/app/pages/about/about-page.component.ts @@ -11058,7 +11050,7 @@ apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/pages/about/about-page.component.ts @@ -11074,15 +11066,15 @@ apps/client/src/app/app.component.ts - 57 + 68 apps/client/src/app/components/header/header.component.ts - 78 + 79 apps/client/src/app/components/header/header.component.ts - 83 + 84 apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts @@ -11106,15 +11098,15 @@ apps/client/src/app/app.component.ts - 58 + 69 apps/client/src/app/components/header/header.component.ts - 79 + 80 apps/client/src/app/components/header/header.component.ts - 84 + 85 apps/client/src/app/components/home-summary/home-summary.component.ts @@ -11178,11 +11170,11 @@ apps/client/src/app/app.component.ts - 59 + 70 apps/client/src/app/components/header/header.component.ts - 85 + 86 apps/client/src/app/core/auth.guard.ts @@ -11214,15 +11206,15 @@ apps/client/src/app/app.component.ts - 60 + 71 apps/client/src/app/components/header/header.component.ts - 80 + 81 apps/client/src/app/components/header/header.component.ts - 86 + 87 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts @@ -13790,7 +13782,7 @@ Cash Balances apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 114 + 115 @@ -14714,11 +14706,11 @@ Investment apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 47 + 42 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 61 + 56 @@ -14958,7 +14950,7 @@ Active apps/client/src/app/components/home-holdings/home-holdings.component.ts - 30 + 25 @@ -14966,7 +14958,7 @@ Closed apps/client/src/app/components/home-holdings/home-holdings.component.ts - 31 + 26 @@ -15049,6 +15041,14 @@ 8 + + Delete Activities + Delete Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 66 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 2589c8146..f19dd5683 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -51,7 +51,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 159 + 160 @@ -159,7 +159,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 136 + 137 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -223,11 +223,11 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html - 291 + 292 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -259,7 +259,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 428 + 429 @@ -299,7 +299,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 450 + 455 @@ -455,7 +455,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 168 + 169 @@ -763,7 +763,7 @@ Utente apps/client/src/app/components/header/header.component.html - 225 + 230 @@ -807,7 +807,7 @@ apps/client/src/app/components/header/header.component.html - 239 + 244 @@ -819,7 +819,7 @@ apps/client/src/app/components/header/header.component.html - 249 + 254 @@ -839,11 +839,11 @@ apps/client/src/app/components/header/header.component.html - 257 + 262 apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 356 + 357 apps/client/src/app/pages/accounts/accounts-page.html @@ -863,7 +863,7 @@ apps/client/src/app/components/header/header.component.html - 273 + 278 @@ -879,7 +879,7 @@ apps/client/src/app/components/header/header.component.html - 284 + 289 apps/client/src/app/pages/resources/resources-page.html @@ -899,11 +899,11 @@ apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/components/header/header.component.html - 365 + 370 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -1119,7 +1119,7 @@ apps/client/src/app/components/header/header.component.html - 352 + 357 @@ -1127,7 +1127,7 @@ Io apps/client/src/app/components/header/header.component.html - 206 + 211 @@ -1135,7 +1135,7 @@ Il mio Ghostfolio apps/client/src/app/components/header/header.component.html - 264 + 269 @@ -1143,7 +1143,7 @@ Informazioni su Ghostfolio apps/client/src/app/components/header/header.component.html - 304 + 309 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1159,7 +1159,7 @@ apps/client/src/app/components/header/header.component.html - 339 + 344 apps/client/src/app/pages/features/features-page.html @@ -1175,7 +1175,7 @@ apps/client/src/app/components/header/header.component.html - 381 + 386 apps/client/src/app/components/home-market/home-market.html @@ -1203,7 +1203,7 @@ Accedi apps/client/src/app/components/header/header.component.ts - 226 + 229 apps/client/src/app/pages/webauthn/webauthn-page-routing.module.ts @@ -1215,7 +1215,7 @@ Ops! Token di sicurezza errato. apps/client/src/app/components/header/header.component.ts - 240 + 243 @@ -1307,7 +1307,7 @@ Accedi apps/client/src/app/components/header/header.component.html - 394 + 399 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1515,7 +1515,7 @@ apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 376 + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1531,7 +1531,7 @@ Segnala un'anomalia dei dati apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 394 + 395 @@ -1871,7 +1871,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 306 + 307 @@ -2055,7 +2055,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 274 + 275 @@ -2151,7 +2151,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 61 + 37 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -2171,7 +2171,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 76 + 52 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2355,7 +2355,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 66 + 42 apps/client/src/app/pages/zen/zen-page.component.ts @@ -2435,7 +2435,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 184 + 185 @@ -2451,7 +2451,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 208 + 209 @@ -2467,7 +2467,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 232 + 233 @@ -2667,7 +2667,7 @@ Bozza libs/ui/src/lib/activities-table/activities-table.component.html - 143 + 144 @@ -2687,7 +2687,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 394 + 395 @@ -2699,7 +2699,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -2707,7 +2707,7 @@ Clona libs/ui/src/lib/activities-table/activities-table.component.html - 434 + 435 @@ -2715,7 +2715,7 @@ Esporta la bozza come ICS libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 445 @@ -2723,7 +2723,7 @@ Vuoi davvero eliminare questa attività? libs/ui/src/lib/activities-table/activities-table.component.ts - 215 + 226 @@ -2779,7 +2779,7 @@ Inizia apps/client/src/app/components/header/header.component.html - 406 + 411 @@ -2983,7 +2983,7 @@ Mensile apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 55 + 50 @@ -3031,7 +3031,7 @@ Filtra per... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 281 + 282 @@ -3379,11 +3379,11 @@ Indietro apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 145 + 146 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 181 + 182 @@ -3459,7 +3459,7 @@ Dividendi apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 43 + 38 libs/ui/src/lib/i18n.ts @@ -3507,11 +3507,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 154 + 155 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 189 + 190 @@ -3547,7 +3547,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 71 + 47 @@ -3571,7 +3571,7 @@ Annuale apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 56 + 51 @@ -3747,7 +3747,7 @@ Aggiorna il piano apps/client/src/app/components/header/header.component.html - 177 + 182 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -4047,7 +4047,7 @@ Rinnova il piano apps/client/src/app/components/header/header.component.html - 185 + 190 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -4082,12 +4082,12 @@ 232 - - Do you really want to delete all your activities? - Vuoi davvero eliminare tutte le tue attività? + + Do you really want to delete these activities? + Vuoi davvero eliminare tutte le tue attività? - apps/client/src/app/pages/portfolio/activities/activities-page.component.ts - 168 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 @@ -4098,14 +4098,6 @@ 290 - - Delete all Activities - Elimina tutte le attività - - libs/ui/src/lib/activities-table/activities-table.component.html - 65 - - Update platform Aggiorna la piattaforma @@ -4279,7 +4271,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 369 + 370 @@ -4291,7 +4283,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 381 + 382 @@ -9859,7 +9851,7 @@ ETF senza paesi apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 77 + 78 @@ -9867,7 +9859,7 @@ ETF senza settori apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 82 + 83 @@ -10091,7 +10083,7 @@ Valute apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 72 + 73 @@ -10471,7 +10463,7 @@ apps/client/src/app/app.component.ts - 55 + 66 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10503,15 +10495,15 @@ apps/client/src/app/app.component.ts - 56 + 67 apps/client/src/app/components/header/header.component.ts - 77 + 78 apps/client/src/app/components/header/header.component.ts - 82 + 83 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10763,27 +10755,27 @@ apps/client/src/app/app.component.ts - 48 + 59 apps/client/src/app/app.component.ts - 49 + 60 apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/app.component.ts - 52 + 63 apps/client/src/app/components/header/header.component.ts - 76 + 77 apps/client/src/app/components/header/header.component.ts - 81 + 82 apps/client/src/app/pages/about/about-page.component.ts @@ -11043,7 +11035,7 @@ apps/client/src/app/app.component.ts - 53 + 64 apps/client/src/app/pages/about/about-page.component.ts @@ -11059,7 +11051,7 @@ apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/pages/about/about-page.component.ts @@ -11075,15 +11067,15 @@ apps/client/src/app/app.component.ts - 57 + 68 apps/client/src/app/components/header/header.component.ts - 78 + 79 apps/client/src/app/components/header/header.component.ts - 83 + 84 apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts @@ -11107,15 +11099,15 @@ apps/client/src/app/app.component.ts - 58 + 69 apps/client/src/app/components/header/header.component.ts - 79 + 80 apps/client/src/app/components/header/header.component.ts - 84 + 85 apps/client/src/app/components/home-summary/home-summary.component.ts @@ -11179,11 +11171,11 @@ apps/client/src/app/app.component.ts - 59 + 70 apps/client/src/app/components/header/header.component.ts - 85 + 86 apps/client/src/app/core/auth.guard.ts @@ -11215,15 +11207,15 @@ apps/client/src/app/app.component.ts - 60 + 71 apps/client/src/app/components/header/header.component.ts - 80 + 81 apps/client/src/app/components/header/header.component.ts - 86 + 87 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts @@ -13791,7 +13783,7 @@ Cash Balances apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 114 + 115 @@ -14715,11 +14707,11 @@ Investment apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 47 + 42 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 61 + 56 @@ -14959,7 +14951,7 @@ Active apps/client/src/app/components/home-holdings/home-holdings.component.ts - 30 + 25 @@ -14967,7 +14959,7 @@ Closed apps/client/src/app/components/home-holdings/home-holdings.component.ts - 31 + 26 @@ -15050,6 +15042,14 @@ 8 + + Delete Activities + Delete Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 66 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 620200f74..b734932c2 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -50,7 +50,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 159 + 160 @@ -158,7 +158,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 136 + 137 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -222,11 +222,11 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html - 291 + 292 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -258,7 +258,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 428 + 429 @@ -298,7 +298,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 450 + 455 @@ -454,7 +454,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 168 + 169 @@ -762,7 +762,7 @@ Gebruiker apps/client/src/app/components/header/header.component.html - 225 + 230 @@ -806,7 +806,7 @@ apps/client/src/app/components/header/header.component.html - 239 + 244 @@ -818,7 +818,7 @@ apps/client/src/app/components/header/header.component.html - 249 + 254 @@ -838,11 +838,11 @@ apps/client/src/app/components/header/header.component.html - 257 + 262 apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 356 + 357 apps/client/src/app/pages/accounts/accounts-page.html @@ -862,7 +862,7 @@ apps/client/src/app/components/header/header.component.html - 273 + 278 @@ -878,7 +878,7 @@ apps/client/src/app/components/header/header.component.html - 284 + 289 apps/client/src/app/pages/resources/resources-page.html @@ -898,11 +898,11 @@ apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/components/header/header.component.html - 365 + 370 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -1118,7 +1118,7 @@ apps/client/src/app/components/header/header.component.html - 352 + 357 @@ -1126,7 +1126,7 @@ Ik apps/client/src/app/components/header/header.component.html - 206 + 211 @@ -1134,7 +1134,7 @@ Mijn Ghostfolio apps/client/src/app/components/header/header.component.html - 264 + 269 @@ -1142,7 +1142,7 @@ Over Ghostfolio apps/client/src/app/components/header/header.component.html - 304 + 309 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1158,7 +1158,7 @@ apps/client/src/app/components/header/header.component.html - 339 + 344 apps/client/src/app/pages/features/features-page.html @@ -1174,7 +1174,7 @@ apps/client/src/app/components/header/header.component.html - 381 + 386 apps/client/src/app/components/home-market/home-market.html @@ -1202,7 +1202,7 @@ Aanmelden apps/client/src/app/components/header/header.component.ts - 226 + 229 apps/client/src/app/pages/webauthn/webauthn-page-routing.module.ts @@ -1214,7 +1214,7 @@ Oeps! Onjuiste beveiligingstoken. apps/client/src/app/components/header/header.component.ts - 240 + 243 @@ -1306,7 +1306,7 @@ Aanmelden apps/client/src/app/components/header/header.component.html - 394 + 399 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1514,7 +1514,7 @@ apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 376 + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1530,7 +1530,7 @@ Gegevensstoring melden apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 394 + 395 @@ -1870,7 +1870,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 306 + 307 @@ -2054,7 +2054,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 274 + 275 @@ -2150,7 +2150,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 61 + 37 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -2170,7 +2170,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 76 + 52 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2354,7 +2354,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 66 + 42 apps/client/src/app/pages/zen/zen-page.component.ts @@ -2434,7 +2434,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 184 + 185 @@ -2450,7 +2450,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 208 + 209 @@ -2466,7 +2466,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 232 + 233 @@ -2666,7 +2666,7 @@ Concept libs/ui/src/lib/activities-table/activities-table.component.html - 143 + 144 @@ -2686,7 +2686,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 394 + 395 @@ -2698,7 +2698,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -2706,7 +2706,7 @@ Kloon libs/ui/src/lib/activities-table/activities-table.component.html - 434 + 435 @@ -2714,7 +2714,7 @@ Concept exporteren als ICS libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 445 @@ -2722,7 +2722,7 @@ Wil je deze activiteit echt verwijderen? libs/ui/src/lib/activities-table/activities-table.component.ts - 215 + 226 @@ -2778,7 +2778,7 @@ Aan de slag apps/client/src/app/components/header/header.component.html - 406 + 411 @@ -2982,7 +2982,7 @@ Maandelijks apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 55 + 50 @@ -3030,7 +3030,7 @@ Filter op... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 281 + 282 @@ -3378,11 +3378,11 @@ Terug apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 145 + 146 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 181 + 182 @@ -3458,7 +3458,7 @@ Dividend apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 43 + 38 libs/ui/src/lib/i18n.ts @@ -3506,11 +3506,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 154 + 155 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 189 + 190 @@ -3546,7 +3546,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 71 + 47 @@ -3570,7 +3570,7 @@ Jaarlijks apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 56 + 51 @@ -3746,7 +3746,7 @@ Abonnement uitbreiden apps/client/src/app/components/header/header.component.html - 177 + 182 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -4046,7 +4046,7 @@ Abonnement Vernieuwen apps/client/src/app/components/header/header.component.html - 185 + 190 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -4081,12 +4081,12 @@ 232 - - Do you really want to delete all your activities? - Wil je echt al je activiteiten verwijderen? + + Do you really want to delete these activities? + Wil je echt al je activiteiten verwijderen? - apps/client/src/app/pages/portfolio/activities/activities-page.component.ts - 168 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 @@ -4097,14 +4097,6 @@ 290 - - Delete all Activities - Alle activiteiten verwijderen - - libs/ui/src/lib/activities-table/activities-table.component.html - 65 - - Update platform Platform bijwerken @@ -4278,7 +4270,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 369 + 370 @@ -4290,7 +4282,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 381 + 382 @@ -9858,7 +9850,7 @@ ETF's zonder Landen apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 77 + 78 @@ -9866,7 +9858,7 @@ ETF's zonder Sectoren apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 82 + 83 @@ -10090,7 +10082,7 @@ Valuta apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 72 + 73 @@ -10470,7 +10462,7 @@ apps/client/src/app/app.component.ts - 55 + 66 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10502,15 +10494,15 @@ apps/client/src/app/app.component.ts - 56 + 67 apps/client/src/app/components/header/header.component.ts - 77 + 78 apps/client/src/app/components/header/header.component.ts - 82 + 83 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10762,27 +10754,27 @@ apps/client/src/app/app.component.ts - 48 + 59 apps/client/src/app/app.component.ts - 49 + 60 apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/app.component.ts - 52 + 63 apps/client/src/app/components/header/header.component.ts - 76 + 77 apps/client/src/app/components/header/header.component.ts - 81 + 82 apps/client/src/app/pages/about/about-page.component.ts @@ -11042,7 +11034,7 @@ apps/client/src/app/app.component.ts - 53 + 64 apps/client/src/app/pages/about/about-page.component.ts @@ -11058,7 +11050,7 @@ apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/pages/about/about-page.component.ts @@ -11074,15 +11066,15 @@ apps/client/src/app/app.component.ts - 57 + 68 apps/client/src/app/components/header/header.component.ts - 78 + 79 apps/client/src/app/components/header/header.component.ts - 83 + 84 apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts @@ -11106,15 +11098,15 @@ apps/client/src/app/app.component.ts - 58 + 69 apps/client/src/app/components/header/header.component.ts - 79 + 80 apps/client/src/app/components/header/header.component.ts - 84 + 85 apps/client/src/app/components/home-summary/home-summary.component.ts @@ -11178,11 +11170,11 @@ apps/client/src/app/app.component.ts - 59 + 70 apps/client/src/app/components/header/header.component.ts - 85 + 86 apps/client/src/app/core/auth.guard.ts @@ -11214,15 +11206,15 @@ apps/client/src/app/app.component.ts - 60 + 71 apps/client/src/app/components/header/header.component.ts - 80 + 81 apps/client/src/app/components/header/header.component.ts - 86 + 87 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts @@ -13790,7 +13782,7 @@ Cash Balances apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 114 + 115 @@ -14714,11 +14706,11 @@ Investment apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 47 + 42 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 61 + 56 @@ -14958,7 +14950,7 @@ Active apps/client/src/app/components/home-holdings/home-holdings.component.ts - 30 + 25 @@ -14966,7 +14958,7 @@ Closed apps/client/src/app/components/home-holdings/home-holdings.component.ts - 31 + 26 @@ -15049,6 +15041,14 @@ 8 + + Delete Activities + Delete Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 66 + + diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index 4ea586194..9fca12cfd 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -10,27 +10,27 @@ apps/client/src/app/app.component.ts - 48 + 59 apps/client/src/app/app.component.ts - 49 + 60 apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/app.component.ts - 52 + 63 apps/client/src/app/components/header/header.component.ts - 76 + 77 apps/client/src/app/components/header/header.component.ts - 81 + 82 apps/client/src/app/pages/about/about-page.component.ts @@ -290,7 +290,7 @@ apps/client/src/app/app.component.ts - 55 + 66 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -322,15 +322,15 @@ apps/client/src/app/app.component.ts - 56 + 67 apps/client/src/app/components/header/header.component.ts - 77 + 78 apps/client/src/app/components/header/header.component.ts - 82 + 83 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -582,7 +582,7 @@ apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/pages/about/about-page.component.ts @@ -598,15 +598,15 @@ apps/client/src/app/app.component.ts - 57 + 68 apps/client/src/app/components/header/header.component.ts - 78 + 79 apps/client/src/app/components/header/header.component.ts - 83 + 84 apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts @@ -630,15 +630,15 @@ apps/client/src/app/app.component.ts - 58 + 69 apps/client/src/app/components/header/header.component.ts - 79 + 80 apps/client/src/app/components/header/header.component.ts - 84 + 85 apps/client/src/app/components/home-summary/home-summary.component.ts @@ -702,7 +702,7 @@ apps/client/src/app/app.component.ts - 53 + 64 apps/client/src/app/pages/about/about-page.component.ts @@ -718,11 +718,11 @@ apps/client/src/app/app.component.ts - 59 + 70 apps/client/src/app/components/header/header.component.ts - 85 + 86 apps/client/src/app/core/auth.guard.ts @@ -754,15 +754,15 @@ apps/client/src/app/app.component.ts - 60 + 71 apps/client/src/app/components/header/header.component.ts - 80 + 81 apps/client/src/app/components/header/header.component.ts - 86 + 87 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts @@ -1034,7 +1034,7 @@ apps/client/src/app/components/header/header.component.html - 381 + 386 apps/client/src/app/components/home-market/home-market.html @@ -1058,7 +1058,7 @@ apps/client/src/app/components/header/header.component.html - 284 + 289 apps/client/src/app/pages/resources/resources-page.html @@ -1078,7 +1078,7 @@ apps/client/src/app/components/header/header.component.html - 352 + 357 @@ -1190,7 +1190,7 @@ apps/client/src/app/components/header/header.component.html - 339 + 344 apps/client/src/app/pages/features/features-page.html @@ -1234,11 +1234,11 @@ apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/components/header/header.component.html - 365 + 370 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -1542,7 +1542,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 159 + 160 @@ -1702,7 +1702,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 136 + 137 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1742,7 +1742,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 274 + 275 @@ -1794,11 +1794,11 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html - 291 + 292 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1830,7 +1830,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 428 + 429 @@ -1870,7 +1870,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 450 + 455 @@ -2026,7 +2026,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 168 + 169 @@ -2126,7 +2126,7 @@ Currencies apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 72 + 73 @@ -2134,7 +2134,7 @@ ETFs without Countries apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 77 + 78 @@ -2142,7 +2142,7 @@ ETFs without Sectors apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 82 + 83 @@ -2158,7 +2158,7 @@ Filter by... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 281 + 282 @@ -2326,11 +2326,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 154 + 155 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 189 + 190 @@ -2678,11 +2678,11 @@ apps/client/src/app/components/header/header.component.html - 257 + 262 apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 356 + 357 apps/client/src/app/pages/accounts/accounts-page.html @@ -2734,7 +2734,7 @@ apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 376 + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -2902,7 +2902,7 @@ apps/client/src/app/components/header/header.component.html - 239 + 244 @@ -2914,7 +2914,7 @@ apps/client/src/app/components/header/header.component.html - 249 + 254 @@ -2926,7 +2926,7 @@ apps/client/src/app/components/header/header.component.html - 273 + 278 @@ -2934,7 +2934,7 @@ Me apps/client/src/app/components/header/header.component.html - 206 + 211 @@ -2942,7 +2942,7 @@ User apps/client/src/app/components/header/header.component.html - 225 + 230 @@ -2950,7 +2950,7 @@ My Ghostfolio apps/client/src/app/components/header/header.component.html - 264 + 269 @@ -2958,7 +2958,7 @@ About Ghostfolio apps/client/src/app/components/header/header.component.html - 304 + 309 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -2970,7 +2970,7 @@ Sign in apps/client/src/app/components/header/header.component.html - 394 + 399 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -2982,7 +2982,7 @@ Get started apps/client/src/app/components/header/header.component.html - 406 + 411 @@ -2990,7 +2990,7 @@ Sign in apps/client/src/app/components/header/header.component.ts - 226 + 229 apps/client/src/app/pages/webauthn/webauthn-page-routing.module.ts @@ -3002,7 +3002,7 @@ Oops! Incorrect Security Token. apps/client/src/app/components/header/header.component.ts - 240 + 243 @@ -3502,7 +3502,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 184 + 185 @@ -3510,7 +3510,7 @@ Report Data Glitch apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 394 + 395 @@ -3646,7 +3646,7 @@ Upgrade Plan apps/client/src/app/components/header/header.component.html - 177 + 182 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -4230,7 +4230,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 61 + 37 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -4438,7 +4438,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 66 + 42 apps/client/src/app/pages/zen/zen-page.component.ts @@ -4454,7 +4454,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 71 + 47 @@ -4466,7 +4466,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 76 + 52 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -4917,12 +4917,12 @@ 39 - - Do you really want to delete all your activities? - Do you really want to delete all your activities? + + Do you really want to delete these activities? + Do you really want to delete these activities? - apps/client/src/app/pages/portfolio/activities/activities-page.component.ts - 168 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 @@ -4994,7 +4994,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 306 + 307 @@ -5018,7 +5018,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 208 + 209 @@ -5042,7 +5042,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 232 + 233 @@ -5162,11 +5162,11 @@ Back apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 145 + 146 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 181 + 182 @@ -5354,7 +5354,7 @@ Dividend apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 43 + 38 libs/ui/src/lib/i18n.ts @@ -5374,7 +5374,7 @@ Monthly apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 55 + 50 @@ -5382,7 +5382,7 @@ Yearly apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 56 + 51 @@ -5698,7 +5698,7 @@ Renew Plan apps/client/src/app/components/header/header.component.html - 185 + 190 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -13114,7 +13114,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 369 + 370 @@ -13126,7 +13126,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 381 + 382 @@ -13138,7 +13138,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 394 + 395 @@ -13150,15 +13150,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 - - - - Delete all Activities - Delete all Activities - - libs/ui/src/lib/activities-table/activities-table.component.html - 65 + 408 @@ -13166,7 +13158,7 @@ Draft libs/ui/src/lib/activities-table/activities-table.component.html - 143 + 144 @@ -13174,7 +13166,7 @@ Clone libs/ui/src/lib/activities-table/activities-table.component.html - 434 + 435 @@ -13182,7 +13174,7 @@ Export Draft as ICS libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 445 @@ -13190,7 +13182,7 @@ Do you really want to delete this activity? libs/ui/src/lib/activities-table/activities-table.component.ts - 215 + 226 @@ -13790,7 +13782,7 @@ Cash Balances apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 114 + 115 @@ -14714,11 +14706,11 @@ Investment apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 47 + 42 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 61 + 56 @@ -14958,7 +14950,7 @@ Active apps/client/src/app/components/home-holdings/home-holdings.component.ts - 30 + 25 @@ -14966,7 +14958,7 @@ Closed apps/client/src/app/components/home-holdings/home-holdings.component.ts - 31 + 26 @@ -15049,6 +15041,14 @@ 8 + + Delete Activities + Delete Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 66 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 1709130f0..68cc12e0d 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -46,7 +46,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 159 + 160 @@ -170,7 +170,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 136 + 137 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -210,7 +210,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 274 + 275 @@ -278,11 +278,11 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html - 291 + 292 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -314,7 +314,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 428 + 429 @@ -354,7 +354,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 450 + 455 @@ -510,7 +510,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 168 + 169 @@ -610,7 +610,7 @@ Filtrar por... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 281 + 282 @@ -890,7 +890,7 @@ Utilizador apps/client/src/app/components/header/header.component.html - 225 + 230 @@ -918,11 +918,11 @@ apps/client/src/app/components/header/header.component.html - 257 + 262 apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 356 + 357 apps/client/src/app/pages/accounts/accounts-page.html @@ -1010,7 +1010,7 @@ apps/client/src/app/components/header/header.component.html - 239 + 244 @@ -1022,7 +1022,7 @@ apps/client/src/app/components/header/header.component.html - 249 + 254 @@ -1034,7 +1034,7 @@ apps/client/src/app/components/header/header.component.html - 273 + 278 @@ -1050,7 +1050,7 @@ apps/client/src/app/components/header/header.component.html - 284 + 289 apps/client/src/app/pages/resources/resources-page.html @@ -1070,11 +1070,11 @@ apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/components/header/header.component.html - 365 + 370 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -1290,7 +1290,7 @@ apps/client/src/app/components/header/header.component.html - 352 + 357 @@ -1298,7 +1298,7 @@ Eu apps/client/src/app/components/header/header.component.html - 206 + 211 @@ -1306,7 +1306,7 @@ O meu Ghostfolio apps/client/src/app/components/header/header.component.html - 264 + 269 @@ -1314,7 +1314,7 @@ Sobre o Ghostfolio apps/client/src/app/components/header/header.component.html - 304 + 309 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1330,7 +1330,7 @@ apps/client/src/app/components/header/header.component.html - 339 + 344 apps/client/src/app/pages/features/features-page.html @@ -1346,7 +1346,7 @@ apps/client/src/app/components/header/header.component.html - 381 + 386 apps/client/src/app/components/home-market/home-market.html @@ -1362,7 +1362,7 @@ Iniciar sessão apps/client/src/app/components/header/header.component.html - 394 + 399 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1374,7 +1374,7 @@ Começar apps/client/src/app/components/header/header.component.html - 406 + 411 @@ -1382,7 +1382,7 @@ Iniciar sessão apps/client/src/app/components/header/header.component.ts - 226 + 229 apps/client/src/app/pages/webauthn/webauthn-page-routing.module.ts @@ -1394,7 +1394,7 @@ Oops! Token de Segurança Incorreto. apps/client/src/app/components/header/header.component.ts - 240 + 243 @@ -1766,7 +1766,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 184 + 185 @@ -1842,7 +1842,7 @@ apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 376 + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -1858,7 +1858,7 @@ Dados do Relatório com Problema apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 394 + 395 @@ -2114,7 +2114,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 306 + 307 @@ -2482,7 +2482,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 61 + 37 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -2502,7 +2502,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 76 + 52 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -2574,7 +2574,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 208 + 209 @@ -2590,7 +2590,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 232 + 233 @@ -2638,11 +2638,11 @@ Anterior apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 145 + 146 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 181 + 182 @@ -2794,7 +2794,7 @@ Mensalmente apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 55 + 50 @@ -2882,7 +2882,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 66 + 42 apps/client/src/app/pages/zen/zen-page.component.ts @@ -3062,7 +3062,7 @@ Rascunho libs/ui/src/lib/activities-table/activities-table.component.html - 143 + 144 @@ -3082,7 +3082,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 394 + 395 @@ -3094,7 +3094,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -3102,7 +3102,7 @@ Clonar libs/ui/src/lib/activities-table/activities-table.component.html - 434 + 435 @@ -3110,7 +3110,7 @@ Exportar Rascunho como ICS libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 445 @@ -3118,7 +3118,7 @@ Deseja realmente eliminar esta atividade? libs/ui/src/lib/activities-table/activities-table.component.ts - 215 + 226 @@ -3494,7 +3494,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 71 + 47 @@ -3514,11 +3514,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 154 + 155 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 189 + 190 @@ -3526,7 +3526,7 @@ Dividendos apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 43 + 38 libs/ui/src/lib/i18n.ts @@ -3570,7 +3570,7 @@ Anualmente apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 56 + 51 @@ -3746,7 +3746,7 @@ Atualizar Plano apps/client/src/app/components/header/header.component.html - 177 + 182 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -4046,7 +4046,7 @@ Renovar Plano apps/client/src/app/components/header/header.component.html - 185 + 190 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -4081,12 +4081,12 @@ 232 - - Do you really want to delete all your activities? - Deseja mesmo eliminar todas as suas atividades? + + Do you really want to delete these activities? + Deseja mesmo eliminar todas as suas atividades? - apps/client/src/app/pages/portfolio/activities/activities-page.component.ts - 168 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 @@ -4097,14 +4097,6 @@ 290 - - Delete all Activities - Apagar todas as Atividades - - libs/ui/src/lib/activities-table/activities-table.component.html - 65 - - Update platform Atualizar plataforma @@ -4278,7 +4270,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 369 + 370 @@ -4290,7 +4282,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 381 + 382 @@ -9858,7 +9850,7 @@ ETFs without Countries apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 77 + 78 @@ -9866,7 +9858,7 @@ ETFs without Sectors apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 82 + 83 @@ -10090,7 +10082,7 @@ Currencies apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 72 + 73 @@ -10470,7 +10462,7 @@ apps/client/src/app/app.component.ts - 55 + 66 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10502,15 +10494,15 @@ apps/client/src/app/app.component.ts - 56 + 67 apps/client/src/app/components/header/header.component.ts - 77 + 78 apps/client/src/app/components/header/header.component.ts - 82 + 83 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -10762,27 +10754,27 @@ apps/client/src/app/app.component.ts - 48 + 59 apps/client/src/app/app.component.ts - 49 + 60 apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/app.component.ts - 52 + 63 apps/client/src/app/components/header/header.component.ts - 76 + 77 apps/client/src/app/components/header/header.component.ts - 81 + 82 apps/client/src/app/pages/about/about-page.component.ts @@ -11042,7 +11034,7 @@ apps/client/src/app/app.component.ts - 53 + 64 apps/client/src/app/pages/about/about-page.component.ts @@ -11058,7 +11050,7 @@ apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/pages/about/about-page.component.ts @@ -11074,15 +11066,15 @@ apps/client/src/app/app.component.ts - 57 + 68 apps/client/src/app/components/header/header.component.ts - 78 + 79 apps/client/src/app/components/header/header.component.ts - 83 + 84 apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts @@ -11106,15 +11098,15 @@ apps/client/src/app/app.component.ts - 58 + 69 apps/client/src/app/components/header/header.component.ts - 79 + 80 apps/client/src/app/components/header/header.component.ts - 84 + 85 apps/client/src/app/components/home-summary/home-summary.component.ts @@ -11178,11 +11170,11 @@ apps/client/src/app/app.component.ts - 59 + 70 apps/client/src/app/components/header/header.component.ts - 85 + 86 apps/client/src/app/core/auth.guard.ts @@ -11214,15 +11206,15 @@ apps/client/src/app/app.component.ts - 60 + 71 apps/client/src/app/components/header/header.component.ts - 80 + 81 apps/client/src/app/components/header/header.component.ts - 86 + 87 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts @@ -13790,7 +13782,7 @@ Cash Balances apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 114 + 115 @@ -14714,11 +14706,11 @@ Investment apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 47 + 42 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 61 + 56 @@ -14958,7 +14950,7 @@ Active apps/client/src/app/components/home-holdings/home-holdings.component.ts - 30 + 25 @@ -14966,7 +14958,7 @@ Closed apps/client/src/app/components/home-holdings/home-holdings.component.ts - 31 + 26 @@ -15049,6 +15041,14 @@ 8 + + Delete Activities + Delete Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 66 + + diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 244c3f5e8..7c7b737af 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -10,27 +10,27 @@ apps/client/src/app/app.component.ts - 48 + 59 apps/client/src/app/app.component.ts - 49 + 60 apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/app.component.ts - 52 + 63 apps/client/src/app/components/header/header.component.ts - 76 + 77 apps/client/src/app/components/header/header.component.ts - 81 + 82 apps/client/src/app/pages/about/about-page.component.ts @@ -290,7 +290,7 @@ apps/client/src/app/app.component.ts - 55 + 66 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -322,15 +322,15 @@ apps/client/src/app/app.component.ts - 56 + 67 apps/client/src/app/components/header/header.component.ts - 77 + 78 apps/client/src/app/components/header/header.component.ts - 82 + 83 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -582,7 +582,7 @@ apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/pages/about/about-page.component.ts @@ -598,15 +598,15 @@ apps/client/src/app/app.component.ts - 57 + 68 apps/client/src/app/components/header/header.component.ts - 78 + 79 apps/client/src/app/components/header/header.component.ts - 83 + 84 apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts @@ -630,15 +630,15 @@ apps/client/src/app/app.component.ts - 58 + 69 apps/client/src/app/components/header/header.component.ts - 79 + 80 apps/client/src/app/components/header/header.component.ts - 84 + 85 apps/client/src/app/components/home-summary/home-summary.component.ts @@ -702,7 +702,7 @@ apps/client/src/app/app.component.ts - 53 + 64 apps/client/src/app/pages/about/about-page.component.ts @@ -718,11 +718,11 @@ apps/client/src/app/app.component.ts - 59 + 70 apps/client/src/app/components/header/header.component.ts - 85 + 86 apps/client/src/app/core/auth.guard.ts @@ -754,15 +754,15 @@ apps/client/src/app/app.component.ts - 60 + 71 apps/client/src/app/components/header/header.component.ts - 80 + 81 apps/client/src/app/components/header/header.component.ts - 86 + 87 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts @@ -1010,7 +1010,7 @@ apps/client/src/app/components/header/header.component.html - 381 + 386 apps/client/src/app/components/home-market/home-market.html @@ -1034,7 +1034,7 @@ apps/client/src/app/components/header/header.component.html - 284 + 289 apps/client/src/app/pages/resources/resources-page.html @@ -1054,7 +1054,7 @@ apps/client/src/app/components/header/header.component.html - 352 + 357 @@ -1166,7 +1166,7 @@ apps/client/src/app/components/header/header.component.html - 339 + 344 apps/client/src/app/pages/features/features-page.html @@ -1210,11 +1210,11 @@ apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/components/header/header.component.html - 365 + 370 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -1518,7 +1518,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 159 + 160 @@ -1666,7 +1666,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 136 + 137 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1706,7 +1706,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 274 + 275 @@ -1758,11 +1758,11 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html - 291 + 292 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1794,7 +1794,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 428 + 429 @@ -1834,7 +1834,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 450 + 455 @@ -1990,7 +1990,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 168 + 169 @@ -2090,7 +2090,7 @@ Para Birimleri apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 72 + 73 @@ -2098,7 +2098,7 @@ Ülkesi Olmayan ETF'ler apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 77 + 78 @@ -2106,7 +2106,7 @@ Sektörü Olmayan ETF'ler apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 82 + 83 @@ -2114,7 +2114,7 @@ Filtrele... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 281 + 282 @@ -2470,7 +2470,7 @@ apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 376 + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -2590,11 +2590,11 @@ apps/client/src/app/components/header/header.component.html - 257 + 262 apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 356 + 357 apps/client/src/app/pages/accounts/accounts-page.html @@ -2650,7 +2650,7 @@ Kullanıcı apps/client/src/app/components/header/header.component.html - 225 + 230 @@ -2762,7 +2762,7 @@ apps/client/src/app/components/header/header.component.html - 239 + 244 @@ -2774,7 +2774,7 @@ apps/client/src/app/components/header/header.component.html - 249 + 254 @@ -2786,7 +2786,7 @@ apps/client/src/app/components/header/header.component.html - 273 + 278 @@ -2794,7 +2794,7 @@ Ben apps/client/src/app/components/header/header.component.html - 206 + 211 @@ -2802,7 +2802,7 @@ Ghostfolio'm apps/client/src/app/components/header/header.component.html - 264 + 269 @@ -2810,7 +2810,7 @@ Ghostfolio Hakkında apps/client/src/app/components/header/header.component.html - 304 + 309 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -2822,7 +2822,7 @@ Giriş apps/client/src/app/components/header/header.component.html - 394 + 399 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -2834,7 +2834,7 @@ Haydi Başlayalım apps/client/src/app/components/header/header.component.html - 406 + 411 @@ -2842,7 +2842,7 @@ Giriş apps/client/src/app/components/header/header.component.ts - 226 + 229 apps/client/src/app/pages/webauthn/webauthn-page-routing.module.ts @@ -2854,7 +2854,7 @@ Hay Allah! Güvenlik anahtarı yanlış. apps/client/src/app/components/header/header.component.ts - 240 + 243 @@ -3330,7 +3330,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 184 + 185 @@ -3354,7 +3354,7 @@ Rapor Veri Sorunu apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 394 + 395 @@ -3490,7 +3490,7 @@ Üyeliğinizi Yükseltin apps/client/src/app/components/header/header.component.html - 177 + 182 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3782,7 +3782,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 61 + 37 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -4002,7 +4002,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 66 + 42 apps/client/src/app/pages/zen/zen-page.component.ts @@ -4018,7 +4018,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 71 + 47 @@ -4030,7 +4030,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 76 + 52 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -4429,12 +4429,12 @@ 39 - - Do you really want to delete all your activities? - Tüm işlemlerinizi silmeyi gerçekten istiyor musunuz? + + Do you really want to delete these activities? + Tüm işlemlerinizi silmeyi gerçekten istiyor musunuz? - apps/client/src/app/pages/portfolio/activities/activities-page.component.ts - 168 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 @@ -4482,7 +4482,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 306 + 307 @@ -4506,7 +4506,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 208 + 209 @@ -4530,7 +4530,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 232 + 233 @@ -4634,11 +4634,11 @@ Geri apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 145 + 146 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 181 + 182 @@ -4650,11 +4650,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 154 + 155 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 189 + 190 @@ -4842,7 +4842,7 @@ Temettü apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 43 + 38 libs/ui/src/lib/i18n.ts @@ -4862,7 +4862,7 @@ Aylık apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 55 + 50 @@ -4870,7 +4870,7 @@ Yıllık apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 56 + 51 @@ -5162,7 +5162,7 @@ Aboneliği Yenile apps/client/src/app/components/header/header.component.html - 185 + 190 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -12574,7 +12574,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 369 + 370 @@ -12586,7 +12586,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 381 + 382 @@ -12598,7 +12598,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 394 + 395 @@ -12610,15 +12610,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 - - - - Delete all Activities - Tüm İşlemleri sil - - libs/ui/src/lib/activities-table/activities-table.component.html - 65 + 408 @@ -12626,7 +12618,7 @@ Taslak libs/ui/src/lib/activities-table/activities-table.component.html - 143 + 144 @@ -12634,7 +12626,7 @@ Klonla libs/ui/src/lib/activities-table/activities-table.component.html - 434 + 435 @@ -12642,7 +12634,7 @@ Taslakları ICS Olarak Dışa Aktar libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 445 @@ -12650,7 +12642,7 @@ TBu işlemi silmeyi gerçekten istiyor musunuz? libs/ui/src/lib/activities-table/activities-table.component.ts - 215 + 226 @@ -13790,7 +13782,7 @@ Nakit Bakiyeleri apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 114 + 115 @@ -14714,11 +14706,11 @@ Investment apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 47 + 42 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 61 + 56 @@ -14958,7 +14950,7 @@ Active apps/client/src/app/components/home-holdings/home-holdings.component.ts - 30 + 25 @@ -14966,7 +14958,7 @@ Closed apps/client/src/app/components/home-holdings/home-holdings.component.ts - 31 + 26 @@ -15049,6 +15041,14 @@ 8 + + Delete Activities + Delete Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 66 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index b7eaa7131..c98e0b16f 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -10,27 +10,27 @@ apps/client/src/app/app.component.ts - 48 + 59 apps/client/src/app/app.component.ts - 49 + 60 apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/app.component.ts - 52 + 63 apps/client/src/app/components/header/header.component.ts - 76 + 77 apps/client/src/app/components/header/header.component.ts - 81 + 82 apps/client/src/app/pages/about/about-page.component.ts @@ -289,7 +289,7 @@ apps/client/src/app/app.component.ts - 55 + 66 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -320,15 +320,15 @@ apps/client/src/app/app.component.ts - 56 + 67 apps/client/src/app/components/header/header.component.ts - 77 + 78 apps/client/src/app/components/header/header.component.ts - 82 + 83 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -579,7 +579,7 @@ apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/pages/about/about-page.component.ts @@ -594,15 +594,15 @@ apps/client/src/app/app.component.ts - 57 + 68 apps/client/src/app/components/header/header.component.ts - 78 + 79 apps/client/src/app/components/header/header.component.ts - 83 + 84 apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts @@ -625,15 +625,15 @@ apps/client/src/app/app.component.ts - 58 + 69 apps/client/src/app/components/header/header.component.ts - 79 + 80 apps/client/src/app/components/header/header.component.ts - 84 + 85 apps/client/src/app/components/home-summary/home-summary.component.ts @@ -696,7 +696,7 @@ apps/client/src/app/app.component.ts - 53 + 64 apps/client/src/app/pages/about/about-page.component.ts @@ -711,11 +711,11 @@ apps/client/src/app/app.component.ts - 59 + 70 apps/client/src/app/components/header/header.component.ts - 85 + 86 apps/client/src/app/core/auth.guard.ts @@ -746,15 +746,15 @@ apps/client/src/app/app.component.ts - 60 + 71 apps/client/src/app/components/header/header.component.ts - 80 + 81 apps/client/src/app/components/header/header.component.ts - 86 + 87 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts @@ -1022,7 +1022,7 @@ apps/client/src/app/components/header/header.component.html - 381 + 386 apps/client/src/app/components/home-market/home-market.html @@ -1045,7 +1045,7 @@ apps/client/src/app/components/header/header.component.html - 284 + 289 apps/client/src/app/pages/resources/resources-page.html @@ -1064,7 +1064,7 @@ apps/client/src/app/components/header/header.component.html - 352 + 357 @@ -1173,7 +1173,7 @@ apps/client/src/app/components/header/header.component.html - 339 + 344 apps/client/src/app/pages/features/features-page.html @@ -1214,11 +1214,11 @@ apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/components/header/header.component.html - 365 + 370 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -1516,7 +1516,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 159 + 160 @@ -1620,7 +1620,7 @@ Cash Balances apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 114 + 115 @@ -1674,7 +1674,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 136 + 137 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1712,7 +1712,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 274 + 275 @@ -1763,11 +1763,11 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html - 291 + 292 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1798,7 +1798,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 428 + 429 @@ -1837,7 +1837,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 450 + 455 @@ -1978,7 +1978,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 168 + 169 @@ -2074,21 +2074,21 @@ Currencies apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 72 + 73 ETFs without Countries apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 77 + 78 ETFs without Sectors apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 82 + 83 @@ -2102,7 +2102,7 @@ Filter by... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 281 + 282 @@ -2256,11 +2256,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 154 + 155 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 189 + 190 @@ -2580,11 +2580,11 @@ apps/client/src/app/components/header/header.component.html - 257 + 262 apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 356 + 357 apps/client/src/app/pages/accounts/accounts-page.html @@ -2631,7 +2631,7 @@ apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 376 + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -2781,7 +2781,7 @@ apps/client/src/app/components/header/header.component.html - 239 + 244 @@ -2792,7 +2792,7 @@ apps/client/src/app/components/header/header.component.html - 249 + 254 @@ -2803,35 +2803,35 @@ apps/client/src/app/components/header/header.component.html - 273 + 278 Me apps/client/src/app/components/header/header.component.html - 206 + 211 User apps/client/src/app/components/header/header.component.html - 225 + 230 My Ghostfolio apps/client/src/app/components/header/header.component.html - 264 + 269 About Ghostfolio apps/client/src/app/components/header/header.component.html - 304 + 309 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -2842,7 +2842,7 @@ Sign in apps/client/src/app/components/header/header.component.html - 394 + 399 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -2853,14 +2853,14 @@ Get started apps/client/src/app/components/header/header.component.html - 406 + 411 Sign in apps/client/src/app/components/header/header.component.ts - 226 + 229 apps/client/src/app/pages/webauthn/webauthn-page-routing.module.ts @@ -2871,7 +2871,7 @@ Oops! Incorrect Security Token. apps/client/src/app/components/header/header.component.ts - 240 + 243 @@ -3320,14 +3320,14 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 184 + 185 Report Data Glitch apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 394 + 395 @@ -3452,7 +3452,7 @@ Upgrade Plan apps/client/src/app/components/header/header.component.html - 177 + 182 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3976,7 +3976,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 61 + 37 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -4162,7 +4162,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 66 + 42 apps/client/src/app/pages/zen/zen-page.component.ts @@ -4177,7 +4177,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 71 + 47 @@ -4188,7 +4188,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 76 + 52 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -4587,11 +4587,11 @@ 39 - - Do you really want to delete all your activities? + + Do you really want to delete these activities? - apps/client/src/app/pages/portfolio/activities/activities-page.component.ts - 168 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 @@ -4655,7 +4655,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 306 + 307 @@ -4677,7 +4677,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 208 + 209 @@ -4699,7 +4699,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 232 + 233 @@ -4804,11 +4804,11 @@ Back apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 145 + 146 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 181 + 182 @@ -4976,7 +4976,7 @@ Dividend apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 43 + 38 libs/ui/src/lib/i18n.ts @@ -4994,14 +4994,14 @@ Monthly apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 55 + 50 Yearly apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 56 + 51 @@ -5284,7 +5284,7 @@ Renew Plan apps/client/src/app/components/header/header.component.html - 185 + 190 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -13446,7 +13446,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 369 + 370 @@ -13457,7 +13457,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 381 + 382 @@ -13468,7 +13468,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 394 + 395 @@ -13479,42 +13479,35 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 - - - - Delete all Activities - - libs/ui/src/lib/activities-table/activities-table.component.html - 65 + 408 Draft libs/ui/src/lib/activities-table/activities-table.component.html - 143 + 144 Clone libs/ui/src/lib/activities-table/activities-table.component.html - 434 + 435 Export Draft as ICS libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 445 Do you really want to delete this activity? libs/ui/src/lib/activities-table/activities-table.component.ts - 215 + 226 @@ -14144,11 +14137,11 @@ Investment apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 47 + 42 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 61 + 56 @@ -14339,14 +14332,14 @@ Closed apps/client/src/app/components/home-holdings/home-holdings.component.ts - 31 + 26 Active apps/client/src/app/components/home-holdings/home-holdings.component.ts - 30 + 25 @@ -14419,6 +14412,13 @@ 14 + + Delete Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 66 + + diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index 3f792b054..5ea221459 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -11,27 +11,27 @@ apps/client/src/app/app.component.ts - 48 + 59 apps/client/src/app/app.component.ts - 49 + 60 apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/app.component.ts - 52 + 63 apps/client/src/app/components/header/header.component.ts - 76 + 77 apps/client/src/app/components/header/header.component.ts - 81 + 82 apps/client/src/app/pages/about/about-page.component.ts @@ -291,7 +291,7 @@ apps/client/src/app/app.component.ts - 55 + 66 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -323,15 +323,15 @@ apps/client/src/app/app.component.ts - 56 + 67 apps/client/src/app/components/header/header.component.ts - 77 + 78 apps/client/src/app/components/header/header.component.ts - 82 + 83 apps/client/src/app/pages/about/overview/about-overview-page.component.ts @@ -583,7 +583,7 @@ apps/client/src/app/app.component.ts - 50 + 61 apps/client/src/app/pages/about/about-page.component.ts @@ -599,15 +599,15 @@ apps/client/src/app/app.component.ts - 57 + 68 apps/client/src/app/components/header/header.component.ts - 78 + 79 apps/client/src/app/components/header/header.component.ts - 83 + 84 apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts @@ -631,15 +631,15 @@ apps/client/src/app/app.component.ts - 58 + 69 apps/client/src/app/components/header/header.component.ts - 79 + 80 apps/client/src/app/components/header/header.component.ts - 84 + 85 apps/client/src/app/components/home-summary/home-summary.component.ts @@ -703,7 +703,7 @@ apps/client/src/app/app.component.ts - 53 + 64 apps/client/src/app/pages/about/about-page.component.ts @@ -719,11 +719,11 @@ apps/client/src/app/app.component.ts - 59 + 70 apps/client/src/app/components/header/header.component.ts - 85 + 86 apps/client/src/app/core/auth.guard.ts @@ -755,15 +755,15 @@ apps/client/src/app/app.component.ts - 60 + 71 apps/client/src/app/components/header/header.component.ts - 80 + 81 apps/client/src/app/components/header/header.component.ts - 86 + 87 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts @@ -1035,7 +1035,7 @@ apps/client/src/app/components/header/header.component.html - 381 + 386 apps/client/src/app/components/home-market/home-market.html @@ -1059,7 +1059,7 @@ apps/client/src/app/components/header/header.component.html - 284 + 289 apps/client/src/app/pages/resources/resources-page.html @@ -1079,7 +1079,7 @@ apps/client/src/app/components/header/header.component.html - 352 + 357 @@ -1191,7 +1191,7 @@ apps/client/src/app/components/header/header.component.html - 339 + 344 apps/client/src/app/pages/features/features-page.html @@ -1235,11 +1235,11 @@ apps/client/src/app/components/header/header.component.html - 296 + 301 apps/client/src/app/components/header/header.component.html - 365 + 370 apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html @@ -1543,7 +1543,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 159 + 160 @@ -1655,7 +1655,7 @@ 现金余额 apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 114 + 115 @@ -1711,7 +1711,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 136 + 137 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1751,7 +1751,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 274 + 275 @@ -1803,11 +1803,11 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html - 291 + 292 libs/ui/src/lib/holdings-table/holdings-table.component.html @@ -1839,7 +1839,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 428 + 429 @@ -1879,7 +1879,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 450 + 455 @@ -2035,7 +2035,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 168 + 169 @@ -2135,7 +2135,7 @@ 货币 apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 72 + 73 @@ -2143,7 +2143,7 @@ 没有国家的 ETF apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 77 + 78 @@ -2151,7 +2151,7 @@ 无行业类别的 ETF apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 82 + 83 @@ -2167,7 +2167,7 @@ 过滤... apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 281 + 282 @@ -2335,11 +2335,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 154 + 155 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 189 + 190 @@ -2695,11 +2695,11 @@ apps/client/src/app/components/header/header.component.html - 257 + 262 apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 356 + 357 apps/client/src/app/pages/accounts/accounts-page.html @@ -2751,7 +2751,7 @@ apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 376 + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -2919,7 +2919,7 @@ apps/client/src/app/components/header/header.component.html - 239 + 244 @@ -2931,7 +2931,7 @@ apps/client/src/app/components/header/header.component.html - 249 + 254 @@ -2943,7 +2943,7 @@ apps/client/src/app/components/header/header.component.html - 273 + 278 @@ -2951,7 +2951,7 @@ apps/client/src/app/components/header/header.component.html - 206 + 211 @@ -2959,7 +2959,7 @@ 用户 apps/client/src/app/components/header/header.component.html - 225 + 230 @@ -2967,7 +2967,7 @@ 我的 Ghostfolio apps/client/src/app/components/header/header.component.html - 264 + 269 @@ -2975,7 +2975,7 @@ 关于 Ghostfolio apps/client/src/app/components/header/header.component.html - 304 + 309 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -2987,7 +2987,7 @@ 登入 apps/client/src/app/components/header/header.component.html - 394 + 399 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -2999,7 +2999,7 @@ 开始使用 apps/client/src/app/components/header/header.component.html - 406 + 411 @@ -3007,7 +3007,7 @@ 登入 apps/client/src/app/components/header/header.component.ts - 226 + 229 apps/client/src/app/pages/webauthn/webauthn-page-routing.module.ts @@ -3019,7 +3019,7 @@ 哎呀!安全令牌不正确。 apps/client/src/app/components/header/header.component.ts - 240 + 243 @@ -3519,7 +3519,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 184 + 185 @@ -3527,7 +3527,7 @@ 报告数据故障 apps/client/src/app/components/position-detail-dialog/position-detail-dialog.html - 394 + 395 @@ -3663,7 +3663,7 @@ 升级计划 apps/client/src/app/components/header/header.component.html - 177 + 182 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -4247,7 +4247,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 61 + 37 apps/client/src/app/pages/zen/zen-page-routing.module.ts @@ -4455,7 +4455,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 66 + 42 apps/client/src/app/pages/zen/zen-page.component.ts @@ -4471,7 +4471,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 71 + 47 @@ -4483,7 +4483,7 @@ apps/client/src/app/pages/home/home-page.component.ts - 76 + 52 apps/client/src/app/pages/markets/markets-page-routing.module.ts @@ -4934,12 +4934,12 @@ 39 - - Do you really want to delete all your activities? - 您真的要删除所有活动吗? + + Do you really want to delete these activities? + 您真的要删除所有活动吗? - apps/client/src/app/pages/portfolio/activities/activities-page.component.ts - 168 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 @@ -5011,7 +5011,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 306 + 307 @@ -5035,7 +5035,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 208 + 209 @@ -5059,7 +5059,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 232 + 233 @@ -5179,11 +5179,11 @@ 后退 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 145 + 146 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 181 + 182 @@ -5371,7 +5371,7 @@ 股息 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 43 + 38 libs/ui/src/lib/i18n.ts @@ -5391,7 +5391,7 @@ 每月 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 55 + 50 @@ -5399,7 +5399,7 @@ 每年 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 56 + 51 @@ -5715,7 +5715,7 @@ 更新计划 apps/client/src/app/components/header/header.component.html - 185 + 190 apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -13947,7 +13947,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 369 + 370 @@ -13959,7 +13959,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 381 + 382 @@ -13971,7 +13971,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 394 + 395 @@ -13983,15 +13983,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 - - - - Delete all Activities - 删除所有活动 - - libs/ui/src/lib/activities-table/activities-table.component.html - 65 + 408 @@ -13999,7 +13991,7 @@ 草稿 libs/ui/src/lib/activities-table/activities-table.component.html - 143 + 144 @@ -14007,7 +13999,7 @@ 克隆 libs/ui/src/lib/activities-table/activities-table.component.html - 434 + 435 @@ -14015,7 +14007,7 @@ 将汇票导出为 ICS libs/ui/src/lib/activities-table/activities-table.component.html - 444 + 445 @@ -14023,7 +14015,7 @@ 您确实要删除此活动吗? libs/ui/src/lib/activities-table/activities-table.component.ts - 215 + 226 @@ -14739,11 +14731,11 @@ 投资 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 47 + 42 apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 61 + 56 @@ -14959,7 +14951,7 @@ 关闭 apps/client/src/app/components/home-holdings/home-holdings.component.ts - 31 + 26 @@ -14967,7 +14959,7 @@ 积极的 apps/client/src/app/components/home-holdings/home-holdings.component.ts - 30 + 25 @@ -15050,6 +15042,14 @@ 8 + + Delete Activities + Delete Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 66 + + From 15bf9f2f9c1dbdbcd6f49b5184ef7f8d5147104d Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sun, 12 May 2024 10:34:33 +0200 Subject: [PATCH 15/83] =?UTF-8?q?Feature/add=20T=C3=BCrk=C3=A7e=20to=20foo?= =?UTF-8?q?ter=20(#3401)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/client/src/app/app.component.html | 8 +++----- .../pages/resources/personal-finance-tools/products.ts | 3 ++- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html index 29541962b..fd5ae16f0 100644 --- a/apps/client/src/app/app.component.html +++ b/apps/client/src/app/app.component.html @@ -158,11 +158,9 @@
    3. Português
    4. - +
    5. + Türkçe +
    6. - https://ghostfol.io/es/mercados - daily + https://ghostfol.io/pt ${currentDate}T00:00:00+00:00 - https://ghostfol.io/es/open - daily + https://ghostfol.io/pt/blog ${currentDate}T00:00:00+00:00 - https://ghostfol.io/es/precios + https://ghostfol.io/pt/funcionalidades ${currentDate}T00:00:00+00:00 - https://ghostfol.io/es/preguntas-mas-frecuentes + https://ghostfol.io/pt/mercados ${currentDate}T00:00:00+00:00 - https://ghostfol.io/es/recursos + https://ghostfol.io/pt/open ${currentDate}T00:00:00+00:00 - https://ghostfol.io/es/registro + https://ghostfol.io/pt/perguntas-mais-frequentes ${currentDate}T00:00:00+00:00 - https://ghostfol.io/es/sobre + https://ghostfol.io/pt/precos ${currentDate}T00:00:00+00:00 - https://ghostfol.io/es/sobre/changelog + https://ghostfol.io/pt/recursos ${currentDate}T00:00:00+00:00 - https://ghostfol.io/es/sobre/licencia - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/es/sobre/oss-friends - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/es/sobre/politica-de-privacidad - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/a-propos - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/a-propos/changelog - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/a-propos/licence - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/a-propos/oss-friends - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/a-propos/politique-de-confidentialite - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/enregistrement - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/fonctionnalites - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/foire-aux-questions - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/marches - daily - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/open - daily - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/prix - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/fr/ressources - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/domande-piu-frequenti - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/funzionalita - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/informazioni-su - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/informazioni-su/changelog - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/informazioni-su/informativa-sulla-privacy - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/informazioni-su/licenza - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/informazioni-su/oss-friends - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/iscrizione - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/mercati - daily - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/open - daily - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/prezzi - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-8figures - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-allinvestview - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-allvue-systems - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-altoo - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-basil-finance - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-beanvest - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-capitally - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-capmon - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-compound-planning - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-copilot-money - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-de.fi - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-delta - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-divvydiary - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-empower - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-exirio - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-fina - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-finary - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-finwise - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-folishare - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-getquin - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-gospatz - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-intuit-mint - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-justetf - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-koyfin - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-kubera - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-magnifi - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-markets.sh - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-maybe-finance - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-monarch-money - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-monse - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-navexa - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-parqet - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-plannix - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-portfolio-dividend-tracker - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-portfolio-visualizer - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-portseido - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-projectionlab - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-rocket-money - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-seeking-alpha - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-sharesight - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-simple-portfolio - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-snowball-analytics - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-stock-events - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-stockle - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-stockmarketeye - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-stonksfolio - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-sumio - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-tiller - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-utluna - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-vyzer - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-wallmine - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-wealthfolio - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-wealthica - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-whal - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-yeekatee - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/it/risorse/personal-finance-tools/alternativa-open-source-a-ynab - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-8figures - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-allinvestview - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-allvue-systems - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-altoo - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-basil-finance - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-beanvest - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-capitally - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-capmon - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-compound-planning - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-copilot-money - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-de.fi - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-delta - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-divvydiary - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-empower - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-exirio - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-fina - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-finary - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-finwise - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-folishare - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-getquin - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-gospatz - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-intuit-mint - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-justetf - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-koyfin - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-kubera - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-magnifi - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-markets.sh - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-maybe-finance - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-monarch-money - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-monse - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-navexa - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-parqet - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-plannix - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-portfolio-dividend-tracker - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-portfolio-visualizer - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-portseido - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-projectionlab - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-rocket-money - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-seeking-alpha - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-sharesight - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-simple-portfolio - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-snowball-analytics - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-stock-events - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-stockle - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-stockmarketeye - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-stonksfolio - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-sumio - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-tiller - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-utluna - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-vyzer - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-wallmine - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-wealthfolio - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-wealthica - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-whal - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-yeekatee - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/bronnen/personal-finance-tools/open-source-alternatief-voor-ynab - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/functionaliteiten - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/markten - daily - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/open - daily - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/over - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/over/changelog - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/over/licentie - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/over/oss-friends - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/over/privacybeleid - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/prijzen - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/registratie - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/nl/veelgestelde-vragen - ${currentDate}T00:00:00+00:00 - - - - https://ghostfol.io/pt - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/pt/blog - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/pt/funcionalidades - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/pt/mercados - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/pt/open - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/pt/perguntas-mais-frequentes - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/pt/precos - ${currentDate}T00:00:00+00:00 - - - https://ghostfol.io/pt/recursos + https://ghostfol.io/pt/recursos/personal-finance-tools ${currentDate}T00:00:00+00:00 @@ -1400,4 +516,5 @@ ${currentDate}T00:00:00+00:00 --> + ${personalFinanceTools} 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 548ffc1fa..01d920460 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,10 +1,10 @@ import { AuthGuard } from '@ghostfolio/client/core/auth.guard'; +import { personalFinanceTools } from '@ghostfolio/common/personal-finance-tools'; import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; import { PersonalFinanceToolsPageComponent } from './personal-finance-tools-page.component'; -import { products } from './products'; const routes: Routes = [ { @@ -13,19 +13,20 @@ const routes: Routes = [ path: '', title: $localize`Personal Finance Tools` }, - ...products - .filter(({ key }) => { - return key !== 'ghostfolio'; - }) - .map(({ alias, component, key, name }) => { - return { - canActivate: [AuthGuard], - path: $localize`open-source-alternative-to` + `-${alias ?? key}`, - loadComponent: () => - import(`./products/${key}-page.component`).then(() => component), - title: $localize`Open Source Alternative to ${name}` - }; - }) + ...personalFinanceTools.map(({ alias, key, name }) => { + return { + canActivate: [AuthGuard], + data: { key }, + loadComponent: () => + import('./product-page.component').then( + ({ GfProductPageComponent }) => { + return GfProductPageComponent; + } + ), + path: $localize`open-source-alternative-to` + `-${alias ?? key}`, + title: $localize`Open Source Alternative to ${name}` + }; + }) ]; @NgModule({ 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 173b5426f..596ac310e 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,8 +1,8 @@ +import { personalFinanceTools } from '@ghostfolio/common/personal-finance-tools'; + import { Component, OnDestroy } from '@angular/core'; import { Subject } from 'rxjs'; -import { products } from './products'; - @Component({ host: { class: 'page' }, selector: 'gf-personal-finance-tools-page', @@ -12,13 +12,9 @@ import { products } from './products'; export class PersonalFinanceToolsPageComponent implements OnDestroy { public pathAlternativeTo = $localize`open-source-alternative-to` + '-'; public pathResources = '/' + $localize`resources`; - public products = products - .filter(({ key }) => { - return key !== 'ghostfolio'; - }) - .sort((a, b) => { - return a.name.localeCompare(b.name, undefined, { sensitivity: 'base' }); - }); + public personalFinanceTools = personalFinanceTools.sort((a, b) => { + return a.name.localeCompare(b.name, undefined, { sensitivity: 'base' }); + }); public routerLinkAbout = ['/' + $localize`about`]; private unsubscribeSubject = new Subject(); diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html b/apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html index ec224ae6c..90b7b3ad1 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 @@ -18,25 +18,29 @@ with Ghostfolio.

      - @for (product of products; track product) { + @for ( + personalFinanceTool of personalFinanceTools; + track personalFinanceTool + ) {
      - Open Source Alternative to {{ product.name }} + Open Source Alternative to {{ personalFinanceTool.name }}
      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 new file mode 100644 index 000000000..3004a3ec4 --- /dev/null +++ b/apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -0,0 +1,68 @@ +import { DataService } from '@ghostfolio/client/services/data.service'; +import { Product } from '@ghostfolio/common/interfaces'; +import { personalFinanceTools } from '@ghostfolio/common/personal-finance-tools'; + +import { CommonModule } from '@angular/common'; +import { Component, OnInit } from '@angular/core'; +import { MatButtonModule } from '@angular/material/button'; +import { ActivatedRoute, RouterModule } from '@angular/router'; + +@Component({ + host: { class: 'page' }, + imports: [CommonModule, MatButtonModule, RouterModule], + selector: 'gf-product-page', + standalone: true, + styleUrls: ['./product-page.scss'], + templateUrl: './product-page.html' +}) +export class GfProductPageComponent implements OnInit { + public key: string; + public price: number; + public product1: Product; + public product2: Product; + public routerLinkAbout = ['/' + $localize`about`]; + public routerLinkFeatures = ['/' + $localize`features`]; + public routerLinkResourcesPersonalFinanceTools = [ + '/' + $localize`resources`, + 'personal-finance-tools' + ]; + + public constructor( + private dataService: DataService, + private route: ActivatedRoute + ) {} + + public ngOnInit() { + const { subscriptions } = this.dataService.fetchInfo(); + + this.price = subscriptions?.default?.price; + + this.product1 = { + founded: 2021, + hasFreePlan: true, + hasSelfHostingAbility: true, + isOpenSource: true, + key: 'ghostfolio', + languages: [ + 'Deutsch', + 'English', + 'Español', + 'Français', + 'Italiano', + 'Nederlands', + 'Português', + 'Türkçe', + '简体中文' + ], + name: 'Ghostfolio', + origin: $localize`Switzerland`, + region: $localize`Global`, + slogan: 'Open Source Wealth Management', + useAnonymously: true + }; + + this.product2 = personalFinanceTools.find(({ key }) => { + return key === this.route.snapshot.data['key']; + }); + } +} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html b/apps/client/src/app/pages/resources/personal-finance-tools/product-page.html similarity index 100% rename from apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html rename to apps/client/src/app/pages/resources/personal-finance-tools/product-page.html diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.scss b/apps/client/src/app/pages/resources/personal-finance-tools/product-page.scss similarity index 100% rename from apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.scss rename to apps/client/src/app/pages/resources/personal-finance-tools/product-page.scss diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts deleted file mode 100644 index d946883f2..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-allinvestview-systems-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class AllInvestViewPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'allinvestview'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts deleted file mode 100644 index 399abe975..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-allvue-systems-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class AllvueSystemsPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'allvue-systems'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts deleted file mode 100644 index 1d1164e79..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-altoo-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class AltooPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'altoo'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/base-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/base-page.component.ts deleted file mode 100644 index 840a40e3e..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/base-page.component.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { DataService } from '@ghostfolio/client/services/data.service'; - -import { Component, OnInit } from '@angular/core'; - -@Component({ - selector: 'gf-base-product-page', - template: '' -}) -export class BaseProductPageComponent implements OnInit { - public price: number; - - public constructor(private dataService: DataService) {} - - public ngOnInit() { - const { subscriptions } = this.dataService.fetchInfo(); - - this.price = subscriptions?.default?.price; - } -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts deleted file mode 100644 index 1712f0013..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-basil-finance-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class BasilFinancePageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'basil-finance'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts deleted file mode 100644 index 26b3b7fa3..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-beanvest-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class BeanvestPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'beanvest'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts deleted file mode 100644 index 37501d4f0..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-capitally-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class CapitallyPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'capitally'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts deleted file mode 100644 index d021e2078..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-capmon-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class CapMonPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'capmon'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts deleted file mode 100644 index 0d455e127..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-compound-planning-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class CompoundPlanningPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'compound-planning'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts deleted file mode 100644 index f1c05855f..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-copilot-money-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class CopilotMoneyPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'copilot-money'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts deleted file mode 100644 index b2a0d62ec..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-de-fi-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class DeFiPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'de.fi'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts deleted file mode 100644 index fe11152d3..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-delta-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class DeltaPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'delta'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts deleted file mode 100644 index e128650de..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-divvy-diary-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class DivvyDiaryPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'divvydiary'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts deleted file mode 100644 index 933e1ac4b..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-eightfigures-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class EightFiguresPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'eightfigures'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts deleted file mode 100644 index ea02c8b17..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-empower-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class EmpowerPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'empower'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts deleted file mode 100644 index 7844350df..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-exirio-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class ExirioPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'exirio'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts deleted file mode 100644 index 328d9896e..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-fina-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class FinaPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'fina'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts deleted file mode 100644 index 4e64d8c8f..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-finary-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class FinaryPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'finary'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts deleted file mode 100644 index 70f46d132..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-finwise-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class FinWisePageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'finwise'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts deleted file mode 100644 index dfddfc2a0..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-folishare-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class FolisharePageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'folishare'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts deleted file mode 100644 index 86ae168b6..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-getquin-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class GetquinPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'getquin'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts deleted file mode 100644 index 8bb604b11..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-gospatz-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class GoSpatzPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'gospatz'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts deleted file mode 100644 index a142bec5c..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-intuit-mint-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class IntuitMintPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'intuit-mint'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts deleted file mode 100644 index f87ec5f43..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-justetf-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class JustEtfPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'justetf'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts deleted file mode 100644 index b88496b8e..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-koyfin-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class KoyfinPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'koyfin'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts deleted file mode 100644 index cb0511d4f..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-kubera-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class KuberaPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'kubera'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts deleted file mode 100644 index 4e688c11e..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-magnifi-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class MagnifiPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'magnifi'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts deleted file mode 100644 index 94bc581e4..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-markets-sh-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class MarketsShPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'markets.sh'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts deleted file mode 100644 index 86738e136..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-maybe-finance-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class MaybeFinancePageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'maybe-finance'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts deleted file mode 100644 index 095584fbe..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-monarch-money-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class MonarchMoneyPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'monarch-money'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts deleted file mode 100644 index 588854e3d..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-monse-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class MonsePageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'monse'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts deleted file mode 100644 index 0ffb17bbe..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-navexa-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class NavexaPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'navexa'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts deleted file mode 100644 index f6e956023..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-parqet-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class ParqetPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'parqet'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts deleted file mode 100644 index 106818ea0..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-plannix-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class PlannixPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'plannix'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts deleted file mode 100644 index da41c1604..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-portfolio-dividend-tracker-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class PortfolioDividendTrackerPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'portfolio-dividend-tracker'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts deleted file mode 100644 index 4baeb4de9..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-portfolio-visualizer-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class PortfolioVisualizerPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'portfolio-visualizer'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts deleted file mode 100644 index 7fb7703b2..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-portseido-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class PortseidoPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'portseido'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts deleted file mode 100644 index 6cd22b8f4..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-projection-lab-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class ProjectionLabPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'projectionlab'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts deleted file mode 100644 index 7dc279444..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-rocket-money-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class RocketMoneyPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'rocket-money'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts deleted file mode 100644 index 825eacb34..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-seeking-alpha-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class SeekingAlphaPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'seeking-alpha'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts deleted file mode 100644 index 5b0554179..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-sharesight-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class SharesightPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'sharesight'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts deleted file mode 100644 index 8a1ae2790..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-simple-portfolio-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class SimplePortfolioPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'simple-portfolio'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts deleted file mode 100644 index 9892af41d..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-snowball-analytics-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class SnowballAnalyticsPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'snowball-analytics'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts deleted file mode 100644 index ea8aa753b..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-stock-events-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class StockEventsPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'stock-events'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts deleted file mode 100644 index e06ec527b..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-stockle-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class StocklePageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'stockle'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts deleted file mode 100644 index 1c70efc04..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-stockmarketeye-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class StockMarketEyePageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'stockmarketeye'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts deleted file mode 100644 index f62c3f3bd..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-stonksfolio-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class StonksfolioPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'stonksfolio'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts deleted file mode 100644 index acf23f772..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-sumio-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class SumioPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'sumio'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts deleted file mode 100644 index 69ba2759b..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-tiller-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class TillerPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'tiller'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts deleted file mode 100644 index 8ce62c741..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-utluna-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class UtlunaPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'utluna'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts deleted file mode 100644 index 37b8c4a72..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-vyzer-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class VyzerPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'vyzer'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts deleted file mode 100644 index 5c75c80fb..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-wallmine-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class WallminePageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'wallmine'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts deleted file mode 100644 index d888e2f93..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-wealthfolio-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class WealthfolioPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'wealthfolio'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts deleted file mode 100644 index cea5ddf7a..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-wealthica-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class WealthicaPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'wealthica'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts deleted file mode 100644 index b336c07a0..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-whal-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class WhalPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'whal'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts deleted file mode 100644 index bd95a70f9..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-yeekatee-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class YeekateePageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'yeekatee'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts b/apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts deleted file mode 100644 index 0c343b4e6..000000000 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { CommonModule } from '@angular/common'; -import { Component } from '@angular/core'; -import { MatButtonModule } from '@angular/material/button'; -import { RouterModule } from '@angular/router'; - -import { products } from '../products'; -import { BaseProductPageComponent } from './base-page.component'; - -@Component({ - host: { class: 'page' }, - imports: [CommonModule, MatButtonModule, RouterModule], - selector: 'gf-ynab-page', - standalone: true, - styleUrls: ['../product-page-template.scss'], - templateUrl: '../product-page-template.html' -}) -export class YnabPageComponent extends BaseProductPageComponent { - public product1 = products.find(({ key }) => { - return key === 'ghostfolio'; - }); - - public product2 = products.find(({ key }) => { - return key === 'ynab'; - }); - - public routerLinkAbout = ['/' + $localize`about`]; - public routerLinkFeatures = ['/' + $localize`features`]; - public routerLinkResourcesPersonalFinanceTools = [ - '/' + $localize`resources`, - 'personal-finance-tools' - ]; -} diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 3b9123218..803e71757 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -5500,7 +5500,7 @@ ✅ Yes - ✅ Yes + ✅ Sí apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 109 @@ -7296,7 +7296,7 @@ ❌ No - ❌ No + ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111 @@ -12216,7 +12216,7 @@ Open Source Alternative to - Open Source Alternative to + Alternativa de software libre a apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html 38 @@ -12224,7 +12224,7 @@ Open Source Alternative to - 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 26 @@ -12232,7 +12232,7 @@ The Open Source Alternative to - The Open Source Alternative to + La alternativa de software libre a apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 8 @@ -13144,7 +13144,7 @@ open-source-alternative-to - 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 23 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 0a084f24d..20c37025b 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -3,7 +3,7 @@ The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. - Le risque de perte en investissant peut être important. Il est déconseillé d'investir de l'argent dont vous pourriez avoir besoin à court terme. + Le risque de perte en investissant peut être important. Il est déconseillé d’investir de l’argent dont vous pourriez avoir besoin à court terme. apps/client/src/app/app.component.html 182 @@ -459,7 +459,7 @@ Asset Profiles - Profil d'Actifs + Profil d’Actifs libs/ui/src/lib/assistant/assistant.html 67 @@ -627,7 +627,7 @@ Asset Class - Classe d'Actifs + Classe d’Actifs apps/client/src/app/components/admin-market-data/admin-market-data.html 60 @@ -651,7 +651,7 @@ Asset Sub Class - Sous-classe d'Actifs + Sous-classe d’Actifs apps/client/src/app/components/admin-market-data/admin-market-data.html 69 @@ -695,7 +695,7 @@ Activities Count - Nombre d'Activités + Nombre d’Activités apps/client/src/app/components/admin-market-data/admin-market-data.html 87 @@ -895,7 +895,7 @@ User Count - Nombre d'Utilisateurs + Nombre d’Utilisateurs apps/client/src/app/components/admin-overview/admin-overview.html 13 @@ -903,7 +903,7 @@ Activity Count - Nombre d'Activités + Nombre d’Activités apps/client/src/app/components/admin-overview/admin-overview.html 23 @@ -1623,7 +1623,7 @@ Upgrade Plan - Mettre à niveau l'Abonnement + Mettre à niveau l’Abonnement apps/client/src/app/components/home-summary/home-summary.component.ts 115 @@ -1651,7 +1651,7 @@ Savings Rate - Taux d'Épargne + Taux d’Épargne apps/client/src/app/components/investment-chart/investment-chart.component.ts 214 @@ -1807,7 +1807,7 @@ Emergency Fund - Fonds d'Urgence + Fonds d’Urgence apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 190 @@ -1823,7 +1823,7 @@ Buying Power - Pouvoir d'Achat + Pouvoir d’Achat apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 237 @@ -1831,7 +1831,7 @@ Excluded from Analysis - Exclus de l'Analyse + Exclus de l’Analyse apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 249 @@ -1879,7 +1879,7 @@ Please enter the amount of your emergency fund: - Veuillez entrer le montant de votre fonds d'urgence : + Veuillez entrer le montant de votre fonds d’urgence : apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts 57 @@ -1947,7 +1947,7 @@ Today - Aujourd'hui + Aujourd’hui apps/client/src/app/components/toggle/toggle.component.ts 22 @@ -2031,7 +2031,7 @@ Oops! Something went wrong. - Oups! Quelque chose s'est mal passé. + Oups! Quelque chose s’est mal passé. apps/client/src/app/core/http-response.interceptor.ts 89 @@ -2043,7 +2043,7 @@ Okay - D'accord + D’accord apps/client/src/app/core/http-response.interceptor.ts 92 @@ -2143,7 +2143,7 @@ Could not redeem coupon code - Le code promotionnel n'a pas pu être appliqué + Le code promotionnel n’a pas pu être appliqué apps/client/src/app/components/user-account-membership/user-account-membership.component.ts 121 @@ -2299,7 +2299,7 @@ Date and number format - Format de date et d'heure + Format de date et d’heure apps/client/src/app/components/user-account-settings/user-account-settings.html 123 @@ -2367,7 +2367,7 @@ User ID - ID d'utilisateur + ID d’utilisateur apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html 45 @@ -2739,7 +2739,7 @@ Import has been completed - L'import est terminé + L’import est terminé apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts 128 @@ -2835,7 +2835,7 @@ By Asset Class - Par Classe d'Actifs + Par Classe d’Actifs apps/client/src/app/pages/portfolio/allocations/allocations-page.html 86 @@ -3070,8 +3070,8 @@ - Hello, has shared a Portfolio with you! - Bonjour, a partagé un Portefeuille avec vous ! + Hello, has shared a Portfolio with you! + Bonjour, a partagé un Portefeuille avec vous ! apps/client/src/app/pages/public/public-page.html 4 @@ -3187,7 +3187,7 @@ Oops, authentication has failed. - Oups, l'identification a échoué. + Oups, l’identification a échoué. apps/client/src/app/pages/webauthn/webauthn-page.html 19 @@ -3203,7 +3203,7 @@ Go back to Home Page - Retour à la Page d'Accueil + Retour à la Page d’Accueil apps/client/src/app/pages/webauthn/webauthn-page.html 31 @@ -3319,7 +3319,7 @@ Annual Interest Rate - Taux d'Intérêt Annuel + Taux d’Intérêt Annuel libs/ui/src/lib/fire-calculator/fire-calculator.component.html 21 @@ -3387,7 +3387,7 @@ Asset Class - Classe d'Actifs + Classe d’Actifs libs/ui/src/lib/i18n.ts 6 @@ -3395,7 +3395,7 @@ Asset Sub Class - Sous-classe d'Actifs + Sous-classe d’Actifs libs/ui/src/lib/i18n.ts 7 @@ -3403,7 +3403,7 @@ Emergency Fund - Fonds d'Urgence + Fonds d’Urgence libs/ui/src/lib/i18n.ts 13 @@ -3583,7 +3583,7 @@ Time to add your first activity. - Il est temps d'ajouter votre première activité. + Il est temps d’ajouter votre première activité. libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html 12 @@ -3635,7 +3635,7 @@ Valid until - Valide jusqu'au + Valide jusqu’au libs/ui/src/lib/membership-card/membership-card.component.html 23 @@ -3715,7 +3715,7 @@ Are you an ambitious investor who needs the full picture? - Êtes-vous un investisseur ambitieux qui a besoin d'une vue complète ? + Êtes-vous un investisseur ambitieux qui a besoin d’une vue complète ? apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 12 @@ -3771,7 +3771,7 @@ and more Features... - et d'autres fonctionnalités... + et d’autres fonctionnalités... apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 42 @@ -3795,7 +3795,7 @@ Upgrade Plan - Mettre à niveau l'Abonnement + Mettre à niveau l’Abonnement apps/client/src/app/components/header/header.component.html 182 @@ -3815,7 +3815,7 @@ For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. - Pour les investisseurs à l'aise avec la technologie qui préfèrent héberger Ghostfolio sur leur propre infrastructure. + Pour les investisseurs à l’aise avec la technologie qui préfèrent héberger Ghostfolio sur leur propre infrastructure. apps/client/src/app/pages/pricing/pricing-page.html 36 @@ -3911,7 +3911,7 @@ For ambitious investors who need the full picture of their financial assets. - Pour les investisseurs ambitieux qui ont besoin d'une vue complète de leurs actifs financiers. + Pour les investisseurs ambitieux qui ont besoin d’une vue complète de leurs actifs financiers. apps/client/src/app/pages/pricing/pricing-page.html 180 @@ -3935,7 +3935,7 @@ It’s free. - C'est gratuit. + C’est gratuit. apps/client/src/app/pages/pricing/pricing-page.html 294 @@ -3979,7 +3979,7 @@ Savings Rate per Month - Taux d'Épargne mensuel + Taux d’Épargne mensuel libs/ui/src/lib/fire-calculator/fire-calculator.component.html 10 @@ -4051,7 +4051,7 @@ Oops! Could not get the historical exchange rate from - Oups ! Nous n'avons pas pu obtenir le taux de change historique à partir de + Oups ! Nous n’avons pas pu obtenir le taux de change historique à partir de apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 292 @@ -4095,7 +4095,7 @@ Renew Plan - Renouveler l'Abonnement + Renouveler l’Abonnement apps/client/src/app/components/header/header.component.html 190 @@ -4111,7 +4111,7 @@ Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. - Notre offre Ghostfolio Premium cloud est la manière la plus simple de débuter. Grâce au temps qu'elle économise, ce sera la meilleure option pour la plupart des gens. Les revenus sont utilisés pour couvrir les frais d'infrastructures et financer le développement continu de Ghostfolio. + Notre offre Ghostfolio Premium cloud est la manière la plus simple de débuter. Grâce au temps qu’elle économise, ce sera la meilleure option pour la plupart des gens. Les revenus sont utilisés pour couvrir les frais d’infrastructures et financer le développement continu de Ghostfolio. apps/client/src/app/pages/pricing/pricing-page.html 6 @@ -4127,7 +4127,7 @@ Delete User - Supprimer l'Utilisateur + Supprimer l’Utilisateur apps/client/src/app/components/admin-users/admin-users.html 232 @@ -4143,7 +4143,7 @@ By ETF Provider - Par Émetteur d'ETF + Par Émetteur d’ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html 314 @@ -4215,7 +4215,7 @@ Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: - Mettez à niveau vers Ghostfolio Premium aujourd'hui et gagnez accès à des fonctionnalités exclusives pour améliorer votre expérience d'investissement: + Mettez à niveau vers Ghostfolio Premium aujourd’hui et gagnez accès à des fonctionnalités exclusives pour améliorer votre expérience d’investissement: apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 15 @@ -4223,7 +4223,7 @@ Get the tools to effectively manage your finances and refine your personal investment strategy. - Obtenez les outils pour gérer efficacement vos finances et affinez votre stratégie d'investissement personnelle. + Obtenez les outils pour gérer efficacement vos finances et affinez votre stratégie d’investissement personnelle. apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 45 @@ -5499,7 +5499,7 @@ ✅ Yes - ✅ Yes + ✅ Oui apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 109 @@ -7295,7 +7295,7 @@ ❌ No - ❌ No + ❌ Non apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111 @@ -12215,7 +12215,7 @@ Open Source Alternative to - Open Source Alternative to + Alternative open source à apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html 38 @@ -12223,7 +12223,7 @@ Open Source Alternative to - Open Source Alternative to + Alternative open source à apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts 26 @@ -12231,7 +12231,7 @@ The Open Source Alternative to - The Open Source Alternative to + L’alternative open source à apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 8 @@ -13143,7 +13143,7 @@ open-source-alternative-to - open-source-alternative-to + alternative-open-source-a apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts 23 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index e996ec68e..a5a4d5d3b 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -5499,7 +5499,7 @@ ✅ Yes - ✅ Yes + ✅ Sim apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 109 @@ -7295,7 +7295,7 @@ ❌ No - ❌ No + ❌ Não apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 111 @@ -12215,7 +12215,7 @@ Open Source Alternative to - Open Source Alternative to + Alternativa de software livre ao apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html 38 @@ -12223,7 +12223,7 @@ Open Source Alternative to - 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 26 @@ -12231,7 +12231,7 @@ The Open Source Alternative to - The Open Source Alternative to + A alternativa de software livre ao apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html 8 @@ -13143,7 +13143,7 @@ open-source-alternative-to - 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 23 diff --git a/libs/common/src/lib/interfaces/product.ts b/libs/common/src/lib/interfaces/product.ts index 274ee8207..0723abf95 100644 --- a/libs/common/src/lib/interfaces/product.ts +++ b/libs/common/src/lib/interfaces/product.ts @@ -1,6 +1,5 @@ export interface Product { alias?: string; - component: any; founded?: number; hasFreePlan?: boolean; hasSelfHostingAbility?: boolean; diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/products.ts b/libs/common/src/lib/personal-finance-tools.ts similarity index 55% rename from apps/client/src/app/pages/resources/personal-finance-tools/products.ts rename to libs/common/src/lib/personal-finance-tools.ts index 521659611..f7d10366d 100644 --- a/apps/client/src/app/pages/resources/personal-finance-tools/products.ts +++ b/libs/common/src/lib/personal-finance-tools.ts @@ -1,89 +1,7 @@ import { Product } from '@ghostfolio/common/interfaces'; -import { AllInvestViewPageComponent } from './products/allinvestview-page.component'; -import { AllvueSystemsPageComponent } from './products/allvue-systems-page.component'; -import { AltooPageComponent } from './products/altoo-page.component'; -import { BasilFinancePageComponent } from './products/basil-finance-page.component'; -import { BeanvestPageComponent } from './products/beanvest-page.component'; -import { CapitallyPageComponent } from './products/capitally-page.component'; -import { CapMonPageComponent } from './products/capmon-page.component'; -import { CompoundPlanningPageComponent } from './products/compound-planning-page.component'; -import { CopilotMoneyPageComponent } from './products/copilot-money-page.component'; -import { DeFiPageComponent } from './products/de.fi-page.component'; -import { DeltaPageComponent } from './products/delta-page.component'; -import { DivvyDiaryPageComponent } from './products/divvydiary-page.component'; -import { EightFiguresPageComponent } from './products/eightfigures-page.component'; -import { EmpowerPageComponent } from './products/empower-page.component'; -import { ExirioPageComponent } from './products/exirio-page.component'; -import { FinaPageComponent } from './products/fina-page.component'; -import { FinaryPageComponent } from './products/finary-page.component'; -import { FinWisePageComponent } from './products/finwise-page.component'; -import { FolisharePageComponent } from './products/folishare-page.component'; -import { GetquinPageComponent } from './products/getquin-page.component'; -import { GoSpatzPageComponent } from './products/gospatz-page.component'; -import { IntuitMintPageComponent } from './products/intuit-mint-page.component'; -import { JustEtfPageComponent } from './products/justetf-page.component'; -import { KoyfinPageComponent } from './products/koyfin-page.component'; -import { KuberaPageComponent } from './products/kubera-page.component'; -import { MagnifiPageComponent } from './products/magnifi-page.component'; -import { MarketsShPageComponent } from './products/markets.sh-page.component'; -import { MaybeFinancePageComponent } from './products/maybe-finance-page.component'; -import { MonarchMoneyPageComponent } from './products/monarch-money-page.component'; -import { MonsePageComponent } from './products/monse-page.component'; -import { NavexaPageComponent } from './products/navexa-page.component'; -import { ParqetPageComponent } from './products/parqet-page.component'; -import { PlannixPageComponent } from './products/plannix-page.component'; -import { PortfolioDividendTrackerPageComponent } from './products/portfolio-dividend-tracker-page.component'; -import { PortfolioVisualizerPageComponent } from './products/portfolio-visualizer-page.component'; -import { PortseidoPageComponent } from './products/portseido-page.component'; -import { ProjectionLabPageComponent } from './products/projectionlab-page.component'; -import { RocketMoneyPageComponent } from './products/rocket-money-page.component'; -import { SeekingAlphaPageComponent } from './products/seeking-alpha-page.component'; -import { SharesightPageComponent } from './products/sharesight-page.component'; -import { SimplePortfolioPageComponent } from './products/simple-portfolio-page.component'; -import { SnowballAnalyticsPageComponent } from './products/snowball-analytics-page.component'; -import { StockEventsPageComponent } from './products/stock-events-page.component'; -import { StocklePageComponent } from './products/stockle-page.component'; -import { StockMarketEyePageComponent } from './products/stockmarketeye-page.component'; -import { StonksfolioPageComponent } from './products/stonksfolio-page.component'; -import { SumioPageComponent } from './products/sumio-page.component'; -import { TillerPageComponent } from './products/tiller-page.component'; -import { UtlunaPageComponent } from './products/utluna-page.component'; -import { VyzerPageComponent } from './products/vyzer-page.component'; -import { WallminePageComponent } from './products/wallmine-page.component'; -import { WealthfolioPageComponent } from './products/wealthfolio-page.component'; -import { WealthicaPageComponent } from './products/wealthica-page.component'; -import { WhalPageComponent } from './products/whal-page.component'; -import { YeekateePageComponent } from './products/yeekatee-page.component'; -import { YnabPageComponent } from './products/ynab-page.component'; - -export const products: Product[] = [ - { - component: undefined, - founded: 2021, - hasFreePlan: true, - hasSelfHostingAbility: true, - isOpenSource: true, - key: 'ghostfolio', - languages: [ - 'Deutsch', - 'English', - 'Español', - 'Français', - 'Italiano', - 'Nederlands', - 'Português', - 'Türkçe', - '简体中文' - ], - name: 'Ghostfolio', - origin: $localize`Switzerland`, - region: $localize`Global`, - slogan: 'Open Source Wealth Management', - useAnonymously: true - }, +export const personalFinanceTools: Product[] = [ { - component: AllInvestViewPageComponent, founded: 2023, hasSelfHostingAbility: false, key: 'allinvestview', @@ -92,26 +10,23 @@ export const products: Product[] = [ slogan: 'All your Investments in One View' }, { - component: AllvueSystemsPageComponent, founded: 2019, hasFreePlan: false, hasSelfHostingAbility: false, key: 'allvue-systems', name: 'Allvue Systems', - origin: $localize`United States`, + origin: `United States`, slogan: 'Investment Software Suite' }, { - component: AltooPageComponent, founded: 2017, hasSelfHostingAbility: false, key: 'altoo', name: 'Altoo Wealth Platform', - origin: $localize`Switzerland`, + origin: `Switzerland`, slogan: 'Simplicity for Complex Wealth' }, { - component: BasilFinancePageComponent, founded: 2022, hasFreePlan: true, hasSelfHostingAbility: false, @@ -120,56 +35,50 @@ export const products: Product[] = [ slogan: 'The ultimate solution for tracking and managing your investments' }, { - component: BeanvestPageComponent, founded: 2020, hasFreePlan: true, hasSelfHostingAbility: false, key: 'beanvest', name: 'Beanvest', - origin: $localize`France`, + origin: `France`, pricingPerYear: '$100', slogan: 'Stock Portfolio Tracker for Smart Investors' }, { - component: CapitallyPageComponent, hasFreePlan: true, hasSelfHostingAbility: false, key: 'capitally', name: 'Capitally', - origin: $localize`Poland`, + origin: `Poland`, pricingPerYear: '€50', slogan: 'Optimize your investments performance' }, { - component: CapMonPageComponent, founded: 2022, key: 'capmon', name: 'CapMon.org', - origin: $localize`Germany`, + origin: `Germany`, note: 'CapMon.org has discontinued in 2023', slogan: 'Next Generation Assets Tracking' }, { - component: CompoundPlanningPageComponent, founded: 2019, key: 'compound-planning', name: 'Compound Planning', - origin: $localize`United States`, + origin: `United States`, slogan: 'Modern Wealth & Investment Management' }, { - component: CopilotMoneyPageComponent, founded: 2019, hasFreePlan: false, hasSelfHostingAbility: false, key: 'copilot-money', name: 'Copilot Money', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$70', slogan: 'Do money better with Copilot' }, { - component: DeFiPageComponent, founded: 2020, key: 'de.fi', languages: ['English'], @@ -177,215 +86,195 @@ export const products: Product[] = [ slogan: 'DeFi Portfolio Tracker' }, { - component: DeltaPageComponent, founded: 2017, hasFreePlan: true, hasSelfHostingAbility: false, key: 'delta', name: 'Delta Investment Tracker', note: 'Acquired by eToro', - origin: $localize`Belgium`, + origin: `Belgium`, slogan: 'The app to track all your investments. Make smart moves only.' }, { - component: DivvyDiaryPageComponent, founded: 2019, hasFreePlan: true, hasSelfHostingAbility: false, key: 'divvydiary', languages: ['Deutsch', 'English'], name: 'DivvyDiary', - origin: $localize`Germany`, + origin: `Germany`, pricingPerYear: '€65', slogan: 'Your personal Dividend Calendar' }, { - component: EmpowerPageComponent, founded: 2009, hasSelfHostingAbility: false, key: 'empower', name: 'Empower', note: 'Originally named as Personal Capital', - origin: $localize`United States`, + origin: `United States`, slogan: 'Get answers to your money questions' }, { alias: '8figures', - component: EightFiguresPageComponent, founded: 2022, key: 'eightfigures', name: '8FIGURES', - origin: $localize`United States`, + origin: `United States`, slogan: 'Portfolio Tracker Designed by Professional Investors' }, { - component: ExirioPageComponent, founded: 2020, hasFreePlan: true, hasSelfHostingAbility: false, key: 'exirio', name: 'Exirio', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$100', slogan: 'All your wealth, in one place.' }, { - component: FinaPageComponent, founded: 2023, hasFreePlan: true, hasSelfHostingAbility: false, key: 'fina', languages: ['English'], name: 'Fina', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$115', slogan: 'Flexible Financial Management' }, { - component: FinaryPageComponent, founded: 2020, key: 'finary', languages: ['Deutsch', 'English', 'Français'], name: 'Finary', - origin: $localize`United States`, + origin: `United States`, slogan: 'Real-Time Portfolio Tracker & Stock Tracker' }, { - component: FinWisePageComponent, founded: 2023, hasFreePlan: true, key: 'finwise', name: 'FinWise', - origin: $localize`South Africa`, + origin: `South Africa`, pricingPerYear: '€69.99', slogan: 'Personal finances, simplified' }, { - component: FolisharePageComponent, hasFreePlan: true, hasSelfHostingAbility: false, key: 'folishare', languages: ['Deutsch', 'English'], name: 'folishare', - origin: $localize`Austria`, + origin: `Austria`, pricingPerYear: '$65', slogan: 'Take control over your investments' }, { - component: GetquinPageComponent, founded: 2020, hasFreePlan: true, hasSelfHostingAbility: false, key: 'getquin', languages: ['Deutsch', 'English'], name: 'getquin', - origin: $localize`Germany`, + origin: `Germany`, pricingPerYear: '€48', slogan: 'Portfolio Tracker, Analysis & Community' }, { - component: GoSpatzPageComponent, hasFreePlan: true, hasSelfHostingAbility: false, key: 'gospatz', name: 'goSPATZ', - origin: $localize`Germany`, + origin: `Germany`, slogan: 'Volle Kontrolle über deine Investitionen' }, { - component: IntuitMintPageComponent, hasFreePlan: true, hasSelfHostingAbility: false, key: 'intuit-mint', name: 'Intuit Mint', note: 'Intuit Mint has discontinued in 2023', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$60', slogan: 'Managing money, made simple' }, { - component: JustEtfPageComponent, founded: 2011, hasFreePlan: true, hasSelfHostingAbility: false, key: 'justetf', name: 'justETF', - origin: $localize`Germany`, + origin: `Germany`, pricingPerYear: '€119', slogan: 'ETF portfolios made simple' }, { - component: KoyfinPageComponent, founded: 2016, hasFreePlan: true, hasSelfHostingAbility: false, key: 'koyfin', name: 'Koyfin', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$468', slogan: 'Comprehensive financial data analysis' }, { - component: KuberaPageComponent, founded: 2019, hasFreePlan: false, hasSelfHostingAbility: false, key: 'kubera', name: 'Kubera®', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$150', slogan: 'The Time Machine for your Net Worth' }, { - component: MagnifiPageComponent, founded: 2018, hasFreePlan: false, hasSelfHostingAbility: false, key: 'magnifi', name: 'Magnifi', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$132', slogan: 'AI Investing Assistant' }, { - component: MarketsShPageComponent, founded: 2022, hasFreePlan: true, hasSelfHostingAbility: false, key: 'markets.sh', languages: ['English'], name: 'markets.sh', - origin: $localize`Germany`, + origin: `Germany`, pricingPerYear: '€168', - region: $localize`Global`, + region: `Global`, slogan: 'Track your investments' }, { - component: MaybeFinancePageComponent, founded: 2021, hasSelfHostingAbility: false, key: 'maybe-finance', languages: ['English'], name: 'Maybe Finance', note: 'Maybe Finance has discontinued in 2023', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$145', - region: $localize`United States`, + region: `United States`, slogan: 'Your financial future, in your control' }, { - component: MonarchMoneyPageComponent, founded: 2019, hasFreePlan: false, hasSelfHostingAbility: false, key: 'monarch-money', name: 'Monarch Money', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$99.99', slogan: 'The modern way to manage your money' }, { - component: MonsePageComponent, hasFreePlan: false, hasSelfHostingAbility: false, key: 'monse', @@ -394,51 +283,46 @@ export const products: Product[] = [ slogan: 'Gain financial control and keep your data private.' }, { - component: NavexaPageComponent, founded: 2017, hasFreePlan: false, hasSelfHostingAbility: false, key: 'navexa', name: 'Navexa', - origin: $localize`Australia`, + origin: `Australia`, pricingPerYear: '$90', slogan: 'The Intelligent Portfolio Tracker' }, { - component: ParqetPageComponent, founded: 2020, hasSelfHostingAbility: false, hasFreePlan: true, key: 'parqet', name: 'Parqet', note: 'Originally named as Tresor One', - origin: $localize`Germany`, + origin: `Germany`, pricingPerYear: '€88', region: 'Austria, Germany, Switzerland', slogan: 'Dein Vermögen immer im Blick' }, { - component: PlannixPageComponent, founded: 2023, hasSelfHostingAbility: false, key: 'plannix', name: 'Plannix', - origin: $localize`Italy`, + origin: `Italy`, slogan: 'Your Personal Finance Hub' }, { - component: PortfolioDividendTrackerPageComponent, hasFreePlan: false, hasSelfHostingAbility: false, key: 'portfolio-dividend-tracker', languages: ['English', 'Nederlands'], name: 'Portfolio Dividend Tracker', - origin: $localize`Netherlands`, + origin: `Netherlands`, pricingPerYear: '€60', slogan: 'Manage all your portfolios' }, { - component: PortfolioVisualizerPageComponent, hasFreePlan: true, hasSelfHostingAbility: false, key: 'portfolio-visualizer', @@ -448,172 +332,155 @@ export const products: Product[] = [ slogan: 'Tools for Better Investors' }, { - component: PortseidoPageComponent, founded: 2021, hasFreePlan: true, hasSelfHostingAbility: false, key: 'portseido', languages: ['Deutsch', 'English', 'Français', 'Nederlands'], name: 'Portseido', - origin: $localize`Thailand`, + origin: `Thailand`, pricingPerYear: '$96', slogan: 'Portfolio Performance and Dividend Tracker' }, { - component: ProjectionLabPageComponent, founded: 2021, hasFreePlan: true, hasSelfHostingAbility: true, key: 'projectionlab', name: 'ProjectionLab', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$108', slogan: 'Build Financial Plans You Love.' }, { - component: RocketMoneyPageComponent, founded: 2015, hasSelfHostingAbility: false, key: 'rocket-money', name: 'Rocket Money', - origin: $localize`United States`, + origin: `United States`, slogan: 'Track your net worth' }, { - component: SeekingAlphaPageComponent, founded: 2004, hasFreePlan: false, hasSelfHostingAbility: false, key: 'seeking-alpha', name: 'Seeking Alpha', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$239', slogan: 'Stock Market Analysis & Tools for Investors' }, { - component: SharesightPageComponent, founded: 2007, hasFreePlan: true, hasSelfHostingAbility: false, key: 'sharesight', name: 'Sharesight', - origin: $localize`New Zealand`, + origin: `New Zealand`, pricingPerYear: '$135', - region: $localize`Global`, + region: `Global`, slogan: 'Stock Portfolio Tracker' }, { - component: SimplePortfolioPageComponent, hasFreePlan: true, hasSelfHostingAbility: false, key: 'simple-portfolio', name: 'Simple Portfolio', - origin: $localize`Czech Republic`, + origin: `Czech Republic`, pricingPerYear: '€80', slogan: 'Stock Portfolio Tracker' }, { - component: SnowballAnalyticsPageComponent, founded: 2021, hasFreePlan: true, hasSelfHostingAbility: false, key: 'snowball-analytics', name: 'Snowball Analytics', - origin: $localize`France`, + origin: `France`, pricingPerYear: '$80', slogan: 'Simple and powerful portfolio tracker' }, { - component: StockEventsPageComponent, founded: 2019, hasSelfHostingAbility: false, key: 'stock-events', name: 'Stock Events', - origin: $localize`Germany`, + origin: `Germany`, slogan: 'Track all your Investments' }, { - component: StocklePageComponent, key: 'stockle', name: 'Stockle', - origin: $localize`Finland`, + origin: `Finland`, slogan: 'Supercharge your investments tracking experience' }, { - component: StockMarketEyePageComponent, founded: 2008, key: 'stockmarketeye', name: 'StockMarketEye', - origin: $localize`France`, + origin: `France`, note: 'StockMarketEye has discontinued in 2023', slogan: 'A Powerful Portfolio & Investment Tracking App' }, { - component: StonksfolioPageComponent, hasFreePlan: true, hasSelfHostingAbility: false, key: 'stonksfolio', languages: ['English'], name: 'Stonksfolio', - origin: $localize`Bulgaria`, + origin: `Bulgaria`, pricingPerYear: '€49.90', slogan: 'Visualize all of your portfolios' }, { - component: SumioPageComponent, hasFreePlan: true, hasSelfHostingAbility: false, key: 'sumio', name: 'Sumio', - origin: $localize`Czech Republic`, + origin: `Czech Republic`, pricingPerYear: '$20', slogan: 'Sum up and build your wealth.' }, { - component: TillerPageComponent, founded: 2016, hasFreePlan: false, key: 'tiller', name: 'Tiller', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$79', slogan: 'Your financial life in a spreadsheet, automatically updated each day' }, { - component: UtlunaPageComponent, hasFreePlan: true, hasSelfHostingAbility: false, key: 'utluna', languages: ['Deutsch', 'English', 'Français'], name: 'Utluna', - origin: $localize`Switzerland`, + origin: `Switzerland`, pricingPerYear: '$300', slogan: 'Your Portfolio. Revealed.', useAnonymously: true }, { - component: VyzerPageComponent, founded: 2020, hasFreePlan: true, key: 'vyzer', name: 'Vyzer', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$348', slogan: 'Virtual Family Office for Smart Wealth Management' }, { - component: WallminePageComponent, hasSelfHostingAbility: false, key: 'wallmine', languages: ['English'], name: 'wallmine', - origin: $localize`Czech Republic`, + origin: `Czech Republic`, pricingPerYear: '$600', slogan: 'Make Smarter Investments' }, { - component: WealthfolioPageComponent, hasSelfHostingAbility: true, key: 'wealthfolio', languages: ['English'], @@ -621,44 +488,40 @@ export const products: Product[] = [ slogan: 'Desktop Investment Tracker' }, { - component: WealthicaPageComponent, founded: 2015, hasFreePlan: true, hasSelfHostingAbility: false, key: 'wealthica', languages: ['English', 'Français'], name: 'Wealthica', - origin: $localize`Canada`, + origin: `Canada`, pricingPerYear: '$50', slogan: 'See all your investments in one place' }, { - component: WhalPageComponent, key: 'whal', name: 'Whal', - origin: $localize`United States`, + origin: `United States`, slogan: 'Manage your investments in one place' }, { - component: YeekateePageComponent, founded: 2021, hasFreePlan: true, hasSelfHostingAbility: false, key: 'yeekatee', languages: ['Deutsch', 'English', 'Español', 'Français', 'Italiano'], name: 'yeekatee', - origin: $localize`Switzerland`, - region: $localize`Global`, + origin: `Switzerland`, + region: `Global`, slogan: 'Connect. Share. Invest.' }, { - component: YnabPageComponent, founded: 2004, hasFreePlan: false, hasSelfHostingAbility: false, key: 'ynab', name: 'YNAB (You Need a Budget)', - origin: $localize`United States`, + origin: `United States`, pricingPerYear: '$99', slogan: 'Change Your Relationship With Money' } From 118e17f78c0aa67c1944ca39851d9971e987fc4c Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 11 Jun 2024 11:58:26 +0200 Subject: [PATCH 65/83] Feature/improve wording on allocations page (#3479) --- .../allocations/allocations-page.html | 124 ++++++++---------- 1 file changed, 57 insertions(+), 67 deletions(-) diff --git a/apps/client/src/app/pages/portfolio/allocations/allocations-page.html b/apps/client/src/app/pages/portfolio/allocations/allocations-page.html index bf26e1579..9b855592d 100644 --- a/apps/client/src/app/pages/portfolio/allocations/allocations-page.html +++ b/apps/client/src/app/pages/portfolio/allocations/allocations-page.html @@ -59,12 +59,11 @@
      - By Currency - + + By Currency + @if (user?.subscription?.type === 'Basic') { + + } @@ -82,12 +81,11 @@
      - By Asset Class + + By Asset Class + @if (user?.subscription?.type === 'Basic') { + + } @@ -128,12 +126,11 @@
      - By Sector + + By Sector + @if (user?.subscription?.type === 'Basic') { + + } @@ -152,12 +149,11 @@
      - By Continent + + By Continent + @if (user?.subscription?.type === 'Basic') { + + } @@ -175,12 +171,11 @@
      - By Market + + By Market + @if (user?.subscription?.type === 'Basic') { + + } @@ -199,12 +194,11 @@
      - Regions + + Regions + @if (user?.subscription?.type === 'Basic') { + + } @@ -246,18 +240,17 @@ >Other Markets
      -
      - No data available -
      + @if (markets?.[UNKNOWN_KEY]?.value > 0) { +
      + No data available +
      + }
      @@ -267,12 +260,11 @@
      - By Country + + By Country + @if (user?.subscription?.type === 'Basic') { + + } @@ -310,12 +302,11 @@
      - By ETF Provider + + By ETF Provider + @if (user?.subscription?.type === 'Basic') { + + } @@ -338,16 +329,15 @@ > - By ETF Holding - + + By ETF Holding + @if (user?.subscription?.type === 'Basic') { + + } Approximation based on the Top 15 holdings per ETFApproximation based on the top holdings of each ETF From 88c420ca5e673fbdab190be5fc9c11905bf28502 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 11 Jun 2024 19:20:13 +0200 Subject: [PATCH 66/83] Feature/improve language localization for de 20240611 (#3480) * Update translations * Update changelog --- CHANGELOG.md | 1 + apps/client/src/locales/messages.de.xlf | 12086 ++------------- apps/client/src/locales/messages.es.xlf | 12086 ++------------- apps/client/src/locales/messages.fr.xlf | 12090 ++------------- apps/client/src/locales/messages.it.xlf | 12086 ++------------- apps/client/src/locales/messages.nl.xlf | 12086 ++------------- apps/client/src/locales/messages.pl.xlf | 17504 +++++---------------- apps/client/src/locales/messages.pt.xlf | 12086 ++------------- apps/client/src/locales/messages.tr.xlf | 17506 +++++----------------- apps/client/src/locales/messages.xlf | 15720 ++++--------------- apps/client/src/locales/messages.zh.xlf | 16580 +++++--------------- 11 files changed, 22185 insertions(+), 117646 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5035103c8..4a8aa8608 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 ### Changed +- Improved the language localization for German (`de`) - Upgraded `angular` from version `17.3.10` to `18.0.2` - Upgraded `Nx` from version `19.0.5` to `19.2.2` diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 648a966d7..503667325 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -30,7 +30,7 @@ Empfänger apps/client/src/app/components/access-table/access-table.component.html - 10 + 11 @@ -58,7 +58,7 @@ Details apps/client/src/app/components/access-table/access-table.component.html - 32 + 33 @@ -66,7 +66,7 @@ Widerrufen apps/client/src/app/components/access-table/access-table.component.html - 59 + 63 @@ -90,7 +90,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 100 + 113 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -122,7 +122,7 @@ Name apps/client/src/app/components/accounts-table/accounts-table.component.html - 34 + 39 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -166,7 +166,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 11 + 12 @@ -174,7 +174,7 @@ Gesamt apps/client/src/app/components/accounts-table/accounts-table.component.html - 45 + 50 @@ -182,11 +182,11 @@ Wert apps/client/src/app/components/accounts-table/accounts-table.component.html - 152 + 165 apps/client/src/app/components/accounts-table/accounts-table.component.html - 187 + 200 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -238,7 +238,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 25 + 26 @@ -246,7 +246,7 @@ Bearbeiten apps/client/src/app/components/accounts-table/accounts-table.component.html - 254 + 271 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -274,7 +274,7 @@ Löschen apps/client/src/app/components/accounts-table/accounts-table.component.html - 264 + 281 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -917,227 +917,7 @@ 370 - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 188 @@ -1414,7 +1194,7 @@ Absolute Netto Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 124 + 126 @@ -1422,7 +1202,7 @@ Netto Performance apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 139 + 141 @@ -1430,7 +1210,7 @@ Gesamtanlagevermögen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 165 + 167 @@ -1438,7 +1218,7 @@ Wertsachen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 178 + 180 @@ -1446,7 +1226,7 @@ Notfallfonds apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + 192 apps/client/src/app/pages/features/features-page.html @@ -1462,7 +1242,7 @@ Kaufkraft apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 237 + 252 @@ -1470,7 +1250,7 @@ Gesamtvermögen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 284 + 297 @@ -1478,7 +1258,7 @@ Performance pro Jahr apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 296 + 309 @@ -1490,7 +1270,7 @@ apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 330 + 343 apps/client/src/app/pages/features/features-page.html @@ -1510,7 +1290,7 @@ Bitte gib den Betrag deines Notfallfonds ein: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 57 + 58 @@ -1586,7 +1366,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 45 + 46 @@ -1614,7 +1394,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 79 + 81 @@ -1677,36 +1457,12 @@ 253 - - This feature requires a subscription. - Diese Funktion erfordert ein Abonnement. - - apps/client/src/app/components/home-summary/home-summary.component.ts - 113 - - - apps/client/src/app/core/http-response.interceptor.ts - 69 - - - - Upgrade Plan - Abonnement abschliessen - - apps/client/src/app/components/home-summary/home-summary.component.ts - 115 - - - apps/client/src/app/core/http-response.interceptor.ts - 72 - - Okay Okay apps/client/src/app/core/http-response.interceptor.ts - 92 + 81 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2078,7 +1834,7 @@ Bargeld apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 211 + 226 @@ -2086,7 +1842,7 @@ Währung apps/client/src/app/components/accounts-table/accounts-table.component.html - 55 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2118,7 +1874,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 117 + 130 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2134,7 +1890,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 72 + 81 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2254,7 +2010,7 @@ Nach Konto apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 294 + 286 @@ -2270,7 +2026,7 @@ Nach Anlageklasse apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 86 + 85 @@ -2278,7 +2034,7 @@ Nach Position apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 109 + 107 @@ -2286,7 +2042,7 @@ Nach Sektor apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 132 + 130 @@ -2294,7 +2050,7 @@ Nach Kontinent apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 156 + 153 @@ -2302,7 +2058,7 @@ Nach Land apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 271 + 264 @@ -2310,7 +2066,7 @@ Regionen apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 203 + 198 apps/client/src/app/pages/public/public-page.html @@ -2838,7 +2594,7 @@ Diese Funktion ist derzeit nicht verfügbar. apps/client/src/app/core/http-response.interceptor.ts - 60 + 53 @@ -2846,11 +2602,11 @@ Bitte versuche es später noch einmal. apps/client/src/app/core/http-response.interceptor.ts - 62 + 55 apps/client/src/app/core/http-response.interceptor.ts - 91 + 80 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2862,7 +2618,7 @@ Ups! Es ist etwas schief gelaufen. apps/client/src/app/core/http-response.interceptor.ts - 89 + 78 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2962,7 +2718,7 @@ Entwickelte Länder apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 228 + 222 apps/client/src/app/pages/public/public-page.html @@ -2974,7 +2730,7 @@ Schwellenländer apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 237 + 231 apps/client/src/app/pages/public/public-page.html @@ -2986,7 +2742,7 @@ Übrige Länder apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 246 + 240 apps/client/src/app/pages/public/public-page.html @@ -3014,7 +2770,7 @@ Einlage libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 357 + 361 @@ -3022,7 +2778,7 @@ Verzinsung libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 367 + 371 libs/ui/src/lib/i18n.ts @@ -3034,7 +2790,7 @@ Ersparnisse libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 377 + 381 @@ -3090,7 +2846,7 @@ Alias apps/client/src/app/components/access-table/access-table.component.html - 3 + 4 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -3142,7 +2898,7 @@ Von der Analyse ausgenommen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 249 + 264 @@ -4146,7 +3902,7 @@ Nach ETF-Anbieter apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 314 + 306 @@ -4410,7 +4166,7 @@ Verbindlichkeiten apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 264 + 279 apps/client/src/app/pages/features/features-page.html @@ -4589,11059 +4345,1771 @@ Founded Gegründet - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 72 + + + Origin + Ursprung - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 77 + + + Region + Region - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 82 + + + Available in + Verfügbar in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 87 + + + ✅ Yes + ✅ Ja - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 116 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 162 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 174 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 181 + + + ❌ No + ❌ Nein - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 145 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 157 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 164 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 176 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 183 + + + ❌ No + ❌ Nein - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 118 + + + Self-Hosting + Self-Hosting - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 123 + + + Use anonymously + Anonyme Nutzung - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 150 + + + Free Plan + Kostenlose Nutzung - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 169 + + + Notes + Hinweise - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 202 + + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Mit Ghostfolio kannst du dein Vermögen einfach überwachen, analysieren und visualisieren. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 227 + + + Personal Finance Tools + Tools für persönliche Finanzen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 308 + + + Guides + Ratgeber - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 22 + + + Glossary + Lexikon - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 92 + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Aktien, ETFs, Anleihen, Kryptowährungen, Rohstoffe - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 22 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 62 + + + Mortgages, personal loans, credit cards + Hypotheken, Darlehen, Kreditkarten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 54 + + + Luxury items, real estate, private companies + Luxusartikel, Immobilien, private Unternehmen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 70 + + + Buy + Kauf - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 31 + + + Valuable + Wertsache - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 35 + + + ETFs without Countries + ETFs ohne Länder - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 78 + + + ETFs without Sectors + ETFs ohne Sektoren - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 83 + + + Assets + Anlagevermögen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 239 + + + Preset + Filtervorlage - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 22 + + + By Market + Nach Markt - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 175 + + + Asia-Pacific + Asien-Pazifik - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 5 + + + Japan + Japan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 17 + + + Welcome to Ghostfolio + Herzlich willkommen bei Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 7 + + + Setup your accounts + Konten einrichten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 15 + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Verschaffe dir einen umfassenden Überblick, indem du deine Bank- und Wertpapierkonten hinzufügst. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + Capture your activities + Aktivitäten erfassen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 24 + + + Record your investment activities to keep your portfolio up to date. + Erfasse deine Investitionsaktivitäten, um dein Portfolio auf dem neuesten Stand zu halten. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + Monitor and analyze your portfolio + Portfolio überwachen und analysieren - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 33 + + + Track your progress in real-time with comprehensive analysis and insights. + Verfolge die Entwicklung in Echtzeit mit umfassenden Analysen und Einblicken. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + No data available + Keine Daten verfügbar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/public/public-page.html + 123 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 88 + + + Ready to take control of your personal finances? + Bist du bereit, die Kontrolle über deine Finanzen zu übernehmen? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 8 + + + Setup accounts + Konten einrichten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 48 + + + Biometric Authentication + Biometrische Authentifizierung - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 188 + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Bei Ghostfolio gehört Transparenz zum zentralen Inhalt unserer Grundwerte. Wir publizieren den Quellcode als Open-Source-Software (OSS) unter der AGPL-3.0-Lizenz und veröffentlichen aggregierte Kennzahlen über den Betriebsstatus der Plattform. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/open/open-page.html + 6 - - Origin - Ursprung + + Active Users + Aktive Nutzer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 40 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 62 + + + New Users + Neue Nutzer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 51 + + + Users in Slack community + Nutzer in der Slack Community - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 75 + + + Contributors on GitHub + Contributors auf GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 89 + + + Stars on GitHub + Sterne auf GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 103 + + + Pulls on Docker Hub + Downloads auf Docker Hub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 105 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 117 + + + Uptime + Verfügbarkeit - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 132 + + + Export Data + Daten exportieren - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 231 + + + Currencies + Währungen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 73 + + + Our + Unsere - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + Visit + Besuche - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + Discover other exciting Open Source Software projects + Entdecke weitere interessante Open Source Software Projekte - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + Frequently Asked Questions (FAQ) + Häufig gestellte Fragen (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/overview/faq-overview-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/saas/saas-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html + 4 + + + Check out the numerous features of Ghostfolio to manage your wealth + Entdecke die zahlreichen Funktionen von Ghostfolio zur Vermögensverwaltung - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/features/features-page.html + 6 + + + Discover the latest Ghostfolio updates and insights on personal finance + Entdecke die neuesten Ghostfolio Updates und Beiträge zu persönlichen Finanzen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/blog/blog-page.html + 7 + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + Wenn du Ghostfolio lieber auf deiner eigenen Infrastruktur betreiben möchtest, findest du den Quellcode und weitere Informationen auf GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + Manage your wealth like a boss + Verwalte dein Vermögen wie ein Profi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 5 + + + 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. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 9 + + + Get Started + Jetzt loslegen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 419 + + + or + oder - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 46 + + + Monthly Active Users + Monatlich aktive Nutzer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 69 + + + As seen in + Bekannt aus - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 113 + + + Protect your assets. Refine your personal investment strategy. + Schützen Sie Ihr Vermögen. Optimieren Sie Ihre persönliche Anlagestrategie. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 215 + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio ermöglicht es geschäftigen Leuten, den Überblick über Aktien, ETFs oder Kryptowährungen zu behalten, ohne überwacht zu werden. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 219 + + + 360° View + 360° Ansicht - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 230 + + + Web3 Ready + Web3 ready - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 241 + + + Use Ghostfolio anonymously and own your financial data. + Nutze Ghostfolio ganz anonym und behalte deine Finanzdaten. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 243 + + + Open Source + Open Source - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 251 + + + Benefit from continuous improvements through a strong community. + Profitiere von kontinuierlichen Verbesserungen durch eine aktive Community. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 253 + + + Why Ghostfolio? + Warum Ghostfolio? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 262 + + + Ghostfolio is for you if you are... + Ghostfolio ist für dich geeignet, wenn du... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 263 + + + trading stocks, ETFs or cryptocurrencies on multiple platforms + Aktien, ETFs oder Kryptowährungen auf unterschiedlichen Plattformen handelst - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 270 - - Region - Region + + pursuing a buy & hold strategy + eine Buy & Hold Strategie verfolgst - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 276 + + + interested in getting insights of your portfolio composition + dich für die Zusammensetzung deines Portfolios interessierst - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 281 + + + valuing privacy and data ownership + Privatsphäre und Datenhoheit wertschätzt - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 286 + + + into minimalism + zum Frugalismus oder Minimalismus neigst - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 289 + + + caring about diversifying your financial resources + dich um die Diversifizierung deiner finanziellen Mittel kümmerst - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 293 + + + interested in financial independence + Interesse an finanzieller Freiheit hast - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 297 + + + saying no to spreadsheets in + Nein sagst zu Excel-Tabellen im Jahr - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 301 + + + still reading this list + diese Liste bis zum Ende liest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 304 + + + Learn more about Ghostfolio + Erfahre mehr über Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 309 + + + What our users are saying + Was unsere Nutzer sagen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 317 + + + Members from around the globe are using Ghostfolio Premium + Nutzer aus aller Welt verwenden Ghostfolio Premium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 349 + + + How does Ghostfolio work? + Wie funktioniert Ghostfolio ? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 361 + + + Sign up anonymously* + Registriere dich anonym* - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 370 + + + * no e-mail address nor credit card required + * Keine E-Mail-Adresse oder Kreditkarte erforderlich - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 372 + + + Add any of your historical transactions + Füge historische Transaktionen hinzu - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 383 + + + Get valuable insights of your portfolio composition + Erhalte nützliche Erkenntnisse über die Zusammensetzung deines Portfolios - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 395 + + + Are you ready? + Bist du bereit? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 407 + + + Join now or check out the example account + Melde dich jetzt an oder probiere die Live Demo aus - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 408 + + + Live Demo + Live Demo - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 49 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 424 + + + Get the full picture of your personal finances across multiple platforms. + Verschaffe dir einen vollständigen Überblick deiner persönlichen Finanzen über mehrere Plattformen hinweg. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 232 + + + Get started in only 3 steps + Beginne mit nur 3 Schritten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 364 + + + faq + haeufig-gestellte-fragen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/app.component.ts + 66 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/core/paths.ts + 3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - - Available in - Verfügbar in - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - - ✅ Yes - ✅ Ja - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - - ❌ No - ❌ Nein - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 176 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - - ❌ No - ❌ Nein - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 118 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118 - - - - Self-Hosting - Self-Hosting - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - - Use anonymously - Anonyme Nutzung - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 150 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 - - - - Free Plan - Kostenlose Nutzung - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - - Notes - Hinweise - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Mit Ghostfolio kannst du dein Vermögen einfach überwachen, analysieren und visualisieren. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - - Personal Finance Tools - Tools für persönliche Finanzen - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - - Guides - Ratgeber - - apps/client/src/app/pages/resources/resources-page.html - 22 - - - - Glossary - Lexikon - - apps/client/src/app/pages/resources/resources-page.html - 92 - - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Aktien, ETFs, Anleihen, Kryptowährungen, Rohstoffe - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 - - - - Mortgages, personal loans, credit cards - Hypotheken, Darlehen, Kreditkarten - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 - - - - Luxury items, real estate, private companies - Luxusartikel, Immobilien, private Unternehmen - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 - - - - Buy - Kauf - - libs/ui/src/lib/i18n.ts - 31 - - - - Valuable - Wertsache - - libs/ui/src/lib/i18n.ts - 35 - - - - ETFs without Countries - ETFs ohne Länder - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 78 - - - - ETFs without Sectors - ETFs ohne Sektoren - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 83 - - - - Assets - Anlagevermögen - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 224 - - - - Preset - Filtervorlage - - libs/ui/src/lib/i18n.ts - 22 - - - - By Market - Nach Markt - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 179 - - - - Asia-Pacific - Asien-Pazifik - - libs/ui/src/lib/i18n.ts - 5 - - - - Japan - Japan - - libs/ui/src/lib/i18n.ts - 17 - - - - Welcome to Ghostfolio - Herzlich willkommen bei Ghostfolio - - apps/client/src/app/components/home-overview/home-overview.html - 7 - - - - Setup your accounts - Konten einrichten - - apps/client/src/app/components/home-overview/home-overview.html - 15 - - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Verschaffe dir einen umfassenden Überblick, indem du deine Bank- und Wertpapierkonten hinzufügst. - - apps/client/src/app/components/home-overview/home-overview.html - 17 - - - - Capture your activities - Aktivitäten erfassen - - apps/client/src/app/components/home-overview/home-overview.html - 24 - - - - Record your investment activities to keep your portfolio up to date. - Erfasse deine Investitionsaktivitäten, um dein Portfolio auf dem neuesten Stand zu halten. - - apps/client/src/app/components/home-overview/home-overview.html - 26 - - - - Monitor and analyze your portfolio - Portfolio überwachen und analysieren - - apps/client/src/app/components/home-overview/home-overview.html - 33 - - - - Track your progress in real-time with comprehensive analysis and insights. - Verfolge die Entwicklung in Echtzeit mit umfassenden Analysen und Einblicken. - - apps/client/src/app/components/home-overview/home-overview.html - 35 - - - - No data available - Keine Daten verfügbar - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 258 - - - apps/client/src/app/pages/public/public-page.html - 123 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 86 - - - - Ready to take control of your personal finances? - Bist du bereit, die Kontrolle über deine Finanzen zu übernehmen? - - apps/client/src/app/components/home-overview/home-overview.html - 8 - - - - Setup accounts - Konten einrichten - - apps/client/src/app/components/home-overview/home-overview.html - 48 - - - - Biometric Authentication - Biometrische Authentifizierung - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 - - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Bei Ghostfolio gehört Transparenz zum zentralen Inhalt unserer Grundwerte. Wir publizieren den Quellcode als Open-Source-Software (OSS) unter der AGPL-3.0-Lizenz und veröffentlichen aggregierte Kennzahlen über den Betriebsstatus der Plattform. - - apps/client/src/app/pages/open/open-page.html - 6 - - - - Active Users - Aktive Nutzer - - apps/client/src/app/pages/open/open-page.html - 40 - - - apps/client/src/app/pages/open/open-page.html - 62 - - - - New Users - Neue Nutzer - - apps/client/src/app/pages/open/open-page.html - 51 - - - - Users in Slack community - Nutzer in der Slack Community - - apps/client/src/app/pages/open/open-page.html - 75 - - - - Contributors on GitHub - Contributors auf GitHub - - apps/client/src/app/pages/open/open-page.html - 89 - - - - Stars on GitHub - Sterne auf GitHub - - apps/client/src/app/pages/landing/landing-page.html - 87 - - - apps/client/src/app/pages/open/open-page.html - 103 - - - - Pulls on Docker Hub - Downloads auf Docker Hub - - apps/client/src/app/pages/landing/landing-page.html - 105 - - - apps/client/src/app/pages/open/open-page.html - 117 - - - - Uptime - Verfügbarkeit - - apps/client/src/app/pages/open/open-page.html - 132 - - - - Export Data - Daten exportieren - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 - - - - Currencies - Währungen - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 73 - - - - Our - Unsere - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 - - - - Visit - Besuche - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 - - - - Discover other exciting Open Source Software projects - Entdecke weitere interessante Open Source Software Projekte - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 - - - - Frequently Asked Questions (FAQ) - Häufig gestellte Fragen (FAQ) - - apps/client/src/app/pages/faq/overview/faq-overview-page.html - 4 - - - apps/client/src/app/pages/faq/saas/saas-page.html - 4 - - - apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html - 4 - - - - Check out the numerous features of Ghostfolio to manage your wealth - Entdecke die zahlreichen Funktionen von Ghostfolio zur Vermögensverwaltung - - apps/client/src/app/pages/features/features-page.html - 6 - - - - Discover the latest Ghostfolio updates and insights on personal finance - Entdecke die neuesten Ghostfolio Updates und Beiträge zu persönlichen Finanzen - - apps/client/src/app/pages/blog/blog-page.html - 7 - - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - Wenn du Ghostfolio lieber auf deiner eigenen Infrastruktur betreiben möchtest, findest du den Quellcode und weitere Informationen auf GitHub. - - apps/client/src/app/pages/pricing/pricing-page.html - 24 - - - - Manage your wealth like a boss - Verwalte dein Vermögen wie ein Profi - - apps/client/src/app/pages/landing/landing-page.html - 5 - - - - 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. - - apps/client/src/app/pages/landing/landing-page.html - 9 - - - - Get Started - Jetzt loslegen - - apps/client/src/app/pages/landing/landing-page.html - 41 - - - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - oder - - apps/client/src/app/pages/landing/landing-page.html - 46 - - - - Monthly Active Users - Monatlich aktive Nutzer - - apps/client/src/app/pages/landing/landing-page.html - 69 - - - - As seen in - Bekannt aus - - apps/client/src/app/pages/landing/landing-page.html - 113 - - - - Protect your assets. Refine your personal investment strategy. - Schützen Sie Ihr Vermögen. Optimieren Sie Ihre persönliche Anlagestrategie. - - apps/client/src/app/pages/landing/landing-page.html - 215 - - - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio ermöglicht es geschäftigen Leuten, den Überblick über Aktien, ETFs oder Kryptowährungen zu behalten, ohne überwacht zu werden. - - apps/client/src/app/pages/landing/landing-page.html - 219 - - - - 360° View - 360° Ansicht - - apps/client/src/app/pages/landing/landing-page.html - 230 - - - - Web3 Ready - Web3 ready - - apps/client/src/app/pages/landing/landing-page.html - 241 - - - - Use Ghostfolio anonymously and own your financial data. - Nutze Ghostfolio ganz anonym und behalte deine Finanzdaten. - - apps/client/src/app/pages/landing/landing-page.html - 243 - - - - Open Source - Open Source - - apps/client/src/app/pages/landing/landing-page.html - 251 - - - - Benefit from continuous improvements through a strong community. - Profitiere von kontinuierlichen Verbesserungen durch eine aktive Community. - - apps/client/src/app/pages/landing/landing-page.html - 253 - - - - Why Ghostfolio? - Warum Ghostfolio? - - apps/client/src/app/pages/landing/landing-page.html - 262 - - - - Ghostfolio is for you if you are... - Ghostfolio ist für dich geeignet, wenn du... - - apps/client/src/app/pages/landing/landing-page.html - 263 - - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - Aktien, ETFs oder Kryptowährungen auf unterschiedlichen Plattformen handelst - - apps/client/src/app/pages/landing/landing-page.html - 270 - - - - pursuing a buy & hold strategy - eine Buy & Hold Strategie verfolgst - - apps/client/src/app/pages/landing/landing-page.html - 276 - - - - interested in getting insights of your portfolio composition - dich für die Zusammensetzung deines Portfolios interessierst - - apps/client/src/app/pages/landing/landing-page.html - 281 - - - - valuing privacy and data ownership - Privatsphäre und Datenhoheit wertschätzt - - apps/client/src/app/pages/landing/landing-page.html - 286 - - - - into minimalism - zum Frugalismus oder Minimalismus neigst - - apps/client/src/app/pages/landing/landing-page.html - 289 - - - - caring about diversifying your financial resources - dich um die Diversifizierung deiner finanziellen Mittel kümmerst - - apps/client/src/app/pages/landing/landing-page.html - 293 - - - - interested in financial independence - Interesse an finanzieller Freiheit hast - - apps/client/src/app/pages/landing/landing-page.html - 297 - - - - saying no to spreadsheets in - Nein sagst zu Excel-Tabellen im Jahr - - apps/client/src/app/pages/landing/landing-page.html - 301 - - - - still reading this list - diese Liste bis zum Ende liest - - apps/client/src/app/pages/landing/landing-page.html - 304 - - - - Learn more about Ghostfolio - Erfahre mehr über Ghostfolio - - apps/client/src/app/pages/landing/landing-page.html - 309 - - - - What our users are saying - Was unsere Nutzer sagen - - apps/client/src/app/pages/landing/landing-page.html - 317 - - - - Members from around the globe are using Ghostfolio Premium - Nutzer aus aller Welt verwenden Ghostfolio Premium - - apps/client/src/app/pages/landing/landing-page.html - 349 - - - - How does Ghostfolio work? - Wie funktioniert Ghostfolio ? - - apps/client/src/app/pages/landing/landing-page.html - 361 - - - - Sign up anonymously* - Registriere dich anonym* - - apps/client/src/app/pages/landing/landing-page.html - 370 - - - - * no e-mail address nor credit card required - * Keine E-Mail-Adresse oder Kreditkarte erforderlich - - apps/client/src/app/pages/landing/landing-page.html - 372 - - - - Add any of your historical transactions - Füge historische Transaktionen hinzu - - apps/client/src/app/pages/landing/landing-page.html - 383 - - - - Get valuable insights of your portfolio composition - Erhalte nützliche Erkenntnisse über die Zusammensetzung deines Portfolios - - apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Bist du bereit? - - apps/client/src/app/pages/landing/landing-page.html - 407 - - - - Join now or check out the example account - Melde dich jetzt an oder probiere die Live Demo aus - - apps/client/src/app/pages/landing/landing-page.html - 408 - - - - Live Demo - Live Demo - - apps/client/src/app/pages/landing/landing-page.html - 49 - - - apps/client/src/app/pages/landing/landing-page.html - 424 - - - - Get the full picture of your personal finances across multiple platforms. - Verschaffe dir einen vollständigen Überblick deiner persönlichen Finanzen über mehrere Plattformen hinweg. - - apps/client/src/app/pages/landing/landing-page.html - 232 - - - - Get started in only 3 steps - Beginne mit nur 3 Schritten - - apps/client/src/app/pages/landing/landing-page.html - 364 - - - - faq - haeufig-gestellte-fragen - - apps/client/src/app/app.component.ts - 66 - - - apps/client/src/app/core/paths.ts - 3 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 37 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 42 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 48 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 17 - - - - features - features - - apps/client/src/app/app.component.ts - 67 - - - apps/client/src/app/components/header/header.component.ts - 78 - - - apps/client/src/app/components/header/header.component.ts - 83 - - - apps/client/src/app/core/paths.ts - 4 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 14 - - - apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts - 14 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 27 - - - - about - ueber-uns - - apps/client/src/app/app.component.ts - 59 - - - apps/client/src/app/app.component.ts - 60 - - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/app.component.ts - 63 - - - apps/client/src/app/components/header/header.component.ts - 77 - - - apps/client/src/app/components/header/header.component.ts - 82 - - - apps/client/src/app/core/paths.ts - 2 - - - apps/client/src/app/pages/about/about-page.component.ts - 45 - - - apps/client/src/app/pages/about/about-page.component.ts - 50 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - apps/client/src/app/pages/about/about-page.component.ts - 74 - - - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 13 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 - - - - privacy-policy - datenschutzbestimmungen - - apps/client/src/app/app.component.ts - 64 - - - apps/client/src/app/core/paths.ts - 8 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - - license - lizenz - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/core/paths.ts - 5 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - - markets - maerkte - - apps/client/src/app/app.component.ts - 68 - - - apps/client/src/app/components/header/header.component.ts - 79 - - - apps/client/src/app/components/header/header.component.ts - 84 - - - apps/client/src/app/core/paths.ts - 6 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 14 - - - - pricing - preise - - apps/client/src/app/app.component.ts - 69 - - - apps/client/src/app/components/header/header.component.ts - 80 - - - apps/client/src/app/components/header/header.component.ts - 85 - - - apps/client/src/app/components/home-summary/home-summary.component.ts - 125 - - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 - - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 38 - - - apps/client/src/app/core/http-response.interceptor.ts - 83 - - - apps/client/src/app/core/paths.ts - 7 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 16 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 15 - - - libs/ui/src/lib/membership-card/membership-card.component.ts - 25 - - - - register - registrierung - - apps/client/src/app/app.component.ts - 70 - - - apps/client/src/app/components/header/header.component.ts - 86 - - - apps/client/src/app/core/auth.guard.ts - 55 - - - apps/client/src/app/core/paths.ts - 9 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 16 - - - apps/client/src/app/pages/features/features-page.component.ts - 31 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 27 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 36 - - - - resources - ressourcen - - apps/client/src/app/app.component.ts - 71 - - - apps/client/src/app/components/header/header.component.ts - 81 - - - apps/client/src/app/components/header/header.component.ts - 87 - - - apps/client/src/app/core/paths.ts - 10 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/features/features-page.component.ts - 32 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 19 - - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - Diese Übersichtsseite zeigt eine Auswahl an Tools zur Verwaltung der persönliche Finanzen im Vergleich zur Open Source Alternative Ghostfolio. Wenn du Wert auf Transparenz, Datenschutz und die gemeinschaftliche Zusammenarbeit der Open Source Community legst, bietet dir Ghostfolio eine ausgezeichnete Möglichkeit, die Kontrolle über dein Finanzmanagement zu übernehmen. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8 - - - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Über die Links unten kannst du eine Reihe an Tools mit Ghostfolio vergleichen. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16 - - - - Open Source Alternative to - Open Source Alternative zu - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 38 - - - - Open Source Alternative to - Open Source Alternative zu - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 26 - - - - The Open Source Alternative to - Die Open Source Alternative zu - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Suchst du nach einer Open Source Alternative zu ? Ghostfolio ist ein leistungsstarkes Portfolio Management Tool, das Privatpersonen eine umfassende Plattform bietet, um ihre Investitionen zu verfolgen, zu analysieren und zu optimieren. Egal, ob du ein erfahrener Investor bist oder gerade erst anfängst, Ghostfolio bietet eine intuitive Benutzeroberfläche und eine Vielzahl an Funktionen, die dir dabei helfen, fundierte Entscheidungen zu treffen und die Kontrolle über deine finanzielle Zukunft zu übernehmen. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio ist eine Open Source Software (OSS), die eine kostengünstige Alternative zu darstellt und sich besonders für Personen mit knappem Budget eignet, wie z.B. für diejenigen, die finanzielle Unabhängigkeit und einen frühen Ruhestand anstreben (FIRE). Ghostfolio nutzt die gemeinsamen Aktivitäten einer Community von Entwicklern und Finanzenthusiasten, um seine Funktionalität, Sicherheit und Benutzerfreundlichkeit kontinuierlich zu verbessern. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Wir möchten uns in der untenstehenden Ghostfolio vs Vergleichstabelle ein detailliertes Bild davon machen, wie Ghostfolio im Vergleich zu positioniert ist. Wir werden dabei verschiedene Aspekte wie Funktionen, Datenschutz, Preise und weiteres untersuchen, damit du eine gut informierte Entscheidung für deine persönlichen Anforderungen treffen kannst. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - - open-source-alternative-to - open-source-alternative-zu - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 23 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 - - - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Bitte beachte, dass die bereitgestellten Ghostfolio vs Informationen auf unserer unabhängigen Recherche und Analyse beruhen. Diese Webseite steht in keiner Verbindung zu oder einem anderen im Vergleich erwähnten Produkt. Da sich die Landschaft der Personal Finance Tools ständig weiterentwickelt, ist es wichtig, alle spezifischen Details oder Änderungen direkt auf der jeweiligen Produktseite zu überprüfen. Brauchen die Daten eine Auffrischung? Unterstütze uns bei der Pflege der aktuellen Daten auf GitHub. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - - Ready to take your investments to the next level? - Bereit, deine Investitionen auf ein neues Levelzu bringen? - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - - Get Started - Jetzt loslegen - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - - Switzerland - Schweiz - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 80 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 590 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 650 - - - - Global - Weltweit - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 81 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 360 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 502 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 651 - - - - United States - Vereinigte Staaten von Amerika - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 101 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 167 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 218 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 240 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 302 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 324 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 335 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 371 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 469 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 479 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 489 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 578 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 601 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 639 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 661 - - - - Belgium - Belgien - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 187 - - - - Germany - Deutschland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 198 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 292 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 313 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 358 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 415 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 532 - - - - Austria - Österreich - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 270 - - - - Italy - Italien - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 - - - - Netherlands - Niederlande - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 436 - - - - Thailand - Thailand - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 458 - - - - New Zealand - Neuseeland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 500 - - - - Czech Republic - Tschechische Republik - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 511 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 568 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 611 - - - - (Last 24 hours) - (Letzte 24 Stunden) - - apps/client/src/app/pages/open/open-page.html - 37 - - - - (Last 30 days) - (Letzte 30 Tage) - - apps/client/src/app/pages/open/open-page.html - 48 - - - apps/client/src/app/pages/open/open-page.html - 59 - - - - (Last 90 days) - (Letzte 90 Tage) - - apps/client/src/app/pages/open/open-page.html - 127 - - - - Choose or drop a file here - Wählen Sie eine Datei aus oder ziehen Sie sie hierhin - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 - - - - You are using the Live Demo. - Du verwendest die Live Demo. - - apps/client/src/app/app.component.html - 17 - - - - One-time fee, annual account fees - Einmalige Eröffnungsgebühr, jährliche Kontoführungsgebühren - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 - - - - Distribution of corporate earnings - Ausschüttung von Unternehmensgewinnen - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 - - - - Oops! Could not get the historical exchange rate from - Ups! Der historische Wechselkurs konnte nicht abgerufen werden vom - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 - - - - Fee - Gebühr - - libs/ui/src/lib/i18n.ts - 33 - - - - Interest - Zins - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 318 - - - - Revenue for lending out money - Ertrag für das Ausleihen von Geld - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 - - - - Add Tag - Tag hinzufügen - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 - - - - Do you really want to delete this tag? - Möchtest du diesen Tag wirklich löschen? - - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 79 - - - - Update tag - Tag bearbeiten - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 - - - - Add tag - Tag hinzufügen - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 - - - - France - Frankreich - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 522 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 547 - - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray nutzt statische Analysen, um potenzielle Probleme und Risiken in deinem Portfolio zu identifizieren. - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 111 - - - - Currency Cluster Risks - Währungsklumpenrisiken - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 - - - - Account Cluster Risks - Kontoklumpenrisiken - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 - - - - Transfer Cash Balance - Cash-Bestand Transfer - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 - - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 - - - - Benchmark - Benchmark - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 284 - - - - Version - Version - - apps/client/src/app/components/admin-overview/admin-overview.html - 7 - - - - Settings - Einstellungen - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 - - - - From - Von - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 - - - - To - Nach - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 - - - - Transfer - Transferieren - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 - - - - Finland - Finnland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 539 - - - - Membership - Mitgliedschaft - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 23 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 40 - - - - Access - Zugang - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 28 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 46 - - - - Find holding... - Finde Position... - - libs/ui/src/lib/assistant/assistant.component.ts - 138 - - - - No entries... - Keine Einträge vorhanden... - - libs/ui/src/lib/assistant/assistant.html - 63 - - - libs/ui/src/lib/assistant/assistant.html - 84 - - - - Asset Profile - Anlageprofil - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 - - - - Do you really want to delete this asset profile? - Möchtest du dieses Anlageprofil wirklich löschen? - - apps/client/src/app/components/admin-market-data/admin-market-data.service.ts - 13 - - - - Search - Suche - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 - - - - Add Manually - Manuell hinzufügen - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 - - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Mit dem Finanz-Dashboard Ghostfolio können Sie Ihr Vermögen in Cash, Aktien, ETFs und Kryptowährungen über mehrere Finanzinstitute überwachen. - - apps/client/src/app/pages/i18n/i18n-page.html - 4 - - - - Last All Time High - Letztes Allzeithoch - - libs/ui/src/lib/benchmark/benchmark.component.html - 65 - - - - User - Benutzer - - apps/client/src/app/components/admin-users/admin-users.html - 29 - - - - Ghostfolio vs comparison table - Ghostfolio vs Vergleichstabelle - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - - Canada - Kanada - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 631 - - - - Open Source Wealth Management Software - Open Source Software für die Vermögensverwaltung - - apps/client/src/app/pages/i18n/i18n-page.html - 14 - - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - aktie, app, asset, dashboard, etf, finanzen, kryptowährung, management, performance, portfolio, software, trading, vermögen, web3 - - apps/client/src/app/pages/i18n/i18n-page.html - 9 - - - - Oops, cash balance transfer has failed. - Ups, der Cash-Bestand Transfer ist fehlgeschlagen. - - apps/client/src/app/pages/accounts/accounts-page.component.ts - 304 - - - - Poland - Polen - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 139 - - - - South Africa - Südafrika - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 259 - - - - Extreme Fear - Extreme Angst - - libs/ui/src/lib/i18n.ts - 69 - - - - Extreme Greed - Extreme Gier - - libs/ui/src/lib/i18n.ts - 70 - - - - Neutral - Neutral - - libs/ui/src/lib/i18n.ts - 73 - - - - Oops! Could not parse historical data. - Ups! Die historischen Daten konnten nicht geparsed werden. - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 232 - - - - Do you really want to delete this system message? - Möchtest du diese Systemmeldung wirklich löschen? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 166 - - - - 50-Day Trend - 50 Tage Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 15 - - - - 200-Day Trend - 200 Tage Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 40 - - - - Cash Balances - Cash-Bestände - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 115 - - - - Starting from - Ab - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + features + features - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 67 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 83 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 24 + + + about + ueber-uns - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 60 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 82 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 2 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 45 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 50 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 18 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 23 + + + privacy-policy + datenschutzbestimmungen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 64 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 8 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 + + + license + lizenz - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 5 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 + + + markets + maerkte - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 68 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 84 - - - year - Jahr - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 6 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 14 + + + pricing + preise - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 85 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/http-response.interceptor.ts + 72 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 7 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/membership-card/membership-card.component.ts + 25 + + + register + registrierung - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 86 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/auth.guard.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 31 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/landing/landing-page.component.ts + 27 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 36 + + + resources + ressourcen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 71 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 10 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 32 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/resources-page.component.ts + 19 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + Diese Übersichtsseite zeigt eine Auswahl an Tools zur Verwaltung der persönliche Finanzen im Vergleich zur Open Source Alternative Ghostfolio. Wenn du Wert auf Transparenz, Datenschutz und die gemeinschaftliche Zusammenarbeit der Open Source Community legst, bietet dir Ghostfolio eine ausgezeichnete Möglichkeit, die Kontrolle über dein Finanzmanagement zu übernehmen. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 + + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Über die Links unten kannst du eine Reihe an Tools mit Ghostfolio vergleichen. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + Open Source Alternative zu - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 42 + + + Open Source Alternative to + Open Source Alternative zu - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 27 + + + The Open Source Alternative to + Die Open Source Alternative zu - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Suchst du nach einer Open Source Alternative zu ? Ghostfolio ist ein leistungsstarkes Portfolio Management Tool, das Privatpersonen eine umfassende Plattform bietet, um ihre Investitionen zu verfolgen, zu analysieren und zu optimieren. Egal, ob du ein erfahrener Investor bist oder gerade erst anfängst, Ghostfolio bietet eine intuitive Benutzeroberfläche und eine Vielzahl an Funktionen, die dir dabei helfen, fundierte Entscheidungen zu treffen und die Kontrolle über deine finanzielle Zukunft zu übernehmen. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio ist eine Open Source Software (OSS), die eine kostengünstige Alternative zu darstellt und sich besonders für Personen mit knappem Budget eignet, wie z.B. für diejenigen, die finanzielle Unabhängigkeit und einen frühen Ruhestand anstreben (FIRE). Ghostfolio nutzt die gemeinsamen Aktivitäten einer Community von Entwicklern und Finanzenthusiasten, um seine Funktionalität, Sicherheit und Benutzerfreundlichkeit kontinuierlich zu verbessern. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 27 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Wir möchten uns in der untenstehenden Ghostfolio vs Vergleichstabelle ein detailliertes Bild davon machen, wie Ghostfolio im Vergleich zu positioniert ist. Wir werden dabei verschiedene Aspekte wie Funktionen, Datenschutz, Preise und weiteres untersuchen, damit du eine gut informierte Entscheidung für deine persönlichen Anforderungen treffen kannst. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 38 + + + open-source-alternative-to + open-source-alternative-zu - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Bitte beachte, dass die bereitgestellten Ghostfolio vs Informationen auf unserer unabhängigen Recherche und Analyse beruhen. Diese Webseite steht in keiner Verbindung zu oder einem anderen im Vergleich erwähnten Produkt. Da sich die Landschaft der Personal Finance Tools ständig weiterentwickelt, ist es wichtig, alle spezifischen Details oder Änderungen direkt auf der jeweiligen Produktseite zu überprüfen. Brauchen die Daten eine Auffrischung? Unterstütze uns bei der Pflege der aktuellen Daten auf GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 210 + + + Ready to take your investments to the next level? + Bereit, deine Investitionen auf ein neues Levelzu bringen? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 223 + + + Get Started + Jetzt loslegen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 232 + + + Switzerland + Schweiz - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 58 + + + Global + Weltweit - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 59 + + + (Last 24 hours) + (Letzte 24 Stunden) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Letzte 30 Tage) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Letzte 90 Tage) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 127 + + + Choose or drop a file here + Wählen Sie eine Datei aus oder ziehen Sie sie hierhin - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 86 + + + You are using the Live Demo. + Du verwendest die Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + Einmalige Eröffnungsgebühr, jährliche Kontoführungsgebühren - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 30 + + + Distribution of corporate earnings + Ausschüttung von Unternehmensgewinnen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 38 + + + Oops! Could not get the historical exchange rate from + Ups! Der historische Wechselkurs konnte nicht abgerufen werden vom - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 226 + + + Fee + Gebühr - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 33 + + + Interest + Zins - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 331 + + + Revenue for lending out money + Ertrag für das Ausleihen von Geld - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 46 + + + Add Tag + Tag hinzufügen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Möchtest du diesen Tag wirklich löschen? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 79 + + + Update tag + Tag bearbeiten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 7 + + + Add tag + Tag hinzufügen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 8 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray nutzt statische Analysen, um potenzielle Probleme und Risiken in deinem Portfolio zu identifizieren. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 111 + + + Currency Cluster Risks + Währungsklumpenrisiken - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 135 + + + Account Cluster Risks + Kontoklumpenrisiken - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 148 + + + Transfer Cash Balance + Cash-Bestand Transfer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 284 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Einstellungen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + Von - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + Nach - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 28 + + + Transfer + Transferieren - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 64 + + + Membership + Mitgliedschaft - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 40 + + + Access + Zugang - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 46 + + + Find holding... + Finde Position... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.component.ts + 138 + + + No entries... + Keine Einträge vorhanden... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 84 + + + Asset Profile + Anlageprofil - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + Do you really want to delete this asset profile? + Möchtest du dieses Anlageprofil wirklich löschen? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/admin-market-data.service.ts + 13 + + + Search + Suche - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + Add Manually + Manuell hinzufügen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Mit dem Finanz-Dashboard Ghostfolio können Sie Ihr Vermögen in Cash, Aktien, ETFs und Kryptowährungen über mehrere Finanzinstitute überwachen. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + Last All Time High + Letztes Allzeithoch - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 65 + + + User + Benutzer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs Vergleichstabelle - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 49 + + + Open Source Wealth Management Software + Open Source Software für die Vermögensverwaltung - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + aktie, app, asset, dashboard, etf, finanzen, kryptowährung, management, performance, portfolio, software, trading, vermögen, web3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 9 + + + Oops, cash balance transfer has failed. + Ups, der Cash-Bestand Transfer ist fehlgeschlagen. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 304 + + + Extreme Fear + Extreme Angst - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 69 + + + Extreme Greed + Extreme Gier - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 70 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 73 + + + Oops! Could not parse historical data. + Ups! Die historischen Daten konnten nicht geparsed werden. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 232 + + + Do you really want to delete this system message? + Möchtest du diese Systemmeldung wirklich löschen? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 166 + + + 50-Day Trend + 50 Tage Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 + + + 200-Day Trend + 200 Tage Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 40 + + + Cash Balances + Cash-Bestände - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 115 + + + Starting from + Ab - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 195 + + + year + Jahr - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 191 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 197 @@ -15698,7 +6166,7 @@ Rechte apps/client/src/app/components/access-table/access-table.component.html - 17 + 18 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15710,7 +6178,7 @@ Eingeschränkte Ansicht apps/client/src/app/components/access-table/access-table.component.html - 25 + 26 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15858,7 +6326,7 @@ Ansicht apps/client/src/app/components/access-table/access-table.component.html - 22 + 23 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15986,7 +6454,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 - 107 + 96 @@ -16050,7 +6518,7 @@ Diese Aktion ist nicht zulässig. apps/client/src/app/core/http-response.interceptor.ts - 70 + 61 @@ -16133,36 +6601,20 @@ 278 - - Australia - Australien - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 403 - - - - Bulgaria - Bulgarien - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 558 - - By ETF Holding Nach ETF Position apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 342 + 333 - - Approximation based on the Top 15 holdings per ETF - Annäherung auf Basis der 15 grössten Positionen pro ETF + + Approximation based on the top holdings of each ETF + Annäherung auf Basis der grössten Positionen pro ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 350 + 340 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 803e71757..edfce3d63 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -31,7 +31,7 @@ Beneficiario apps/client/src/app/components/access-table/access-table.component.html - 10 + 11 @@ -59,7 +59,7 @@ Detalles apps/client/src/app/components/access-table/access-table.component.html - 32 + 33 @@ -67,7 +67,7 @@ Revoca apps/client/src/app/components/access-table/access-table.component.html - 59 + 63 @@ -91,7 +91,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 100 + 113 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -123,7 +123,7 @@ Nombre apps/client/src/app/components/accounts-table/accounts-table.component.html - 34 + 39 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -167,7 +167,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 11 + 12 @@ -175,7 +175,7 @@ Total apps/client/src/app/components/accounts-table/accounts-table.component.html - 45 + 50 @@ -183,11 +183,11 @@ Valor apps/client/src/app/components/accounts-table/accounts-table.component.html - 152 + 165 apps/client/src/app/components/accounts-table/accounts-table.component.html - 187 + 200 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -239,7 +239,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 25 + 26 @@ -247,7 +247,7 @@ Edita apps/client/src/app/components/accounts-table/accounts-table.component.html - 254 + 271 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -275,7 +275,7 @@ Elimina apps/client/src/app/components/accounts-table/accounts-table.component.html - 264 + 281 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -918,227 +918,7 @@ 370 - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 188 @@ -1415,7 +1195,7 @@ Rendimiento neto absoluto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 124 + 126 @@ -1423,7 +1203,7 @@ Rendimiento neto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 139 + 141 @@ -1431,7 +1211,7 @@ Total de activos apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 165 + 167 @@ -1439,7 +1219,7 @@ Objetos de valor apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 178 + 180 @@ -1447,7 +1227,7 @@ Fondo de emergencia apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + 192 apps/client/src/app/pages/features/features-page.html @@ -1463,7 +1243,7 @@ Capacidad de compra apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 237 + 252 @@ -1471,7 +1251,7 @@ Patrimonio neto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 284 + 297 @@ -1479,7 +1259,7 @@ Rendimiento anualizado apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 296 + 309 @@ -1491,7 +1271,7 @@ apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 330 + 343 apps/client/src/app/pages/features/features-page.html @@ -1511,7 +1291,7 @@ Por favor, ingresa la cantidad de tu fondo de emergencia: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 57 + 58 @@ -1587,7 +1367,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 45 + 46 @@ -1615,7 +1395,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 79 + 81 @@ -1678,36 +1458,12 @@ 253 - - This feature requires a subscription. - Esta funcionalidad requiere de suscripción. - - apps/client/src/app/components/home-summary/home-summary.component.ts - 113 - - - apps/client/src/app/core/http-response.interceptor.ts - 69 - - - - Upgrade Plan - Mejorar plan - - apps/client/src/app/components/home-summary/home-summary.component.ts - 115 - - - apps/client/src/app/core/http-response.interceptor.ts - 72 - - Okay De acuerdo apps/client/src/app/core/http-response.interceptor.ts - 92 + 81 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2079,7 +1835,7 @@ Efectivo apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 211 + 226 @@ -2087,7 +1843,7 @@ Divisa base apps/client/src/app/components/accounts-table/accounts-table.component.html - 55 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2119,7 +1875,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 117 + 130 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2135,7 +1891,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 72 + 81 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2255,7 +2011,7 @@ Por cuenta apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 294 + 286 @@ -2271,7 +2027,7 @@ Por tipo de activo apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 86 + 85 @@ -2279,7 +2035,7 @@ Por participación apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 109 + 107 @@ -2287,7 +2043,7 @@ Por sector apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 132 + 130 @@ -2295,7 +2051,7 @@ Por continente apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 156 + 153 @@ -2303,7 +2059,7 @@ Por país apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 271 + 264 @@ -2311,7 +2067,7 @@ Regiones apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 203 + 198 apps/client/src/app/pages/public/public-page.html @@ -2839,7 +2595,7 @@ Esta funcionalidad no está disponible actualmente. apps/client/src/app/core/http-response.interceptor.ts - 60 + 53 @@ -2847,7 +2603,7 @@ Vaya! Algo no funcionó bien. apps/client/src/app/core/http-response.interceptor.ts - 89 + 78 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2859,11 +2615,11 @@ Por favor, prueba más tarde. apps/client/src/app/core/http-response.interceptor.ts - 62 + 55 apps/client/src/app/core/http-response.interceptor.ts - 91 + 80 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2887,7 +2643,7 @@ Mercados desarrollados apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 228 + 222 apps/client/src/app/pages/public/public-page.html @@ -2939,7 +2695,7 @@ Otros mercados apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 246 + 240 apps/client/src/app/pages/public/public-page.html @@ -2951,7 +2707,7 @@ Mercados emergentes apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 237 + 231 apps/client/src/app/pages/public/public-page.html @@ -3007,7 +2763,7 @@ Ahorros libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 377 + 381 @@ -3015,7 +2771,7 @@ Interés libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 367 + 371 libs/ui/src/lib/i18n.ts @@ -3027,7 +2783,7 @@ Depósito libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 357 + 361 @@ -3099,7 +2855,7 @@ Alias apps/client/src/app/components/access-table/access-table.component.html - 3 + 4 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -3143,7 +2899,7 @@ Excluido del análisis apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 249 + 264 @@ -4147,7 +3903,7 @@ By ETF Provider apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 314 + 306 @@ -4411,7 +4167,7 @@ Liabilities apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 264 + 279 apps/client/src/app/pages/features/features-page.html @@ -4590,11059 +4346,1771 @@ Founded Founded - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 72 + + + Origin + Origin - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 77 + + + Region + Region - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 82 + + + Available in + Available in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 87 + + + ✅ Yes + ✅ Sí - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 116 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 162 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 174 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 181 + + + ❌ No + ❌ No - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 145 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 157 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 164 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 176 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 183 + + + ❌ No + ❌ No - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 118 + + + Self-Hosting + Self-Hosting - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 123 + + + Use anonymously + Use anonymously - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 150 + + + Free Plan + Free Plan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 169 + + + Notes + Notes - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 202 + + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 227 + + + Personal Finance Tools + Personal Finance Tools - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 308 + + + Guides + Guides - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 22 + + + Glossary + Glossary - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 92 + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Stocks, ETFs, bonds, cryptocurrencies, commodities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 22 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 62 + + + Mortgages, personal loans, credit cards + Mortgages, personal loans, credit cards - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 54 + + + Luxury items, real estate, private companies + Luxury items, real estate, private companies - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 70 + + + Buy + Buy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 31 + + + Valuable + Valuable - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 35 + + + ETFs without Countries + ETFs without Countries - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 78 + + + ETFs without Sectors + ETFs without Sectors - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 83 + + + Assets + Assets - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 239 + + + Preset + Preset - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 22 + + + By Market + By Market - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 175 + + + Asia-Pacific + Asia-Pacific - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 5 + + + Japan + Japan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 17 + + + Welcome to Ghostfolio + Welcome to Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 7 + + + Setup your accounts + Setup your accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 15 + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + Capture your activities + Capture your activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 24 + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 33 + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + No data available + No data available - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/public/public-page.html + 123 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 88 + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 8 + + + Setup accounts + Setup accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 48 + + + Biometric Authentication + Biometric Authentication - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 188 + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/open/open-page.html + 6 - - Origin - Origin + + Active Users + Active Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 40 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 62 + + + New Users + New Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 51 + + + Users in Slack community + Users in Slack community - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 75 + + + Contributors on GitHub + Contributors on GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 89 + + + Stars on GitHub + Stars on GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 103 + + + Pulls on Docker Hub + Pulls on Docker Hub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 105 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 117 + + + Uptime + Uptime - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 132 + + + Export Data + Export Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 231 + + + Currencies + Currencies - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 73 + + + Our + Our - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + Visit + Visit - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + Discover other exciting Open Source Software projects + Discover other exciting Open Source Software projects - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/overview/faq-overview-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/saas/saas-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html + 4 + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/features/features-page.html + 6 + + + Discover the latest Ghostfolio updates and insights on personal finance + Discover the latest Ghostfolio updates and insights on personal finance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/blog/blog-page.html + 7 + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + Manage your wealth like a boss + Manage your wealth like a boss - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 5 + + + 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 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. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 9 + + + Get Started + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 419 + + + or + or - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 46 + + + Monthly Active Users + Monthly Active Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 69 + + + As seen in + As seen in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 113 + + + Protect your assets. Refine your personal investment strategy. + Protect your assets. Refine your personal investment strategy. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 215 + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 219 + + + 360° View + 360° View - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 230 + + + Web3 Ready + Web3 Ready - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 241 + + + Use Ghostfolio anonymously and own your financial data. + Use Ghostfolio anonymously and own your financial data. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 243 + + + Open Source + Open Source - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 251 + + + Benefit from continuous improvements through a strong community. + Benefit from continuous improvements through a strong community. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 253 + + + Why Ghostfolio? + Why Ghostfolio? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 262 + + + Ghostfolio is for you if you are... + Ghostfolio is for you if you are... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 263 - - Region - Region + + trading stocks, ETFs or cryptocurrencies on multiple platforms + trading stocks, ETFs or cryptocurrencies on multiple platforms - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 270 + + + pursuing a buy & hold strategy + pursuing a buy & hold strategy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 276 + + + interested in getting insights of your portfolio composition + interested in getting insights of your portfolio composition - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 281 + + + valuing privacy and data ownership + valuing privacy and data ownership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 286 + + + into minimalism + into minimalism - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 289 + + + caring about diversifying your financial resources + caring about diversifying your financial resources - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 293 + + + interested in financial independence + interested in financial independence - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 297 + + + saying no to spreadsheets in + saying no to spreadsheets in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 301 + + + still reading this list + still reading this list - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 304 + + + Learn more about Ghostfolio + Learn more about Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 309 + + + What our users are saying + What our users are saying - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 317 + + + Members from around the globe are using Ghostfolio Premium + Members from around the globe are using Ghostfolio Premium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 349 + + + How does Ghostfolio work? + How does Ghostfolio work? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 361 + + + Sign up anonymously* + Sign up anonymously* - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 370 + + + * no e-mail address nor credit card required + * no e-mail address nor credit card required - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 372 + + + Add any of your historical transactions + Add any of your historical transactions - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 383 + + + Get valuable insights of your portfolio composition + Get valuable insights of your portfolio composition - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 395 + + + Are you ready? + Are you ready? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 407 + + + Join now or check out the example account + Join now or check out the example account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 408 + + + Live Demo + Live Demo - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 49 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 424 + + + Get the full picture of your personal finances across multiple platforms. + Get the full picture of your personal finances across multiple platforms. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 232 + + + Get started in only 3 steps + Get started in only 3 steps - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 364 + + + faq + preguntas-mas-frecuentes - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/app.component.ts + 66 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/core/paths.ts + 3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - - Available in - Available in - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - - ✅ Yes - ✅ Sí - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - - ❌ No - ❌ No - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 176 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - - ❌ No - ❌ No - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 118 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118 - - - - Self-Hosting - Self-Hosting - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - - Use anonymously - Use anonymously - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 150 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 - - - - Free Plan - Free Plan - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - - Notes - Notes - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - - Personal Finance Tools - Personal Finance Tools - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - - Guides - Guides - - apps/client/src/app/pages/resources/resources-page.html - 22 - - - - Glossary - Glossary - - apps/client/src/app/pages/resources/resources-page.html - 92 - - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Stocks, ETFs, bonds, cryptocurrencies, commodities - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 - - - - Mortgages, personal loans, credit cards - Mortgages, personal loans, credit cards - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 - - - - Luxury items, real estate, private companies - Luxury items, real estate, private companies - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 - - - - Buy - Buy - - libs/ui/src/lib/i18n.ts - 31 - - - - Valuable - Valuable - - libs/ui/src/lib/i18n.ts - 35 - - - - ETFs without Countries - ETFs without Countries - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 78 - - - - ETFs without Sectors - ETFs without Sectors - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 83 - - - - Assets - Assets - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 224 - - - - Preset - Preset - - libs/ui/src/lib/i18n.ts - 22 - - - - By Market - By Market - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 179 - - - - Asia-Pacific - Asia-Pacific - - libs/ui/src/lib/i18n.ts - 5 - - - - Japan - Japan - - libs/ui/src/lib/i18n.ts - 17 - - - - Welcome to Ghostfolio - Welcome to Ghostfolio - - apps/client/src/app/components/home-overview/home-overview.html - 7 - - - - Setup your accounts - Setup your accounts - - apps/client/src/app/components/home-overview/home-overview.html - 15 - - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Get a comprehensive financial overview by adding your bank and brokerage accounts. - - apps/client/src/app/components/home-overview/home-overview.html - 17 - - - - Capture your activities - Capture your activities - - apps/client/src/app/components/home-overview/home-overview.html - 24 - - - - Record your investment activities to keep your portfolio up to date. - Record your investment activities to keep your portfolio up to date. - - apps/client/src/app/components/home-overview/home-overview.html - 26 - - - - Monitor and analyze your portfolio - Monitor and analyze your portfolio - - apps/client/src/app/components/home-overview/home-overview.html - 33 - - - - Track your progress in real-time with comprehensive analysis and insights. - Track your progress in real-time with comprehensive analysis and insights. - - apps/client/src/app/components/home-overview/home-overview.html - 35 - - - - No data available - No data available - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 258 - - - apps/client/src/app/pages/public/public-page.html - 123 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 86 - - - - Ready to take control of your personal finances? - Ready to take control of your personal finances? - - apps/client/src/app/components/home-overview/home-overview.html - 8 - - - - Setup accounts - Setup accounts - - apps/client/src/app/components/home-overview/home-overview.html - 48 - - - - Biometric Authentication - Biometric Authentication - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 - - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - - apps/client/src/app/pages/open/open-page.html - 6 - - - - Active Users - Active Users - - apps/client/src/app/pages/open/open-page.html - 40 - - - apps/client/src/app/pages/open/open-page.html - 62 - - - - New Users - New Users - - apps/client/src/app/pages/open/open-page.html - 51 - - - - Users in Slack community - Users in Slack community - - apps/client/src/app/pages/open/open-page.html - 75 - - - - Contributors on GitHub - Contributors on GitHub - - apps/client/src/app/pages/open/open-page.html - 89 - - - - Stars on GitHub - Stars on GitHub - - apps/client/src/app/pages/landing/landing-page.html - 87 - - - apps/client/src/app/pages/open/open-page.html - 103 - - - - Pulls on Docker Hub - Pulls on Docker Hub - - apps/client/src/app/pages/landing/landing-page.html - 105 - - - apps/client/src/app/pages/open/open-page.html - 117 - - - - Uptime - Uptime - - apps/client/src/app/pages/open/open-page.html - 132 - - - - Export Data - Export Data - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 - - - - Currencies - Currencies - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 73 - - - - Our - Our - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 - - - - Visit - Visit - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 - - - - Discover other exciting Open Source Software projects - Discover other exciting Open Source Software projects - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 - - - - Frequently Asked Questions (FAQ) - Frequently Asked Questions (FAQ) - - apps/client/src/app/pages/faq/overview/faq-overview-page.html - 4 - - - apps/client/src/app/pages/faq/saas/saas-page.html - 4 - - - apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html - 4 - - - - Check out the numerous features of Ghostfolio to manage your wealth - Check out the numerous features of Ghostfolio to manage your wealth - - apps/client/src/app/pages/features/features-page.html - 6 - - - - Discover the latest Ghostfolio updates and insights on personal finance - Discover the latest Ghostfolio updates and insights on personal finance - - apps/client/src/app/pages/blog/blog-page.html - 7 - - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - - apps/client/src/app/pages/pricing/pricing-page.html - 24 - - - - Manage your wealth like a boss - Manage your wealth like a boss - - apps/client/src/app/pages/landing/landing-page.html - 5 - - - - 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 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. - - apps/client/src/app/pages/landing/landing-page.html - 9 - - - - Get Started - Get Started - - apps/client/src/app/pages/landing/landing-page.html - 41 - - - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - or - - apps/client/src/app/pages/landing/landing-page.html - 46 - - - - Monthly Active Users - Monthly Active Users - - apps/client/src/app/pages/landing/landing-page.html - 69 - - - - As seen in - As seen in - - apps/client/src/app/pages/landing/landing-page.html - 113 - - - - Protect your assets. Refine your personal investment strategy. - Protect your assets. Refine your personal investment strategy. - - apps/client/src/app/pages/landing/landing-page.html - 215 - - - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - - apps/client/src/app/pages/landing/landing-page.html - 219 - - - - 360° View - 360° View - - apps/client/src/app/pages/landing/landing-page.html - 230 - - - - Web3 Ready - Web3 Ready - - apps/client/src/app/pages/landing/landing-page.html - 241 - - - - Use Ghostfolio anonymously and own your financial data. - Use Ghostfolio anonymously and own your financial data. - - apps/client/src/app/pages/landing/landing-page.html - 243 - - - - Open Source - Open Source - - apps/client/src/app/pages/landing/landing-page.html - 251 - - - - Benefit from continuous improvements through a strong community. - Benefit from continuous improvements through a strong community. - - apps/client/src/app/pages/landing/landing-page.html - 253 - - - - Why Ghostfolio? - Why Ghostfolio? - - apps/client/src/app/pages/landing/landing-page.html - 262 - - - - Ghostfolio is for you if you are... - Ghostfolio is for you if you are... - - apps/client/src/app/pages/landing/landing-page.html - 263 - - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - trading stocks, ETFs or cryptocurrencies on multiple platforms - - apps/client/src/app/pages/landing/landing-page.html - 270 - - - - pursuing a buy & hold strategy - pursuing a buy & hold strategy - - apps/client/src/app/pages/landing/landing-page.html - 276 - - - - interested in getting insights of your portfolio composition - interested in getting insights of your portfolio composition - - apps/client/src/app/pages/landing/landing-page.html - 281 - - - - valuing privacy and data ownership - valuing privacy and data ownership - - apps/client/src/app/pages/landing/landing-page.html - 286 - - - - into minimalism - into minimalism - - apps/client/src/app/pages/landing/landing-page.html - 289 - - - - caring about diversifying your financial resources - caring about diversifying your financial resources - - apps/client/src/app/pages/landing/landing-page.html - 293 - - - - interested in financial independence - interested in financial independence - - apps/client/src/app/pages/landing/landing-page.html - 297 - - - - saying no to spreadsheets in - saying no to spreadsheets in - - apps/client/src/app/pages/landing/landing-page.html - 301 - - - - still reading this list - still reading this list - - apps/client/src/app/pages/landing/landing-page.html - 304 - - - - Learn more about Ghostfolio - Learn more about Ghostfolio - - apps/client/src/app/pages/landing/landing-page.html - 309 - - - - What our users are saying - What our users are saying - - apps/client/src/app/pages/landing/landing-page.html - 317 - - - - Members from around the globe are using Ghostfolio Premium - Members from around the globe are using Ghostfolio Premium - - apps/client/src/app/pages/landing/landing-page.html - 349 - - - - How does Ghostfolio work? - How does Ghostfolio work? - - apps/client/src/app/pages/landing/landing-page.html - 361 - - - - Sign up anonymously* - Sign up anonymously* - - apps/client/src/app/pages/landing/landing-page.html - 370 - - - - * no e-mail address nor credit card required - * no e-mail address nor credit card required - - apps/client/src/app/pages/landing/landing-page.html - 372 - - - - Add any of your historical transactions - Add any of your historical transactions - - apps/client/src/app/pages/landing/landing-page.html - 383 - - - - Get valuable insights of your portfolio composition - Get valuable insights of your portfolio composition - - apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 - - - - Join now or check out the example account - Join now or check out the example account - - apps/client/src/app/pages/landing/landing-page.html - 408 - - - - Live Demo - Live Demo - - apps/client/src/app/pages/landing/landing-page.html - 49 - - - apps/client/src/app/pages/landing/landing-page.html - 424 - - - - Get the full picture of your personal finances across multiple platforms. - Get the full picture of your personal finances across multiple platforms. - - apps/client/src/app/pages/landing/landing-page.html - 232 - - - - Get started in only 3 steps - Get started in only 3 steps - - apps/client/src/app/pages/landing/landing-page.html - 364 - - - - faq - preguntas-mas-frecuentes - - apps/client/src/app/app.component.ts - 66 - - - apps/client/src/app/core/paths.ts - 3 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 37 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 42 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 48 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 17 - - - - features - funcionalidades - - apps/client/src/app/app.component.ts - 67 - - - apps/client/src/app/components/header/header.component.ts - 78 - - - apps/client/src/app/components/header/header.component.ts - 83 - - - apps/client/src/app/core/paths.ts - 4 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 14 - - - apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts - 14 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 27 - - - - about - sobre - - apps/client/src/app/app.component.ts - 59 - - - apps/client/src/app/app.component.ts - 60 - - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/app.component.ts - 63 - - - apps/client/src/app/components/header/header.component.ts - 77 - - - apps/client/src/app/components/header/header.component.ts - 82 - - - apps/client/src/app/core/paths.ts - 2 - - - apps/client/src/app/pages/about/about-page.component.ts - 45 - - - apps/client/src/app/pages/about/about-page.component.ts - 50 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - apps/client/src/app/pages/about/about-page.component.ts - 74 - - - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 13 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 - - - - privacy-policy - politica-de-privacidad - - apps/client/src/app/app.component.ts - 64 - - - apps/client/src/app/core/paths.ts - 8 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - - license - licencia - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/core/paths.ts - 5 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - - markets - mercados - - apps/client/src/app/app.component.ts - 68 - - - apps/client/src/app/components/header/header.component.ts - 79 - - - apps/client/src/app/components/header/header.component.ts - 84 - - - apps/client/src/app/core/paths.ts - 6 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 14 - - - - pricing - precios - - apps/client/src/app/app.component.ts - 69 - - - apps/client/src/app/components/header/header.component.ts - 80 - - - apps/client/src/app/components/header/header.component.ts - 85 - - - apps/client/src/app/components/home-summary/home-summary.component.ts - 125 - - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 - - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 38 - - - apps/client/src/app/core/http-response.interceptor.ts - 83 - - - apps/client/src/app/core/paths.ts - 7 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 16 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 15 - - - libs/ui/src/lib/membership-card/membership-card.component.ts - 25 - - - - register - registro - - apps/client/src/app/app.component.ts - 70 - - - apps/client/src/app/components/header/header.component.ts - 86 - - - apps/client/src/app/core/auth.guard.ts - 55 - - - apps/client/src/app/core/paths.ts - 9 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 16 - - - apps/client/src/app/pages/features/features-page.component.ts - 31 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 27 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 36 - - - - resources - recursos - - apps/client/src/app/app.component.ts - 71 - - - apps/client/src/app/components/header/header.component.ts - 81 - - - apps/client/src/app/components/header/header.component.ts - 87 - - - apps/client/src/app/core/paths.ts - 10 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/features/features-page.component.ts - 32 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 19 - - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8 - - - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16 - - - - Open Source Alternative to - Alternativa de software libre a - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 38 - - - - 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 - 26 - - - - The Open Source Alternative to - La alternativa de software libre a - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - - 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 - 23 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 - - - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - - Ready to take your investments to the next level? - Ready to take your investments to the next level? - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - - Get Started - Get Started - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - - Switzerland - Switzerland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 80 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 590 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 650 - - - - Global - Global - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 81 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 360 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 502 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 651 - - - - United States - United States - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 101 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 167 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 218 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 240 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 302 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 324 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 335 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 371 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 469 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 479 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 489 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 578 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 601 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 639 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 661 - - - - Belgium - Belgium - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 187 - - - - Germany - Germany - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 198 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 292 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 313 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 358 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 415 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 532 - - - - Austria - Austria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 270 - - - - Italy - Italy - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 - - - - Netherlands - Netherlands - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 436 - - - - Thailand - Thailand - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 458 - - - - New Zealand - New Zealand - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 500 - - - - Czech Republic - Czech Republic - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 511 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 568 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 611 - - - - (Last 24 hours) - (Last 24 hours) - - apps/client/src/app/pages/open/open-page.html - 37 - - - - (Last 30 days) - (Last 30 days) - - apps/client/src/app/pages/open/open-page.html - 48 - - - apps/client/src/app/pages/open/open-page.html - 59 - - - - (Last 90 days) - (Last 90 days) - - apps/client/src/app/pages/open/open-page.html - 127 - - - - Choose or drop a file here - Choose or drop a file here - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 - - - - You are using the Live Demo. - You are using the Live Demo. - - apps/client/src/app/app.component.html - 17 - - - - One-time fee, annual account fees - One-time fee, annual account fees - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 - - - - Distribution of corporate earnings - Distribution of corporate earnings - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 - - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 - - - - Fee - Fee - - libs/ui/src/lib/i18n.ts - 33 - - - - Interest - Interest - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 318 - - - - Revenue for lending out money - Revenue for lending out money - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 - - - - Add Tag - Add Tag - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 - - - - Do you really want to delete this tag? - Do you really want to delete this tag? - - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 79 - - - - Update tag - Update tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 - - - - Add tag - Add tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 - - - - France - France - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 522 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 547 - - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 111 - - - - Currency Cluster Risks - Currency Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 - - - - Account Cluster Risks - Account Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 - - - - Transfer Cash Balance - Transfer Cash Balance - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 - - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 - - - - Benchmark - Benchmark - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 284 - - - - Version - Version - - apps/client/src/app/components/admin-overview/admin-overview.html - 7 - - - - Settings - Settings - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 - - - - From - From - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 - - - - To - To - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 - - - - Transfer - Transfer - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 - - - - Finland - Finland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 539 - - - - Membership - Membership - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 23 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 40 - - - - Access - Access - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 28 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 46 - - - - Find holding... - Find holding... - - libs/ui/src/lib/assistant/assistant.component.ts - 138 - - - - No entries... - No entries... - - libs/ui/src/lib/assistant/assistant.html - 63 - - - libs/ui/src/lib/assistant/assistant.html - 84 - - - - Asset Profile - Asset Profile - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 - - - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? - - apps/client/src/app/components/admin-market-data/admin-market-data.service.ts - 13 - - - - Search - Search - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 - - - - Add Manually - Add Manually - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 - - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio es un dashboard de finanzas personales para hacer un seguimiento de tus activos como acciones, ETFs o criptodivisas a través de múltiples plataformas. - - apps/client/src/app/pages/i18n/i18n-page.html - 4 - - - - Last All Time High - Last All Time High - - libs/ui/src/lib/benchmark/benchmark.component.html - 65 - - - - User - User - - apps/client/src/app/components/admin-users/admin-users.html - 29 - - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - - Canada - Canada - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 631 - - - - Open Source Wealth Management Software - Open Source Wealth Management Software - - apps/client/src/app/pages/i18n/i18n-page.html - 14 - - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - - apps/client/src/app/pages/i18n/i18n-page.html - 9 - - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - - apps/client/src/app/pages/accounts/accounts-page.component.ts - 304 - - - - Poland - Poland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 139 - - - - South Africa - South Africa - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 259 - - - - Extreme Fear - Extreme Fear - - libs/ui/src/lib/i18n.ts - 69 - - - - Extreme Greed - Extreme Greed - - libs/ui/src/lib/i18n.ts - 70 - - - - Neutral - Neutral - - libs/ui/src/lib/i18n.ts - 73 - - - - Oops! Could not parse historical data. - Oops! Could not parse historical data. - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 232 - - - - Do you really want to delete this system message? - Do you really want to delete this system message? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 166 - - - - 50-Day Trend - 50-Day Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 15 - - - - 200-Day Trend - 200-Day Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 40 - - - - Cash Balances - Cash Balances - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 115 - - - - Starting from - Starting from - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + features + funcionalidades - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 67 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 83 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 24 + + + about + sobre - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 60 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 82 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 2 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 45 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 50 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 18 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 23 + + + privacy-policy + politica-de-privacidad - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 64 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 8 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 + + + license + licencia - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 5 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 + + + markets + mercados - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 68 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 84 - - - year - year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 6 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 14 + + + pricing + precios - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 85 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/http-response.interceptor.ts + 72 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 7 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/membership-card/membership-card.component.ts + 25 + + + register + registro - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 86 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/auth.guard.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 31 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/landing/landing-page.component.ts + 27 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 36 + + + resources + recursos - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 71 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 10 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 32 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/resources-page.component.ts + 19 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 + + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Explore the links below to compare a variety of personal finance tools with Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + Alternativa de software libre a - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 42 + + + Open Source Alternative to + Alternativa de software libre a - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 27 + + + The Open Source Alternative to + La alternativa de software libre a - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 27 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 38 + + + open-source-alternative-to + alternativa-de-software-libre-a - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 210 + + + Ready to take your investments to the next level? + Ready to take your investments to the next level? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 223 + + + Get Started + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 232 + + + Switzerland + Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 58 + + + Global + Global - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 59 + + + (Last 24 hours) + (Last 24 hours) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Last 30 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Last 90 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 127 + + + Choose or drop a file here + Choose or drop a file here - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 86 + + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + One-time fee, annual account fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 30 + + + Distribution of corporate earnings + Distribution of corporate earnings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 38 + + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 226 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 33 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 331 + + + Revenue for lending out money + Revenue for lending out money - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 46 + + + Add Tag + Add Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Do you really want to delete this tag? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 79 + + + Update tag + Update tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 7 + + + Add tag + Add tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 8 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 111 + + + Currency Cluster Risks + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 135 + + + Account Cluster Risks + Account Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 148 + + + Transfer Cash Balance + Transfer Cash Balance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 284 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 28 + + + Transfer + Transfer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 64 + + + Membership + Membership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 40 + + + Access + Access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 46 + + + Find holding... + Find holding... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.component.ts + 138 + + + No entries... + No entries... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 84 + + + Asset Profile + Asset Profile - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/admin-market-data.service.ts + 13 + + + Search + Search - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + Add Manually + Add Manually - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio es un dashboard de finanzas personales para hacer un seguimiento de tus activos como acciones, ETFs o criptodivisas a través de múltiples plataformas. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + Last All Time High + Last All Time High - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 65 + + + User + User - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs comparison table - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 49 + + + Open Source Wealth Management Software + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 9 + + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 304 + + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 69 + + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 70 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 73 + + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 232 + + + Do you really want to delete this system message? + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 166 + + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 + + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 40 + + + Cash Balances + Cash Balances - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 115 + + + Starting from + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 195 + + + year + year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 191 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 197 @@ -15699,7 +6167,7 @@ Permission apps/client/src/app/components/access-table/access-table.component.html - 17 + 18 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15711,7 +6179,7 @@ Restricted view apps/client/src/app/components/access-table/access-table.component.html - 25 + 26 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15859,7 +6327,7 @@ View apps/client/src/app/components/access-table/access-table.component.html - 22 + 23 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15987,7 +6455,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 - 107 + 96 @@ -16051,7 +6519,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 70 + 61 @@ -16134,36 +6602,20 @@ 278 - - Australia - Australia - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 403 - - - - Bulgaria - Bulgaria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 558 - - By ETF Holding By ETF Holding apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 342 + 333 - - Approximation based on the Top 15 holdings per ETF - Approximation based on the Top 15 holdings per ETF + + Approximation based on the top holdings of each ETF + Approximation based on the top holdings of each ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 350 + 340 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 20c37025b..80df87d68 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -14,7 +14,7 @@ Alias apps/client/src/app/components/access-table/access-table.component.html - 3 + 4 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -26,7 +26,7 @@ Bénéficiaire apps/client/src/app/components/access-table/access-table.component.html - 10 + 11 @@ -54,7 +54,7 @@ Détails apps/client/src/app/components/access-table/access-table.component.html - 32 + 33 @@ -62,7 +62,7 @@ Révoquer apps/client/src/app/components/access-table/access-table.component.html - 59 + 63 @@ -82,7 +82,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 72 + 81 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -102,7 +102,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 100 + 113 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -134,7 +134,7 @@ Nom apps/client/src/app/components/accounts-table/accounts-table.component.html - 34 + 39 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -178,7 +178,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 11 + 12 @@ -186,7 +186,7 @@ Total apps/client/src/app/components/accounts-table/accounts-table.component.html - 45 + 50 @@ -194,7 +194,7 @@ Devise apps/client/src/app/components/accounts-table/accounts-table.component.html - 55 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -226,7 +226,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 117 + 130 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -238,11 +238,11 @@ Valeur apps/client/src/app/components/accounts-table/accounts-table.component.html - 152 + 165 apps/client/src/app/components/accounts-table/accounts-table.component.html - 187 + 200 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -294,7 +294,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 25 + 26 @@ -302,7 +302,7 @@ Modifier apps/client/src/app/components/accounts-table/accounts-table.component.html - 254 + 271 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -330,7 +330,7 @@ Supprimer apps/client/src/app/components/accounts-table/accounts-table.component.html - 264 + 281 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -1221,227 +1221,7 @@ 370 - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 188 @@ -1609,30 +1389,6 @@ 6 - - This feature requires a subscription. - Cette fonctionnalité requiert un Abonnement. - - apps/client/src/app/components/home-summary/home-summary.component.ts - 113 - - - apps/client/src/app/core/http-response.interceptor.ts - 69 - - - - Upgrade Plan - Mettre à niveau l’Abonnement - - apps/client/src/app/components/home-summary/home-summary.component.ts - 115 - - - apps/client/src/app/core/http-response.interceptor.ts - 72 - - Summary Résumé @@ -1778,7 +1534,7 @@ Performance Absolue Nette apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 124 + 126 @@ -1786,7 +1542,7 @@ Performance nette apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 139 + 141 @@ -1794,7 +1550,7 @@ Actifs Totaux apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 165 + 167 @@ -1802,7 +1558,7 @@ Biens apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 178 + 180 @@ -1810,7 +1566,7 @@ Fonds d’Urgence apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + 192 apps/client/src/app/pages/features/features-page.html @@ -1826,7 +1582,7 @@ Pouvoir d’Achat apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 237 + 252 @@ -1834,7 +1590,7 @@ Exclus de l’Analyse apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 249 + 264 @@ -1842,7 +1598,7 @@ Fortune apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 284 + 297 @@ -1850,7 +1606,7 @@ Performance annualisée apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 296 + 309 @@ -1862,7 +1618,7 @@ apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 330 + 343 apps/client/src/app/pages/features/features-page.html @@ -1882,7 +1638,7 @@ Veuillez entrer le montant de votre fonds d’urgence : apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 57 + 58 @@ -2010,7 +1766,7 @@ Cette fonctionnalité est momentanément indisponible. apps/client/src/app/core/http-response.interceptor.ts - 60 + 53 @@ -2018,11 +1774,11 @@ Veuillez réessayer plus tard. apps/client/src/app/core/http-response.interceptor.ts - 62 + 55 apps/client/src/app/core/http-response.interceptor.ts - 91 + 80 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2034,7 +1790,7 @@ Oups! Quelque chose s’est mal passé. apps/client/src/app/core/http-response.interceptor.ts - 89 + 78 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2046,7 +1802,7 @@ D’accord apps/client/src/app/core/http-response.interceptor.ts - 92 + 81 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2430,7 +2186,7 @@ Cash apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 211 + 226 @@ -2822,7 +2578,7 @@ Par Compte apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 294 + 286 @@ -2838,7 +2594,7 @@ Par Classe d’Actifs apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 86 + 85 @@ -2846,7 +2602,7 @@ Par Position apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 109 + 107 @@ -2854,7 +2610,7 @@ Par Secteur apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 132 + 130 @@ -2862,7 +2618,7 @@ Par Continent apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 156 + 153 @@ -2870,7 +2626,7 @@ Par Pays apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 271 + 264 @@ -2878,7 +2634,7 @@ Régions apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 203 + 198 apps/client/src/app/pages/public/public-page.html @@ -2890,7 +2646,7 @@ Marchés Développés apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 228 + 222 apps/client/src/app/pages/public/public-page.html @@ -2902,7 +2658,7 @@ Marchés Émergents apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 237 + 231 apps/client/src/app/pages/public/public-page.html @@ -2914,7 +2670,7 @@ Autres marchés apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 246 + 240 apps/client/src/app/pages/public/public-page.html @@ -2950,7 +2706,7 @@ Dépôt libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 357 + 361 @@ -3070,8 +2826,8 @@ - Hello, has shared a Portfolio with you! - Bonjour, a partagé un Portefeuille avec vous ! + Hello, has shared a Portfolio with you! + Bonjour, a partagé un Portefeuille avec vous ! apps/client/src/app/pages/public/public-page.html 4 @@ -3338,7 +3094,7 @@ Intérêt libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 367 + 371 libs/ui/src/lib/i18n.ts @@ -3350,7 +3106,7 @@ Épargne libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 377 + 381 @@ -3362,7 +3118,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 45 + 46 @@ -3374,7 +3130,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 79 + 81 @@ -4146,7 +3902,7 @@ Par Émetteur d’ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 314 + 306 @@ -4410,7 +4166,7 @@ Dettes apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 264 + 279 apps/client/src/app/pages/features/features-page.html @@ -4589,11059 +4345,1771 @@ Founded Founded - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 72 + + + Origin + Origin - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 77 + + + Region + Region - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 82 + + + Available in + Available in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 87 + + + ✅ Yes + ✅ Oui - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 116 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 162 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 174 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 181 + + + ❌ No + ❌ Non - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 145 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 157 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 164 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 176 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 183 + + + ❌ No + ❌ No - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 118 + + + Self-Hosting + Self-Hosting - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 123 + + + Use anonymously + Use anonymously - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 150 + + + Free Plan + Free Plan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 169 + + + Notes + Notes - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 202 + + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 227 + + + Personal Finance Tools + Personal Finance Tools - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 308 + + + Guides + Guides - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 22 + + + Glossary + Glossary - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 92 + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Stocks, ETFs, bonds, cryptocurrencies, commodities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 22 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 62 + + + Mortgages, personal loans, credit cards + Mortgages, personal loans, credit cards - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 54 + + + Luxury items, real estate, private companies + Luxury items, real estate, private companies - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 70 + + + Buy + Buy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 31 + + + Valuable + Valuable - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 35 + + + ETFs without Countries + ETFs without Countries - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 78 + + + ETFs without Sectors + ETFs without Sectors - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 83 + + + Assets + Assets - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 239 + + + Preset + Preset - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 22 + + + By Market + By Market - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 175 + + + Asia-Pacific + Asia-Pacific - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 5 + + + Japan + Japan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 17 + + + Welcome to Ghostfolio + Welcome to Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 7 + + + Setup your accounts + Setup your accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 15 + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + Capture your activities + Capture your activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 24 + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 33 + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + No data available + No data available - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/public/public-page.html + 123 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 88 + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 8 + + + Setup accounts + Setup accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 48 + + + Biometric Authentication + Biometric Authentication - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 188 + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/open/open-page.html + 6 - - Origin - Origin + + Active Users + Active Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 40 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 62 + + + New Users + New Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 51 + + + Users in Slack community + Users in Slack community - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 75 + + + Contributors on GitHub + Contributors on GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 89 + + + Stars on GitHub + Stars on GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 103 + + + Pulls on Docker Hub + Pulls on Docker Hub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 105 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 117 + + + Uptime + Uptime - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 132 + + + Export Data + Export Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 231 + + + Currencies + Currencies - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 73 + + + Our + Our - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + Visit + Visit - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + Discover other exciting Open Source Software projects + Discover other exciting Open Source Software projects - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/overview/faq-overview-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/saas/saas-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html + 4 + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/features/features-page.html + 6 + + + Discover the latest Ghostfolio updates and insights on personal finance + Discover the latest Ghostfolio updates and insights on personal finance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/blog/blog-page.html + 7 + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + Manage your wealth like a boss + Manage your wealth like a boss - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 5 + + + 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 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. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 9 + + + Get Started + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 419 + + + or + or - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 46 + + + Monthly Active Users + Monthly Active Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 69 + + + As seen in + As seen in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 113 + + + Protect your assets. Refine your personal investment strategy. + Protect your assets. Refine your personal investment strategy. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 215 + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 219 + + + 360° View + 360° View - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 230 + + + Web3 Ready + Web3 Ready - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 241 + + + Use Ghostfolio anonymously and own your financial data. + Use Ghostfolio anonymously and own your financial data. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 243 + + + Open Source + Open Source - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 251 + + + Benefit from continuous improvements through a strong community. + Benefit from continuous improvements through a strong community. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 253 + + + Why Ghostfolio? + Why Ghostfolio? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 262 + + + Ghostfolio is for you if you are... + Ghostfolio is for you if you are... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 263 - - Region - Region + + trading stocks, ETFs or cryptocurrencies on multiple platforms + trading stocks, ETFs or cryptocurrencies on multiple platforms - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 270 + + + pursuing a buy & hold strategy + pursuing a buy & hold strategy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 276 + + + interested in getting insights of your portfolio composition + interested in getting insights of your portfolio composition - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 281 + + + valuing privacy and data ownership + valuing privacy and data ownership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 286 + + + into minimalism + into minimalism - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 289 + + + caring about diversifying your financial resources + caring about diversifying your financial resources - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 293 + + + interested in financial independence + interested in financial independence - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 297 + + + saying no to spreadsheets in + saying no to spreadsheets in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 301 + + + still reading this list + still reading this list - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 304 + + + Learn more about Ghostfolio + Learn more about Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 309 + + + What our users are saying + What our users are saying - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 317 + + + Members from around the globe are using Ghostfolio Premium + Members from around the globe are using Ghostfolio Premium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 349 + + + How does Ghostfolio work? + How does Ghostfolio work? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 361 + + + Sign up anonymously* + Sign up anonymously* - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 370 + + + * no e-mail address nor credit card required + * no e-mail address nor credit card required - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 372 + + + Add any of your historical transactions + Add any of your historical transactions - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 383 + + + Get valuable insights of your portfolio composition + Get valuable insights of your portfolio composition - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 395 + + + Are you ready? + Are you ready? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 407 + + + Join now or check out the example account + Join now or check out the example account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 408 + + + Live Demo + Live Demo - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 49 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 424 + + + Get the full picture of your personal finances across multiple platforms. + Get the full picture of your personal finances across multiple platforms. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 232 + + + Get started in only 3 steps + Get started in only 3 steps - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 364 + + + faq + foire-aux-questions - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/app.component.ts + 66 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/core/paths.ts + 3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - - Available in - Available in - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - - ✅ Yes - ✅ Oui - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - - ❌ No - ❌ Non - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 176 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - - ❌ No - ❌ No - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 118 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118 - - - - Self-Hosting - Self-Hosting - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - - Use anonymously - Use anonymously - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 150 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 - - - - Free Plan - Free Plan - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - - Notes - Notes - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - - Personal Finance Tools - Personal Finance Tools - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - - Guides - Guides - - apps/client/src/app/pages/resources/resources-page.html - 22 - - - - Glossary - Glossary - - apps/client/src/app/pages/resources/resources-page.html - 92 - - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Stocks, ETFs, bonds, cryptocurrencies, commodities - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 - - - - Mortgages, personal loans, credit cards - Mortgages, personal loans, credit cards - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 - - - - Luxury items, real estate, private companies - Luxury items, real estate, private companies - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 - - - - Buy - Buy - - libs/ui/src/lib/i18n.ts - 31 - - - - Valuable - Valuable - - libs/ui/src/lib/i18n.ts - 35 - - - - ETFs without Countries - ETFs without Countries - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 78 - - - - ETFs without Sectors - ETFs without Sectors - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 83 - - - - Assets - Assets - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 224 - - - - Preset - Preset - - libs/ui/src/lib/i18n.ts - 22 - - - - By Market - By Market - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 179 - - - - Asia-Pacific - Asia-Pacific - - libs/ui/src/lib/i18n.ts - 5 - - - - Japan - Japan - - libs/ui/src/lib/i18n.ts - 17 - - - - Welcome to Ghostfolio - Welcome to Ghostfolio - - apps/client/src/app/components/home-overview/home-overview.html - 7 - - - - Setup your accounts - Setup your accounts - - apps/client/src/app/components/home-overview/home-overview.html - 15 - - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Get a comprehensive financial overview by adding your bank and brokerage accounts. - - apps/client/src/app/components/home-overview/home-overview.html - 17 - - - - Capture your activities - Capture your activities - - apps/client/src/app/components/home-overview/home-overview.html - 24 - - - - Record your investment activities to keep your portfolio up to date. - Record your investment activities to keep your portfolio up to date. - - apps/client/src/app/components/home-overview/home-overview.html - 26 - - - - Monitor and analyze your portfolio - Monitor and analyze your portfolio - - apps/client/src/app/components/home-overview/home-overview.html - 33 - - - - Track your progress in real-time with comprehensive analysis and insights. - Track your progress in real-time with comprehensive analysis and insights. - - apps/client/src/app/components/home-overview/home-overview.html - 35 - - - - No data available - No data available - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 258 - - - apps/client/src/app/pages/public/public-page.html - 123 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 86 - - - - Ready to take control of your personal finances? - Ready to take control of your personal finances? - - apps/client/src/app/components/home-overview/home-overview.html - 8 - - - - Setup accounts - Setup accounts - - apps/client/src/app/components/home-overview/home-overview.html - 48 - - - - Biometric Authentication - Biometric Authentication - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 - - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - - apps/client/src/app/pages/open/open-page.html - 6 - - - - Active Users - Active Users - - apps/client/src/app/pages/open/open-page.html - 40 - - - apps/client/src/app/pages/open/open-page.html - 62 - - - - New Users - New Users - - apps/client/src/app/pages/open/open-page.html - 51 - - - - Users in Slack community - Users in Slack community - - apps/client/src/app/pages/open/open-page.html - 75 - - - - Contributors on GitHub - Contributors on GitHub - - apps/client/src/app/pages/open/open-page.html - 89 - - - - Stars on GitHub - Stars on GitHub - - apps/client/src/app/pages/landing/landing-page.html - 87 - - - apps/client/src/app/pages/open/open-page.html - 103 - - - - Pulls on Docker Hub - Pulls on Docker Hub - - apps/client/src/app/pages/landing/landing-page.html - 105 - - - apps/client/src/app/pages/open/open-page.html - 117 - - - - Uptime - Uptime - - apps/client/src/app/pages/open/open-page.html - 132 - - - - Export Data - Export Data - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 - - - - Currencies - Currencies - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 73 - - - - Our - Our - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 - - - - Visit - Visit - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 - - - - Discover other exciting Open Source Software projects - Discover other exciting Open Source Software projects - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 - - - - Frequently Asked Questions (FAQ) - Frequently Asked Questions (FAQ) - - apps/client/src/app/pages/faq/overview/faq-overview-page.html - 4 - - - apps/client/src/app/pages/faq/saas/saas-page.html - 4 - - - apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html - 4 - - - - Check out the numerous features of Ghostfolio to manage your wealth - Check out the numerous features of Ghostfolio to manage your wealth - - apps/client/src/app/pages/features/features-page.html - 6 - - - - Discover the latest Ghostfolio updates and insights on personal finance - Discover the latest Ghostfolio updates and insights on personal finance - - apps/client/src/app/pages/blog/blog-page.html - 7 - - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - - apps/client/src/app/pages/pricing/pricing-page.html - 24 - - - - Manage your wealth like a boss - Manage your wealth like a boss - - apps/client/src/app/pages/landing/landing-page.html - 5 - - - - 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 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. - - apps/client/src/app/pages/landing/landing-page.html - 9 - - - - Get Started - Get Started - - apps/client/src/app/pages/landing/landing-page.html - 41 - - - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - or - - apps/client/src/app/pages/landing/landing-page.html - 46 - - - - Monthly Active Users - Monthly Active Users - - apps/client/src/app/pages/landing/landing-page.html - 69 - - - - As seen in - As seen in - - apps/client/src/app/pages/landing/landing-page.html - 113 - - - - Protect your assets. Refine your personal investment strategy. - Protect your assets. Refine your personal investment strategy. - - apps/client/src/app/pages/landing/landing-page.html - 215 - - - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - - apps/client/src/app/pages/landing/landing-page.html - 219 - - - - 360° View - 360° View - - apps/client/src/app/pages/landing/landing-page.html - 230 - - - - Web3 Ready - Web3 Ready - - apps/client/src/app/pages/landing/landing-page.html - 241 - - - - Use Ghostfolio anonymously and own your financial data. - Use Ghostfolio anonymously and own your financial data. - - apps/client/src/app/pages/landing/landing-page.html - 243 - - - - Open Source - Open Source - - apps/client/src/app/pages/landing/landing-page.html - 251 - - - - Benefit from continuous improvements through a strong community. - Benefit from continuous improvements through a strong community. - - apps/client/src/app/pages/landing/landing-page.html - 253 - - - - Why Ghostfolio? - Why Ghostfolio? - - apps/client/src/app/pages/landing/landing-page.html - 262 - - - - Ghostfolio is for you if you are... - Ghostfolio is for you if you are... - - apps/client/src/app/pages/landing/landing-page.html - 263 - - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - trading stocks, ETFs or cryptocurrencies on multiple platforms - - apps/client/src/app/pages/landing/landing-page.html - 270 - - - - pursuing a buy & hold strategy - pursuing a buy & hold strategy - - apps/client/src/app/pages/landing/landing-page.html - 276 - - - - interested in getting insights of your portfolio composition - interested in getting insights of your portfolio composition - - apps/client/src/app/pages/landing/landing-page.html - 281 - - - - valuing privacy and data ownership - valuing privacy and data ownership - - apps/client/src/app/pages/landing/landing-page.html - 286 - - - - into minimalism - into minimalism - - apps/client/src/app/pages/landing/landing-page.html - 289 - - - - caring about diversifying your financial resources - caring about diversifying your financial resources - - apps/client/src/app/pages/landing/landing-page.html - 293 - - - - interested in financial independence - interested in financial independence - - apps/client/src/app/pages/landing/landing-page.html - 297 - - - - saying no to spreadsheets in - saying no to spreadsheets in - - apps/client/src/app/pages/landing/landing-page.html - 301 - - - - still reading this list - still reading this list - - apps/client/src/app/pages/landing/landing-page.html - 304 - - - - Learn more about Ghostfolio - Learn more about Ghostfolio - - apps/client/src/app/pages/landing/landing-page.html - 309 - - - - What our users are saying - What our users are saying - - apps/client/src/app/pages/landing/landing-page.html - 317 - - - - Members from around the globe are using Ghostfolio Premium - Members from around the globe are using Ghostfolio Premium - - apps/client/src/app/pages/landing/landing-page.html - 349 - - - - How does Ghostfolio work? - How does Ghostfolio work? - - apps/client/src/app/pages/landing/landing-page.html - 361 - - - - Sign up anonymously* - Sign up anonymously* - - apps/client/src/app/pages/landing/landing-page.html - 370 - - - - * no e-mail address nor credit card required - * no e-mail address nor credit card required - - apps/client/src/app/pages/landing/landing-page.html - 372 - - - - Add any of your historical transactions - Add any of your historical transactions - - apps/client/src/app/pages/landing/landing-page.html - 383 - - - - Get valuable insights of your portfolio composition - Get valuable insights of your portfolio composition - - apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 - - - - Join now or check out the example account - Join now or check out the example account - - apps/client/src/app/pages/landing/landing-page.html - 408 - - - - Live Demo - Live Demo - - apps/client/src/app/pages/landing/landing-page.html - 49 - - - apps/client/src/app/pages/landing/landing-page.html - 424 - - - - Get the full picture of your personal finances across multiple platforms. - Get the full picture of your personal finances across multiple platforms. - - apps/client/src/app/pages/landing/landing-page.html - 232 - - - - Get started in only 3 steps - Get started in only 3 steps - - apps/client/src/app/pages/landing/landing-page.html - 364 - - - - faq - foire-aux-questions - - apps/client/src/app/app.component.ts - 66 - - - apps/client/src/app/core/paths.ts - 3 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 37 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 42 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 48 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 17 - - - - features - fonctionnalites - - apps/client/src/app/app.component.ts - 67 - - - apps/client/src/app/components/header/header.component.ts - 78 - - - apps/client/src/app/components/header/header.component.ts - 83 - - - apps/client/src/app/core/paths.ts - 4 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 14 - - - apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts - 14 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 27 - - - - about - a-propos - - apps/client/src/app/app.component.ts - 59 - - - apps/client/src/app/app.component.ts - 60 - - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/app.component.ts - 63 - - - apps/client/src/app/components/header/header.component.ts - 77 - - - apps/client/src/app/components/header/header.component.ts - 82 - - - apps/client/src/app/core/paths.ts - 2 - - - apps/client/src/app/pages/about/about-page.component.ts - 45 - - - apps/client/src/app/pages/about/about-page.component.ts - 50 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - apps/client/src/app/pages/about/about-page.component.ts - 74 - - - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 13 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 - - - - privacy-policy - politique-de-confidentialite - - apps/client/src/app/app.component.ts - 64 - - - apps/client/src/app/core/paths.ts - 8 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - - license - licence - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/core/paths.ts - 5 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - - markets - marches - - apps/client/src/app/app.component.ts - 68 - - - apps/client/src/app/components/header/header.component.ts - 79 - - - apps/client/src/app/components/header/header.component.ts - 84 - - - apps/client/src/app/core/paths.ts - 6 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 14 - - - - pricing - prix - - apps/client/src/app/app.component.ts - 69 - - - apps/client/src/app/components/header/header.component.ts - 80 - - - apps/client/src/app/components/header/header.component.ts - 85 - - - apps/client/src/app/components/home-summary/home-summary.component.ts - 125 - - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 - - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 38 - - - apps/client/src/app/core/http-response.interceptor.ts - 83 - - - apps/client/src/app/core/paths.ts - 7 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 16 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 15 - - - libs/ui/src/lib/membership-card/membership-card.component.ts - 25 - - - - register - enregistrement - - apps/client/src/app/app.component.ts - 70 - - - apps/client/src/app/components/header/header.component.ts - 86 - - - apps/client/src/app/core/auth.guard.ts - 55 - - - apps/client/src/app/core/paths.ts - 9 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 16 - - - apps/client/src/app/pages/features/features-page.component.ts - 31 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 27 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 36 - - - - resources - ressources - - apps/client/src/app/app.component.ts - 71 - - - apps/client/src/app/components/header/header.component.ts - 81 - - - apps/client/src/app/components/header/header.component.ts - 87 - - - apps/client/src/app/core/paths.ts - 10 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/features/features-page.component.ts - 32 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 19 - - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8 - - - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16 - - - - Open Source Alternative to - Alternative open source à - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 38 - - - - Open Source Alternative to - Alternative open source à - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 26 - - - - The Open Source Alternative to - L’alternative open source à - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - - open-source-alternative-to - alternative-open-source-a - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 23 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 - - - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - - Ready to take your investments to the next level? - Ready to take your investments to the next level? - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - - Get Started - Get Started - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - - Switzerland - Switzerland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 80 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 590 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 650 - - - - Global - Global - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 81 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 360 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 502 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 651 - - - - United States - United States - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 101 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 167 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 218 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 240 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 302 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 324 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 335 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 371 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 469 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 479 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 489 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 578 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 601 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 639 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 661 - - - - Belgium - Belgium - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 187 - - - - Germany - Germany - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 198 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 292 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 313 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 358 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 415 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 532 - - - - Austria - Austria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 270 - - - - Italy - Italy - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 - - - - Netherlands - Netherlands - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 436 - - - - Thailand - Thailand - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 458 - - - - New Zealand - New Zealand - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 500 - - - - Czech Republic - Czech Republic - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 511 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 568 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 611 - - - - (Last 24 hours) - (Last 24 hours) - - apps/client/src/app/pages/open/open-page.html - 37 - - - - (Last 30 days) - (Last 30 days) - - apps/client/src/app/pages/open/open-page.html - 48 - - - apps/client/src/app/pages/open/open-page.html - 59 - - - - (Last 90 days) - (Last 90 days) - - apps/client/src/app/pages/open/open-page.html - 127 - - - - Choose or drop a file here - Choose or drop a file here - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 - - - - You are using the Live Demo. - You are using the Live Demo. - - apps/client/src/app/app.component.html - 17 - - - - One-time fee, annual account fees - One-time fee, annual account fees - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 - - - - Distribution of corporate earnings - Distribution of corporate earnings - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 - - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 - - - - Fee - Fee - - libs/ui/src/lib/i18n.ts - 33 - - - - Interest - Interest - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 318 - - - - Revenue for lending out money - Revenue for lending out money - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 - - - - Add Tag - Add Tag - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 - - - - Do you really want to delete this tag? - Do you really want to delete this tag? - - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 79 - - - - Update tag - Update tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 - - - - Add tag - Add tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 - - - - France - France - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 522 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 547 - - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 111 - - - - Currency Cluster Risks - Currency Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 - - - - Account Cluster Risks - Account Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 - - - - Transfer Cash Balance - Transfer Cash Balance - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 - - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 - - - - Benchmark - Benchmark - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 284 - - - - Version - Version - - apps/client/src/app/components/admin-overview/admin-overview.html - 7 - - - - Settings - Settings - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 - - - - From - From - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 - - - - To - To - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 - - - - Transfer - Transfer - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 - - - - Finland - Finland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 539 - - - - Membership - Membership - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 23 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 40 - - - - Access - Access - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 28 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 46 - - - - Find holding... - Find holding... - - libs/ui/src/lib/assistant/assistant.component.ts - 138 - - - - No entries... - No entries... - - libs/ui/src/lib/assistant/assistant.html - 63 - - - libs/ui/src/lib/assistant/assistant.html - 84 - - - - Asset Profile - Asset Profile - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 - - - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? - - apps/client/src/app/components/admin-market-data/admin-market-data.service.ts - 13 - - - - Search - Search - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 - - - - Add Manually - Add Manually - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 - - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio est un dashboard de finances personnelles qui permet de suivre vos actifs comme les actions, les ETF ou les crypto-monnaies sur plusieurs plateformes. - - apps/client/src/app/pages/i18n/i18n-page.html - 4 - - - - Last All Time High - Last All Time High - - libs/ui/src/lib/benchmark/benchmark.component.html - 65 - - - - User - User - - apps/client/src/app/components/admin-users/admin-users.html - 29 - - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - - Canada - Canada - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 631 - - - - Open Source Wealth Management Software - Open Source Wealth Management Software - - apps/client/src/app/pages/i18n/i18n-page.html - 14 - - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - - apps/client/src/app/pages/i18n/i18n-page.html - 9 - - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - - apps/client/src/app/pages/accounts/accounts-page.component.ts - 304 - - - - Poland - Poland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 139 - - - - South Africa - South Africa - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 259 - - - - Extreme Fear - Extreme Fear - - libs/ui/src/lib/i18n.ts - 69 - - - - Extreme Greed - Extreme Greed - - libs/ui/src/lib/i18n.ts - 70 - - - - Neutral - Neutral - - libs/ui/src/lib/i18n.ts - 73 - - - - Oops! Could not parse historical data. - Oops! Could not parse historical data. - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 232 - - - - Do you really want to delete this system message? - Do you really want to delete this system message? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 166 - - - - 50-Day Trend - 50-Day Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 15 - - - - 200-Day Trend - 200-Day Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 40 - - - - Cash Balances - Cash Balances - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 115 - - - - Starting from - Starting from - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + features + fonctionnalites - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 67 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 83 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 24 + + + about + a-propos - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 60 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 82 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 2 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 45 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 50 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 18 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 23 + + + privacy-policy + politique-de-confidentialite - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 64 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 8 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 + + + license + licence - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 5 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 + + + markets + marches - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 68 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 84 - - - year - year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 6 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 14 + + + pricing + prix - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 85 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/http-response.interceptor.ts + 72 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 7 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/membership-card/membership-card.component.ts + 25 + + + register + enregistrement - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 86 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/auth.guard.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 31 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/landing/landing-page.component.ts + 27 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 36 + + + resources + ressources - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 71 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 10 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 32 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/resources-page.component.ts + 19 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 + + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Explore the links below to compare a variety of personal finance tools with Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + Alternative open source à - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 42 + + + Open Source Alternative to + Alternative open source à - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 27 + + + The Open Source Alternative to + L’alternative open source à - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 27 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 38 + + + open-source-alternative-to + alternative-open-source-a - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 210 + + + Ready to take your investments to the next level? + Ready to take your investments to the next level? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 223 + + + Get Started + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 232 + + + Switzerland + Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 58 + + + Global + Global - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 59 + + + (Last 24 hours) + (Last 24 hours) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Last 30 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Last 90 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 127 + + + Choose or drop a file here + Choose or drop a file here - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 86 + + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + One-time fee, annual account fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 30 + + + Distribution of corporate earnings + Distribution of corporate earnings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 38 + + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 226 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 33 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 331 + + + Revenue for lending out money + Revenue for lending out money - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 46 + + + Add Tag + Add Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Do you really want to delete this tag? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 79 + + + Update tag + Update tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 7 + + + Add tag + Add tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 8 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 111 + + + Currency Cluster Risks + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 135 + + + Account Cluster Risks + Account Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 148 + + + Transfer Cash Balance + Transfer Cash Balance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 284 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 28 + + + Transfer + Transfer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 64 + + + Membership + Membership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 40 + + + Access + Access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 46 + + + Find holding... + Find holding... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.component.ts + 138 + + + No entries... + No entries... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 84 + + + Asset Profile + Asset Profile - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/admin-market-data.service.ts + 13 + + + Search + Search - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + Add Manually + Add Manually - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio est un dashboard de finances personnelles qui permet de suivre vos actifs comme les actions, les ETF ou les crypto-monnaies sur plusieurs plateformes. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + Last All Time High + Last All Time High - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 65 + + + User + User - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs comparison table - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 49 + + + Open Source Wealth Management Software + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 9 + + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 304 + + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 69 + + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 70 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 73 + + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 232 + + + Do you really want to delete this system message? + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 166 + + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 + + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 40 + + + Cash Balances + Cash Balances - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 115 + + + Starting from + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 195 + + + year + year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 191 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 197 @@ -15698,7 +6166,7 @@ Permission apps/client/src/app/components/access-table/access-table.component.html - 17 + 18 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15710,7 +6178,7 @@ Restricted view apps/client/src/app/components/access-table/access-table.component.html - 25 + 26 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15858,7 +6326,7 @@ View apps/client/src/app/components/access-table/access-table.component.html - 22 + 23 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15986,7 +6454,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 - 107 + 96 @@ -16050,7 +6518,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 70 + 61 @@ -16133,36 +6601,20 @@ 278 - - Australia - Australia - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 403 - - - - Bulgaria - Bulgaria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 558 - - By ETF Holding By ETF Holding apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 342 + 333 - - Approximation based on the Top 15 holdings per ETF - Approximation based on the Top 15 holdings per ETF + + Approximation based on the top holdings of each ETF + Approximation based on the top holdings of each ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 350 + 340 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 652e71af8..47048c810 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -31,7 +31,7 @@ Beneficiario apps/client/src/app/components/access-table/access-table.component.html - 10 + 11 @@ -59,7 +59,7 @@ Dettagli apps/client/src/app/components/access-table/access-table.component.html - 32 + 33 @@ -67,7 +67,7 @@ Revoca apps/client/src/app/components/access-table/access-table.component.html - 59 + 63 @@ -91,7 +91,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 100 + 113 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -123,7 +123,7 @@ Nome apps/client/src/app/components/accounts-table/accounts-table.component.html - 34 + 39 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -167,7 +167,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 11 + 12 @@ -175,7 +175,7 @@ Totale apps/client/src/app/components/accounts-table/accounts-table.component.html - 45 + 50 @@ -183,11 +183,11 @@ Valore apps/client/src/app/components/accounts-table/accounts-table.component.html - 152 + 165 apps/client/src/app/components/accounts-table/accounts-table.component.html - 187 + 200 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -239,7 +239,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 25 + 26 @@ -247,7 +247,7 @@ Modifica apps/client/src/app/components/accounts-table/accounts-table.component.html - 254 + 271 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -275,7 +275,7 @@ Elimina apps/client/src/app/components/accounts-table/accounts-table.component.html - 264 + 281 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -918,227 +918,7 @@ 370 - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 188 @@ -1415,7 +1195,7 @@ Prestazioni nette assolute apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 124 + 126 @@ -1423,7 +1203,7 @@ Prestazioni nette apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 139 + 141 @@ -1431,7 +1211,7 @@ Asset totali apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 165 + 167 @@ -1439,7 +1219,7 @@ Oggetti di valore apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 178 + 180 @@ -1447,7 +1227,7 @@ Fondo di emergenza apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + 192 apps/client/src/app/pages/features/features-page.html @@ -1463,7 +1243,7 @@ Potere d'acquisto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 237 + 252 @@ -1471,7 +1251,7 @@ Patrimonio netto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 284 + 297 @@ -1479,7 +1259,7 @@ Prestazioni annualizzate apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 296 + 309 @@ -1491,7 +1271,7 @@ apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 330 + 343 apps/client/src/app/pages/features/features-page.html @@ -1511,7 +1291,7 @@ Inserisci l'importo del tuo fondo di emergenza: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 57 + 58 @@ -1587,7 +1367,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 45 + 46 @@ -1615,7 +1395,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 79 + 81 @@ -1678,36 +1458,12 @@ 253 - - This feature requires a subscription. - Questa funzione richiede un abbonamento. - - apps/client/src/app/components/home-summary/home-summary.component.ts - 113 - - - apps/client/src/app/core/http-response.interceptor.ts - 69 - - - - Upgrade Plan - Piano di aggiornamento - - apps/client/src/app/components/home-summary/home-summary.component.ts - 115 - - - apps/client/src/app/core/http-response.interceptor.ts - 72 - - Okay Bene apps/client/src/app/core/http-response.interceptor.ts - 92 + 81 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2079,7 +1835,7 @@ Contanti apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 211 + 226 @@ -2087,7 +1843,7 @@ Valuta apps/client/src/app/components/accounts-table/accounts-table.component.html - 55 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2119,7 +1875,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 117 + 130 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2135,7 +1891,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 72 + 81 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2255,7 +2011,7 @@ Per account apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 294 + 286 @@ -2271,7 +2027,7 @@ Per classe asset apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 86 + 85 @@ -2279,7 +2035,7 @@ Per partecipazione apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 109 + 107 @@ -2287,7 +2043,7 @@ Per settore apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 132 + 130 @@ -2295,7 +2051,7 @@ Per continente apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 156 + 153 @@ -2303,7 +2059,7 @@ Per paese apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 271 + 264 @@ -2311,7 +2067,7 @@ Regioni apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 203 + 198 apps/client/src/app/pages/public/public-page.html @@ -2839,7 +2595,7 @@ Questa funzionalità non è attualmente disponibile. apps/client/src/app/core/http-response.interceptor.ts - 60 + 53 @@ -2847,7 +2603,7 @@ Ops! Qualcosa è andato storto. apps/client/src/app/core/http-response.interceptor.ts - 89 + 78 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2859,11 +2615,11 @@ Riprova più tardi. apps/client/src/app/core/http-response.interceptor.ts - 62 + 55 apps/client/src/app/core/http-response.interceptor.ts - 91 + 80 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2887,7 +2643,7 @@ Mercati sviluppati apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 228 + 222 apps/client/src/app/pages/public/public-page.html @@ -2939,7 +2695,7 @@ Altri mercati apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 246 + 240 apps/client/src/app/pages/public/public-page.html @@ -2951,7 +2707,7 @@ Mercati emergenti apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 237 + 231 apps/client/src/app/pages/public/public-page.html @@ -3007,7 +2763,7 @@ Risparmio libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 377 + 381 @@ -3015,7 +2771,7 @@ Interesse libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 367 + 371 libs/ui/src/lib/i18n.ts @@ -3027,7 +2783,7 @@ Deposito libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 357 + 361 @@ -3099,7 +2855,7 @@ Alias apps/client/src/app/components/access-table/access-table.component.html - 3 + 4 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -3143,7 +2899,7 @@ Escluso dall'analisi apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 249 + 264 @@ -4147,7 +3903,7 @@ Per fornitore di ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 314 + 306 @@ -4411,7 +4167,7 @@ Passività apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 264 + 279 apps/client/src/app/pages/features/features-page.html @@ -4590,11059 +4346,1771 @@ Founded Fondato - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 72 + + + Origin + Origine - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 77 + + + Region + Regione - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 82 + + + Available in + Disponibile in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 87 + + + ✅ Yes + ✅ Si - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 116 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 162 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 174 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 181 + + + ❌ No + ❌ No - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 145 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 157 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 164 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 176 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 183 + + + ❌ No + ❌ No - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 118 + + + Self-Hosting + Self-hosting - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 123 + + + Use anonymously + Usalo in modo anonimo - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 150 + + + Free Plan + Piano gratuito - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 169 + + + Notes + Note - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 202 + + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Monitora, analizza e visualizza facilmente la tua ricchezza con Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 227 + + + Personal Finance Tools + Strumenti di finanza personale - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 308 + + + Guides + Guide - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 22 + + + Glossary + Glossario - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 92 + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Azioni, ETF, obbligazioni, criptovalute e materie prime - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 22 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 62 + + + Mortgages, personal loans, credit cards + Mutui, prestiti personali, carte di credito - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 54 + + + Luxury items, real estate, private companies + Articoli di lusso, immobili, aziende private - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 70 + + + Buy + Compra - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 31 + + + Valuable + Prezioso - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 35 + + + ETFs without Countries + ETF senza paesi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 78 + + + ETFs without Sectors + ETF senza settori - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 83 + + + Assets + Asset - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 239 + + + Preset + Preimpostato - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 22 + + + By Market + Per mercato - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 175 + + + Asia-Pacific + Asia e Pacifico - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 5 + + + Japan + Giappone - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 17 + + + Welcome to Ghostfolio + Benvenuto su Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 7 + + + Setup your accounts + Configura i tuoi account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 15 + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Ottieni una panoramica finanziaria completa aggiungendo i tuoi conti bancari e di trading. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + Capture your activities + Cattura le tue attività - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 24 + + + Record your investment activities to keep your portfolio up to date. + Registra le tue attività di investimento per tenere aggiornato il tuo portafoglio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + Monitor and analyze your portfolio + Monitora e analizza il tuo portafoglio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 33 + + + Track your progress in real-time with comprehensive analysis and insights. + Monitora i tuoi progressi in tempo reale, con analisi e approfondimenti completi. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + No data available + Nessun dato disponibile - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/public/public-page.html + 123 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 88 + + + Ready to take control of your personal finances? + Sei pronto a prendere il controllo delle tue finanze personali? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 8 + + + Setup accounts + Configura gli account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 48 + + + Biometric Authentication + Autenticazione biometrica - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 188 + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Per Ghostfolio la trasparenza è al centro dei propri valori. Pubblichiamo il codice sorgente come software open source (OSS) sotto la licenza AGPL-3.0 e condividiamo apertamente le metriche chiave aggregate dello stato operativo della piattaforma. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/open/open-page.html + 6 - - Origin - Origine + + Active Users + Utenti attivi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 40 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 62 + + + New Users + Nuovi utenti - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 51 + + + Users in Slack community + Utenti nella comunità Slack - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 75 + + + Contributors on GitHub + Contributori su GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 89 + + + Stars on GitHub + Stelle su GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 103 + + + Pulls on Docker Hub + Estrazioni su Docker Hub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 105 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 117 + + + Uptime + Tempo di attività - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 132 + + + Export Data + Esporta dati - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 231 + + + Currencies + Valute - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 73 + + + Our + Nostri - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + Visit + Visita - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + Discover other exciting Open Source Software projects + Scopri altri interessanti progetti di software open source - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + Frequently Asked Questions (FAQ) + Domande più frequenti (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/overview/faq-overview-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/saas/saas-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html + 4 + + + Check out the numerous features of Ghostfolio to manage your wealth + Scopri le numerose funzionalità di Ghostfolio per gestire la tua ricchezza - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/features/features-page.html + 6 + + + Discover the latest Ghostfolio updates and insights on personal finance + Scopri gli ultimi aggiornamenti e approfondimenti di Ghostfolio sulla finanza personale - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/blog/blog-page.html + 7 + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + Se preferisci eseguire Ghostfolio sulla tua infrastruttura, puoi trovare il codice sorgente e ulteriori istruzioni su GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + Manage your wealth like a boss + Gestisci la tua ricchezza come un capo - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 5 + + + 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 è uno strumento open source e rispettoso della privacy per la gestione delle tue finanze personali. Analizza la tua allocazione degli asset, conosci il tuo patrimonio netto e prendi decisioni di investimento solide e basate sui dati. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 9 + + + Get Started + Inizia - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 419 + + + or + o - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 46 + + + Monthly Active Users + Utenti attivi mensili - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 69 + + + As seen in + Come si vede su - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 113 + + + Protect your assets. Refine your personal investment strategy. + Proteggi i tuoi asset. Perfeziona la tua strategia di investimento personale. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 215 + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio permette alle persone impegnate di tenere traccia di azioni, ETF o criptovalute senza essere tracciate. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 219 + + + 360° View + Vista a 360° - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 230 + + + Web3 Ready + Pronto per il Web3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 241 + + + Use Ghostfolio anonymously and own your financial data. + Usa Ghostfolio in modo anonimo e possiedi i tuoi dati finanziari. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 243 + + + Open Source + Open source - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 251 + + + Benefit from continuous improvements through a strong community. + Beneficia dei continui miglioramenti grazie a una forte comunità. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 253 + + + Why Ghostfolio? + Perché Ghostfolio? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 262 + + + Ghostfolio is for you if you are... + Ghostfolio è per te se... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 263 - - Region - Regione + + trading stocks, ETFs or cryptocurrencies on multiple platforms + fai trading di azioni, ETF o criptovalute su più piattaforme - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 270 + + + pursuing a buy & hold strategy + persegui una strategia buy & hold - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 276 + + + interested in getting insights of your portfolio composition + sei interessato a conoscere la composizione del tuo portafoglio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 281 + + + valuing privacy and data ownership + valorizzi la privacy e la proprietà dei dati - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 286 + + + into minimalism + sei per il minimalismo - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 289 + + + caring about diversifying your financial resources + ti interessa diversificare le tue risorse finanziarie - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 293 + + + interested in financial independence + sei interessato all'indipendenza finanziaria - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 297 + + + saying no to spreadsheets in + non vuoi utilizzare il foglio elettronico nel - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 301 + + + still reading this list + stai ancora leggendo questo elenco - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 304 + + + Learn more about Ghostfolio + Ulteriori informazioni su Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 309 + + + What our users are saying + Cosa dicono i nostri utenti - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 317 + + + Members from around the globe are using Ghostfolio Premium + Membri da tutto il mondo utilizzano Ghostfolio Premium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 349 + + + How does Ghostfolio work? + Come funziona Ghostfolio? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 361 + + + Sign up anonymously* + Iscriviti in modo anonimo* - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 370 + + + * no e-mail address nor credit card required + * non è richiesto alcun indirizzo email né la carta di credito - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 372 + + + Add any of your historical transactions + Aggiungi le tue transazioni storiche - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 383 + + + Get valuable insights of your portfolio composition + Ottieni informazioni preziose sulla composizione del tuo portafoglio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 395 + + + Are you ready? + Seipronto? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 407 + + + Join now or check out the example account + Iscriviti adesso o consulta l'account di esempio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 408 + + + Live Demo + Demo in tempo reale - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 49 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 424 + + + Get the full picture of your personal finances across multiple platforms. + Ottieni un quadro completo delle tue finanze personali su più piattaforme. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 232 + + + Get started in only 3 steps + Inizia in soli 3 passi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 364 + + + faq + domande-piu-frequenti - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/app.component.ts + 66 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/core/paths.ts + 3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - - Available in - Disponibile in - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - - ✅ Yes - ✅ Si - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - - ❌ No - ❌ No - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 176 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - - ❌ No - ❌ No - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 118 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118 - - - - Self-Hosting - Self-hosting - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - - Use anonymously - Usalo in modo anonimo - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 150 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 - - - - Free Plan - Piano gratuito - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - - Notes - Note - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Monitora, analizza e visualizza facilmente la tua ricchezza con Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - - Personal Finance Tools - Strumenti di finanza personale - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - - Guides - Guide - - apps/client/src/app/pages/resources/resources-page.html - 22 - - - - Glossary - Glossario - - apps/client/src/app/pages/resources/resources-page.html - 92 - - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Azioni, ETF, obbligazioni, criptovalute e materie prime - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 - - - - Mortgages, personal loans, credit cards - Mutui, prestiti personali, carte di credito - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 - - - - Luxury items, real estate, private companies - Articoli di lusso, immobili, aziende private - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 - - - - Buy - Compra - - libs/ui/src/lib/i18n.ts - 31 - - - - Valuable - Prezioso - - libs/ui/src/lib/i18n.ts - 35 - - - - ETFs without Countries - ETF senza paesi - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 78 - - - - ETFs without Sectors - ETF senza settori - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 83 - - - - Assets - Asset - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 224 - - - - Preset - Preimpostato - - libs/ui/src/lib/i18n.ts - 22 - - - - By Market - Per mercato - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 179 - - - - Asia-Pacific - Asia e Pacifico - - libs/ui/src/lib/i18n.ts - 5 - - - - Japan - Giappone - - libs/ui/src/lib/i18n.ts - 17 - - - - Welcome to Ghostfolio - Benvenuto su Ghostfolio - - apps/client/src/app/components/home-overview/home-overview.html - 7 - - - - Setup your accounts - Configura i tuoi account - - apps/client/src/app/components/home-overview/home-overview.html - 15 - - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Ottieni una panoramica finanziaria completa aggiungendo i tuoi conti bancari e di trading. - - apps/client/src/app/components/home-overview/home-overview.html - 17 - - - - Capture your activities - Cattura le tue attività - - apps/client/src/app/components/home-overview/home-overview.html - 24 - - - - Record your investment activities to keep your portfolio up to date. - Registra le tue attività di investimento per tenere aggiornato il tuo portafoglio. - - apps/client/src/app/components/home-overview/home-overview.html - 26 - - - - Monitor and analyze your portfolio - Monitora e analizza il tuo portafoglio - - apps/client/src/app/components/home-overview/home-overview.html - 33 - - - - Track your progress in real-time with comprehensive analysis and insights. - Monitora i tuoi progressi in tempo reale, con analisi e approfondimenti completi. - - apps/client/src/app/components/home-overview/home-overview.html - 35 - - - - No data available - Nessun dato disponibile - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 258 - - - apps/client/src/app/pages/public/public-page.html - 123 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 86 - - - - Ready to take control of your personal finances? - Sei pronto a prendere il controllo delle tue finanze personali? - - apps/client/src/app/components/home-overview/home-overview.html - 8 - - - - Setup accounts - Configura gli account - - apps/client/src/app/components/home-overview/home-overview.html - 48 - - - - Biometric Authentication - Autenticazione biometrica - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 - - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Per Ghostfolio la trasparenza è al centro dei propri valori. Pubblichiamo il codice sorgente come software open source (OSS) sotto la licenza AGPL-3.0 e condividiamo apertamente le metriche chiave aggregate dello stato operativo della piattaforma. - - apps/client/src/app/pages/open/open-page.html - 6 - - - - Active Users - Utenti attivi - - apps/client/src/app/pages/open/open-page.html - 40 - - - apps/client/src/app/pages/open/open-page.html - 62 - - - - New Users - Nuovi utenti - - apps/client/src/app/pages/open/open-page.html - 51 - - - - Users in Slack community - Utenti nella comunità Slack - - apps/client/src/app/pages/open/open-page.html - 75 - - - - Contributors on GitHub - Contributori su GitHub - - apps/client/src/app/pages/open/open-page.html - 89 - - - - Stars on GitHub - Stelle su GitHub - - apps/client/src/app/pages/landing/landing-page.html - 87 - - - apps/client/src/app/pages/open/open-page.html - 103 - - - - Pulls on Docker Hub - Estrazioni su Docker Hub - - apps/client/src/app/pages/landing/landing-page.html - 105 - - - apps/client/src/app/pages/open/open-page.html - 117 - - - - Uptime - Tempo di attività - - apps/client/src/app/pages/open/open-page.html - 132 - - - - Export Data - Esporta dati - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 - - - - Currencies - Valute - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 73 - - - - Our - Nostri - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 - - - - Visit - Visita - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 - - - - Discover other exciting Open Source Software projects - Scopri altri interessanti progetti di software open source - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 - - - - Frequently Asked Questions (FAQ) - Domande più frequenti (FAQ) - - apps/client/src/app/pages/faq/overview/faq-overview-page.html - 4 - - - apps/client/src/app/pages/faq/saas/saas-page.html - 4 - - - apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html - 4 - - - - Check out the numerous features of Ghostfolio to manage your wealth - Scopri le numerose funzionalità di Ghostfolio per gestire la tua ricchezza - - apps/client/src/app/pages/features/features-page.html - 6 - - - - Discover the latest Ghostfolio updates and insights on personal finance - Scopri gli ultimi aggiornamenti e approfondimenti di Ghostfolio sulla finanza personale - - apps/client/src/app/pages/blog/blog-page.html - 7 - - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - Se preferisci eseguire Ghostfolio sulla tua infrastruttura, puoi trovare il codice sorgente e ulteriori istruzioni su GitHub. - - apps/client/src/app/pages/pricing/pricing-page.html - 24 - - - - Manage your wealth like a boss - Gestisci la tua ricchezza come un capo - - apps/client/src/app/pages/landing/landing-page.html - 5 - - - - 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 è uno strumento open source e rispettoso della privacy per la gestione delle tue finanze personali. Analizza la tua allocazione degli asset, conosci il tuo patrimonio netto e prendi decisioni di investimento solide e basate sui dati. - - apps/client/src/app/pages/landing/landing-page.html - 9 - - - - Get Started - Inizia - - apps/client/src/app/pages/landing/landing-page.html - 41 - - - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - o - - apps/client/src/app/pages/landing/landing-page.html - 46 - - - - Monthly Active Users - Utenti attivi mensili - - apps/client/src/app/pages/landing/landing-page.html - 69 - - - - As seen in - Come si vede su - - apps/client/src/app/pages/landing/landing-page.html - 113 - - - - Protect your assets. Refine your personal investment strategy. - Proteggi i tuoi asset. Perfeziona la tua strategia di investimento personale. - - apps/client/src/app/pages/landing/landing-page.html - 215 - - - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio permette alle persone impegnate di tenere traccia di azioni, ETF o criptovalute senza essere tracciate. - - apps/client/src/app/pages/landing/landing-page.html - 219 - - - - 360° View - Vista a 360° - - apps/client/src/app/pages/landing/landing-page.html - 230 - - - - Web3 Ready - Pronto per il Web3 - - apps/client/src/app/pages/landing/landing-page.html - 241 - - - - Use Ghostfolio anonymously and own your financial data. - Usa Ghostfolio in modo anonimo e possiedi i tuoi dati finanziari. - - apps/client/src/app/pages/landing/landing-page.html - 243 - - - - Open Source - Open source - - apps/client/src/app/pages/landing/landing-page.html - 251 - - - - Benefit from continuous improvements through a strong community. - Beneficia dei continui miglioramenti grazie a una forte comunità. - - apps/client/src/app/pages/landing/landing-page.html - 253 - - - - Why Ghostfolio? - Perché Ghostfolio? - - apps/client/src/app/pages/landing/landing-page.html - 262 - - - - Ghostfolio is for you if you are... - Ghostfolio è per te se... - - apps/client/src/app/pages/landing/landing-page.html - 263 - - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - fai trading di azioni, ETF o criptovalute su più piattaforme - - apps/client/src/app/pages/landing/landing-page.html - 270 - - - - pursuing a buy & hold strategy - persegui una strategia buy & hold - - apps/client/src/app/pages/landing/landing-page.html - 276 - - - - interested in getting insights of your portfolio composition - sei interessato a conoscere la composizione del tuo portafoglio - - apps/client/src/app/pages/landing/landing-page.html - 281 - - - - valuing privacy and data ownership - valorizzi la privacy e la proprietà dei dati - - apps/client/src/app/pages/landing/landing-page.html - 286 - - - - into minimalism - sei per il minimalismo - - apps/client/src/app/pages/landing/landing-page.html - 289 - - - - caring about diversifying your financial resources - ti interessa diversificare le tue risorse finanziarie - - apps/client/src/app/pages/landing/landing-page.html - 293 - - - - interested in financial independence - sei interessato all'indipendenza finanziaria - - apps/client/src/app/pages/landing/landing-page.html - 297 - - - - saying no to spreadsheets in - non vuoi utilizzare il foglio elettronico nel - - apps/client/src/app/pages/landing/landing-page.html - 301 - - - - still reading this list - stai ancora leggendo questo elenco - - apps/client/src/app/pages/landing/landing-page.html - 304 - - - - Learn more about Ghostfolio - Ulteriori informazioni su Ghostfolio - - apps/client/src/app/pages/landing/landing-page.html - 309 - - - - What our users are saying - Cosa dicono i nostri utenti - - apps/client/src/app/pages/landing/landing-page.html - 317 - - - - Members from around the globe are using Ghostfolio Premium - Membri da tutto il mondo utilizzano Ghostfolio Premium - - apps/client/src/app/pages/landing/landing-page.html - 349 - - - - How does Ghostfolio work? - Come funziona Ghostfolio? - - apps/client/src/app/pages/landing/landing-page.html - 361 - - - - Sign up anonymously* - Iscriviti in modo anonimo* - - apps/client/src/app/pages/landing/landing-page.html - 370 - - - - * no e-mail address nor credit card required - * non è richiesto alcun indirizzo email né la carta di credito - - apps/client/src/app/pages/landing/landing-page.html - 372 - - - - Add any of your historical transactions - Aggiungi le tue transazioni storiche - - apps/client/src/app/pages/landing/landing-page.html - 383 - - - - Get valuable insights of your portfolio composition - Ottieni informazioni preziose sulla composizione del tuo portafoglio - - apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Seipronto? - - apps/client/src/app/pages/landing/landing-page.html - 407 - - - - Join now or check out the example account - Iscriviti adesso o consulta l'account di esempio - - apps/client/src/app/pages/landing/landing-page.html - 408 - - - - Live Demo - Demo in tempo reale - - apps/client/src/app/pages/landing/landing-page.html - 49 - - - apps/client/src/app/pages/landing/landing-page.html - 424 - - - - Get the full picture of your personal finances across multiple platforms. - Ottieni un quadro completo delle tue finanze personali su più piattaforme. - - apps/client/src/app/pages/landing/landing-page.html - 232 - - - - Get started in only 3 steps - Inizia in soli 3 passi - - apps/client/src/app/pages/landing/landing-page.html - 364 - - - - faq - domande-piu-frequenti - - apps/client/src/app/app.component.ts - 66 - - - apps/client/src/app/core/paths.ts - 3 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 37 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 42 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 48 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 17 - - - - features - funzionalita - - apps/client/src/app/app.component.ts - 67 - - - apps/client/src/app/components/header/header.component.ts - 78 - - - apps/client/src/app/components/header/header.component.ts - 83 - - - apps/client/src/app/core/paths.ts - 4 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 14 - - - apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts - 14 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 27 - - - - about - informazioni-su - - apps/client/src/app/app.component.ts - 59 - - - apps/client/src/app/app.component.ts - 60 - - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/app.component.ts - 63 - - - apps/client/src/app/components/header/header.component.ts - 77 - - - apps/client/src/app/components/header/header.component.ts - 82 - - - apps/client/src/app/core/paths.ts - 2 - - - apps/client/src/app/pages/about/about-page.component.ts - 45 - - - apps/client/src/app/pages/about/about-page.component.ts - 50 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - apps/client/src/app/pages/about/about-page.component.ts - 74 - - - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 13 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 - - - - privacy-policy - informativa-sulla-privacy - - apps/client/src/app/app.component.ts - 64 - - - apps/client/src/app/core/paths.ts - 8 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - - license - licenza - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/core/paths.ts - 5 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - - markets - mercati - - apps/client/src/app/app.component.ts - 68 - - - apps/client/src/app/components/header/header.component.ts - 79 - - - apps/client/src/app/components/header/header.component.ts - 84 - - - apps/client/src/app/core/paths.ts - 6 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 14 - - - - pricing - prezzi - - apps/client/src/app/app.component.ts - 69 - - - apps/client/src/app/components/header/header.component.ts - 80 - - - apps/client/src/app/components/header/header.component.ts - 85 - - - apps/client/src/app/components/home-summary/home-summary.component.ts - 125 - - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 - - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 38 - - - apps/client/src/app/core/http-response.interceptor.ts - 83 - - - apps/client/src/app/core/paths.ts - 7 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 16 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 15 - - - libs/ui/src/lib/membership-card/membership-card.component.ts - 25 - - - - register - iscrizione - - apps/client/src/app/app.component.ts - 70 - - - apps/client/src/app/components/header/header.component.ts - 86 - - - apps/client/src/app/core/auth.guard.ts - 55 - - - apps/client/src/app/core/paths.ts - 9 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 16 - - - apps/client/src/app/pages/features/features-page.component.ts - 31 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 27 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 36 - - - - resources - risorse - - apps/client/src/app/app.component.ts - 71 - - - apps/client/src/app/components/header/header.component.ts - 81 - - - apps/client/src/app/components/header/header.component.ts - 87 - - - apps/client/src/app/core/paths.ts - 10 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/features/features-page.component.ts - 32 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 19 - - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - Questa pagina panoramica presenta una raccolta curata di strumenti di finanza personale confrontati con l'alternativa open source Ghostfolio. Se apprezzi la trasparenza, la privacy dei dati e la collaborazione con la comunità, Ghostfolio ti offre un'ottima opportunità per prendere il controllo della tua gestione finanziaria. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8 - - - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Esplora i link qui sotto per confrontare una serie di strumenti di finanza personale con Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16 - - - - Open Source Alternative to - L'alternativa open source a - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 38 - - - - 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 - 26 - - - - The Open Source Alternative to - L'alternativa open source a - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Stai cercando un'alternativa open source a ? Ghostfolio è un potente strumento di gestione del portafoglio che fornisce alle persone una piattaforma completa per monitorare, analizzare e ottimizzare i propri investimenti. Che tu sia un investitore esperto o alle prime armi, Ghostfolio offre un'interfaccia utente intuitiva e un'ampia gamma di funzionalità per aiutarti a prendere decisioni informate e il controllo del tuo futuro finanziario. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio è un software open source (OSS) che offre un'alternativa economicamente vantaggiosa a particolarmente adatta a persone con un budget limitato, come quelle che perseguono l'indipendenza finanziaria e il pensionamento anticipato (FIRE). Grazie agli sforzi collettivi di una comunità di sviluppatori e di appassionati di finanza personale, Ghostfolio migliora continuamente le sue capacità, la sua sicurezza e la sua esperienza utente. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Analizziamo nel dettaglio la tabella di confronto qui sotto per comprendere a fondo come Ghostfolio si posiziona rispetto a . Esploreremo vari aspetti come le caratteristiche, la privacy dei dati, il prezzo e altro ancora, permettendoti di fare una scelta ben informata per le tue esigenze personali. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - - open-source-alternative-to - alternativa-open-source-a - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 23 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 - - - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Nota bene: le informazioni fornite si basano sulle nostre ricerche e analisi indipendenti. Questo sito web non è affiliato con o a qualsiasi altro prodotto citato nel confronto. Poiché il panorama degli strumenti di finanza personale si evolve, è essenziale verificare qualsiasi dettaglio o modifica specifica direttamente nella pagina del prodotto in questione. I dati hanno bisogno di essere aggiornati? Aiutaci a mantenere i dati accurati su GitHub. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - - Ready to take your investments to the next level? - Sei pronto a portare il tuo investimento al livello successivo? - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - - Get Started - Inizia - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - - Switzerland - Svizzera - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 80 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 590 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 650 - - - - Global - Globale - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 81 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 360 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 502 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 651 - - - - United States - Stati Uniti - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 101 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 167 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 218 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 240 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 302 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 324 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 335 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 371 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 469 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 479 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 489 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 578 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 601 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 639 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 661 - - - - Belgium - Belgio - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 187 - - - - Germany - Germania - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 198 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 292 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 313 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 358 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 415 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 532 - - - - Austria - Austria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 270 - - - - Italy - Italia - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 - - - - Netherlands - Paesi Bassi - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 436 - - - - Thailand - Thailandia - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 458 - - - - New Zealand - Nuova Zelanda - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 500 - - - - Czech Republic - Repubblica Ceca - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 511 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 568 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 611 - - - - (Last 24 hours) - (Ultime 24 ore) - - apps/client/src/app/pages/open/open-page.html - 37 - - - - (Last 30 days) - (Ultimi 30 giorni) - - apps/client/src/app/pages/open/open-page.html - 48 - - - apps/client/src/app/pages/open/open-page.html - 59 - - - - (Last 90 days) - (Ultimi 90 giorni) - - apps/client/src/app/pages/open/open-page.html - 127 - - - - Choose or drop a file here - Choose or drop a file here - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 - - - - You are using the Live Demo. - You are using the Live Demo. - - apps/client/src/app/app.component.html - 17 - - - - One-time fee, annual account fees - One-time fee, annual account fees - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 - - - - Distribution of corporate earnings - Distribution of corporate earnings - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 - - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 - - - - Fee - Fee - - libs/ui/src/lib/i18n.ts - 33 - - - - Interest - Interest - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 318 - - - - Revenue for lending out money - Revenue for lending out money - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 - - - - Add Tag - Add Tag - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 - - - - Do you really want to delete this tag? - Do you really want to delete this tag? - - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 79 - - - - Update tag - Update tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 - - - - Add tag - Add tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 - - - - France - France - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 522 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 547 - - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 111 - - - - Currency Cluster Risks - Currency Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 - - - - Account Cluster Risks - Account Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 - - - - Transfer Cash Balance - Transfer Cash Balance - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 - - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 - - - - Benchmark - Benchmark - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 284 - - - - Version - Version - - apps/client/src/app/components/admin-overview/admin-overview.html - 7 - - - - Settings - Settings - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 - - - - From - From - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 - - - - To - To - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 - - - - Transfer - Transfer - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 - - - - Finland - Finland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 539 - - - - Membership - Membership - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 23 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 40 - - - - Access - Access - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 28 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 46 - - - - Find holding... - Find holding... - - libs/ui/src/lib/assistant/assistant.component.ts - 138 - - - - No entries... - No entries... - - libs/ui/src/lib/assistant/assistant.html - 63 - - - libs/ui/src/lib/assistant/assistant.html - 84 - - - - Asset Profile - Asset Profile - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 - - - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? - - apps/client/src/app/components/admin-market-data/admin-market-data.service.ts - 13 - - - - Search - Search - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 - - - - Add Manually - Add Manually - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 - - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio è un dashboard di finanza personale per tenere traccia delle vostre attività come azioni, ETF o criptovalute su più piattaforme. - - apps/client/src/app/pages/i18n/i18n-page.html - 4 - - - - Last All Time High - Last All Time High - - libs/ui/src/lib/benchmark/benchmark.component.html - 65 - - - - User - User - - apps/client/src/app/components/admin-users/admin-users.html - 29 - - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - - Canada - Canada - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 631 - - - - Open Source Wealth Management Software - Open Source Wealth Management Software - - apps/client/src/app/pages/i18n/i18n-page.html - 14 - - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - - apps/client/src/app/pages/i18n/i18n-page.html - 9 - - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - - apps/client/src/app/pages/accounts/accounts-page.component.ts - 304 - - - - Poland - Poland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 139 - - - - South Africa - South Africa - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 259 - - - - Extreme Fear - Extreme Fear - - libs/ui/src/lib/i18n.ts - 69 - - - - Extreme Greed - Extreme Greed - - libs/ui/src/lib/i18n.ts - 70 - - - - Neutral - Neutral - - libs/ui/src/lib/i18n.ts - 73 - - - - Oops! Could not parse historical data. - Oops! Could not parse historical data. - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 232 - - - - Do you really want to delete this system message? - Do you really want to delete this system message? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 166 - - - - 50-Day Trend - 50-Day Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 15 - - - - 200-Day Trend - 200-Day Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 40 - - - - Cash Balances - Cash Balances - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 115 - - - - Starting from - Starting from - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + features + funzionalita - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 67 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 83 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 24 + + + about + informazioni-su - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 60 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 82 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 2 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 45 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 50 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 18 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 23 + + + privacy-policy + informativa-sulla-privacy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 64 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 8 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 + + + license + licenza - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 5 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 + + + markets + mercati - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 68 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 84 - - - year - year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 6 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 14 + + + pricing + prezzi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 85 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/http-response.interceptor.ts + 72 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 7 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/membership-card/membership-card.component.ts + 25 + + + register + iscrizione - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 86 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/auth.guard.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 31 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/landing/landing-page.component.ts + 27 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 36 + + + resources + risorse - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 71 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 10 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 32 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/resources-page.component.ts + 19 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + Questa pagina panoramica presenta una raccolta curata di strumenti di finanza personale confrontati con l'alternativa open source Ghostfolio. Se apprezzi la trasparenza, la privacy dei dati e la collaborazione con la comunità, Ghostfolio ti offre un'ottima opportunità per prendere il controllo della tua gestione finanziaria. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 + + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Esplora i link qui sotto per confrontare una serie di strumenti di finanza personale con Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + L'alternativa open source a - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 42 + + + Open Source Alternative to + L'alternativa open source a - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 27 + + + The Open Source Alternative to + L'alternativa open source a - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Stai cercando un'alternativa open source a ? Ghostfolio è un potente strumento di gestione del portafoglio che fornisce alle persone una piattaforma completa per monitorare, analizzare e ottimizzare i propri investimenti. Che tu sia un investitore esperto o alle prime armi, Ghostfolio offre un'interfaccia utente intuitiva e un'ampia gamma di funzionalità per aiutarti a prendere decisioni informate e il controllo del tuo futuro finanziario. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio è un software open source (OSS) che offre un'alternativa economicamente vantaggiosa a particolarmente adatta a persone con un budget limitato, come quelle che perseguono l'indipendenza finanziaria e il pensionamento anticipato (FIRE). Grazie agli sforzi collettivi di una comunità di sviluppatori e di appassionati di finanza personale, Ghostfolio migliora continuamente le sue capacità, la sua sicurezza e la sua esperienza utente. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 27 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Analizziamo nel dettaglio la tabella di confronto qui sotto per comprendere a fondo come Ghostfolio si posiziona rispetto a . Esploreremo vari aspetti come le caratteristiche, la privacy dei dati, il prezzo e altro ancora, permettendoti di fare una scelta ben informata per le tue esigenze personali. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 38 + + + open-source-alternative-to + alternativa-open-source-a - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Nota bene: le informazioni fornite si basano sulle nostre ricerche e analisi indipendenti. Questo sito web non è affiliato con o a qualsiasi altro prodotto citato nel confronto. Poiché il panorama degli strumenti di finanza personale si evolve, è essenziale verificare qualsiasi dettaglio o modifica specifica direttamente nella pagina del prodotto in questione. I dati hanno bisogno di essere aggiornati? Aiutaci a mantenere i dati accurati su GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 210 + + + Ready to take your investments to the next level? + Sei pronto a portare il tuo investimento al livello successivo? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 223 + + + Get Started + Inizia - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 232 + + + Switzerland + Svizzera - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 58 + + + Global + Globale - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 59 + + + (Last 24 hours) + (Ultime 24 ore) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Ultimi 30 giorni) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Ultimi 90 giorni) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 127 + + + Choose or drop a file here + Choose or drop a file here - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 86 + + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + One-time fee, annual account fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 30 + + + Distribution of corporate earnings + Distribution of corporate earnings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 38 + + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 226 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 33 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 331 + + + Revenue for lending out money + Revenue for lending out money - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 46 + + + Add Tag + Add Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Do you really want to delete this tag? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 79 + + + Update tag + Update tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 7 + + + Add tag + Add tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 8 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 111 + + + Currency Cluster Risks + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 135 + + + Account Cluster Risks + Account Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 148 + + + Transfer Cash Balance + Transfer Cash Balance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 284 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 28 + + + Transfer + Transfer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 64 + + + Membership + Membership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 40 + + + Access + Access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 46 + + + Find holding... + Find holding... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.component.ts + 138 + + + No entries... + No entries... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 84 + + + Asset Profile + Asset Profile - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/admin-market-data.service.ts + 13 + + + Search + Search - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + Add Manually + Add Manually - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio è un dashboard di finanza personale per tenere traccia delle vostre attività come azioni, ETF o criptovalute su più piattaforme. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + Last All Time High + Last All Time High - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 65 + + + User + User - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs comparison table - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 49 + + + Open Source Wealth Management Software + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 9 + + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 304 + + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 69 + + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 70 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 73 + + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 232 + + + Do you really want to delete this system message? + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 166 + + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 + + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 40 + + + Cash Balances + Cash Balances - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 115 + + + Starting from + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 195 + + + year + year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 191 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 197 @@ -15699,7 +6167,7 @@ Permission apps/client/src/app/components/access-table/access-table.component.html - 17 + 18 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15711,7 +6179,7 @@ Restricted view apps/client/src/app/components/access-table/access-table.component.html - 25 + 26 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15859,7 +6327,7 @@ View apps/client/src/app/components/access-table/access-table.component.html - 22 + 23 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15987,7 +6455,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 - 107 + 96 @@ -16051,7 +6519,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 70 + 61 @@ -16134,36 +6602,20 @@ 278 - - Australia - Australia - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 403 - - - - Bulgaria - Bulgaria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 558 - - By ETF Holding By ETF Holding apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 342 + 333 - - Approximation based on the Top 15 holdings per ETF - Approximation based on the Top 15 holdings per ETF + + Approximation based on the top holdings of each ETF + Approximation based on the top holdings of each ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 350 + 340 diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 0ba9ce85a..5c517853c 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -30,7 +30,7 @@ Ontvanger apps/client/src/app/components/access-table/access-table.component.html - 10 + 11 @@ -58,7 +58,7 @@ Details apps/client/src/app/components/access-table/access-table.component.html - 32 + 33 @@ -66,7 +66,7 @@ Intrekken apps/client/src/app/components/access-table/access-table.component.html - 59 + 63 @@ -90,7 +90,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 100 + 113 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -122,7 +122,7 @@ Naam apps/client/src/app/components/accounts-table/accounts-table.component.html - 34 + 39 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -166,7 +166,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 11 + 12 @@ -174,7 +174,7 @@ Totaal apps/client/src/app/components/accounts-table/accounts-table.component.html - 45 + 50 @@ -182,11 +182,11 @@ Waarde apps/client/src/app/components/accounts-table/accounts-table.component.html - 152 + 165 apps/client/src/app/components/accounts-table/accounts-table.component.html - 187 + 200 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -238,7 +238,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 25 + 26 @@ -246,7 +246,7 @@ Bewerken apps/client/src/app/components/accounts-table/accounts-table.component.html - 254 + 271 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -274,7 +274,7 @@ Verwijderen apps/client/src/app/components/accounts-table/accounts-table.component.html - 264 + 281 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -917,227 +917,7 @@ 370 - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 188 @@ -1414,7 +1194,7 @@ Absoluut netto rendement apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 124 + 126 @@ -1422,7 +1202,7 @@ Netto rendement apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 139 + 141 @@ -1430,7 +1210,7 @@ Totaal Activa apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 165 + 167 @@ -1438,7 +1218,7 @@ Kostbaarheden apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 178 + 180 @@ -1446,7 +1226,7 @@ Noodfonds apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + 192 apps/client/src/app/pages/features/features-page.html @@ -1462,7 +1242,7 @@ Koopkracht apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 237 + 252 @@ -1470,7 +1250,7 @@ Netto waarde apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 284 + 297 @@ -1478,7 +1258,7 @@ Rendement per jaar apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 296 + 309 @@ -1490,7 +1270,7 @@ apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 330 + 343 apps/client/src/app/pages/features/features-page.html @@ -1510,7 +1290,7 @@ Voer het bedrag van je noodfonds in: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 57 + 58 @@ -1586,7 +1366,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 45 + 46 @@ -1614,7 +1394,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 79 + 81 @@ -1677,36 +1457,12 @@ 253 - - This feature requires a subscription. - Voor deze functie is een abonnement vereist. - - apps/client/src/app/components/home-summary/home-summary.component.ts - 113 - - - apps/client/src/app/core/http-response.interceptor.ts - 69 - - - - Upgrade Plan - Abonnement uitbreiden - - apps/client/src/app/components/home-summary/home-summary.component.ts - 115 - - - apps/client/src/app/core/http-response.interceptor.ts - 72 - - Okay Oké apps/client/src/app/core/http-response.interceptor.ts - 92 + 81 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2078,7 +1834,7 @@ Contant geld apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 211 + 226 @@ -2086,7 +1842,7 @@ Valuta apps/client/src/app/components/accounts-table/accounts-table.component.html - 55 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2118,7 +1874,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 117 + 130 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2134,7 +1890,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 72 + 81 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -2254,7 +2010,7 @@ Per rekening apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 294 + 286 @@ -2270,7 +2026,7 @@ Per asset klasse apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 86 + 85 @@ -2278,7 +2034,7 @@ Per positie apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 109 + 107 @@ -2286,7 +2042,7 @@ Per sector apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 132 + 130 @@ -2294,7 +2050,7 @@ Per continent apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 156 + 153 @@ -2302,7 +2058,7 @@ Per land apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 271 + 264 @@ -2310,7 +2066,7 @@ Regio's apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 203 + 198 apps/client/src/app/pages/public/public-page.html @@ -2838,7 +2594,7 @@ Deze functie is momenteel niet beschikbaar. apps/client/src/app/core/http-response.interceptor.ts - 60 + 53 @@ -2846,7 +2602,7 @@ Oeps! Er ging iets mis. apps/client/src/app/core/http-response.interceptor.ts - 89 + 78 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2858,11 +2614,11 @@ Probeer het later nog eens. apps/client/src/app/core/http-response.interceptor.ts - 62 + 55 apps/client/src/app/core/http-response.interceptor.ts - 91 + 80 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2886,7 +2642,7 @@ Ontwikkelde markten apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 228 + 222 apps/client/src/app/pages/public/public-page.html @@ -2938,7 +2694,7 @@ Andere markten apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 246 + 240 apps/client/src/app/pages/public/public-page.html @@ -2950,7 +2706,7 @@ Opkomende markten apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 237 + 231 apps/client/src/app/pages/public/public-page.html @@ -3006,7 +2762,7 @@ Besparingen libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 377 + 381 @@ -3014,7 +2770,7 @@ Rente libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 367 + 371 libs/ui/src/lib/i18n.ts @@ -3026,7 +2782,7 @@ Storting libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 357 + 361 @@ -3098,7 +2854,7 @@ Alias apps/client/src/app/components/access-table/access-table.component.html - 3 + 4 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -3142,7 +2898,7 @@ Uitgesloten van analyse apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 249 + 264 @@ -4146,7 +3902,7 @@ Per ETF-aanbieder apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 314 + 306 @@ -4410,7 +4166,7 @@ Verplichtingen apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 264 + 279 apps/client/src/app/pages/features/features-page.html @@ -4589,11059 +4345,1771 @@ Founded Opgericht - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 72 + + + Origin + Oorsprong - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 77 + + + Region + Regio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 82 + + + Available in + Beschikbaar in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 87 + + + ✅ Yes + ✅ Wel - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 116 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 162 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 174 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 181 + + + ❌ No + ❌ Geen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 145 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 157 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 164 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 176 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 183 + + + ❌ No + ❌ Geen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 118 + + + Self-Hosting + Zelf hosten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 123 + + + Use anonymously + Gebruik anoniem - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 150 + + + Free Plan + Gratis abonnement - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 169 + + + Notes + Notities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 202 + + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Volg, analyseer en visualiseer moeiteloos je vermogen met Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 227 + + + Personal Finance Tools + Tools voor persoonlijke financiën - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 308 + + + Guides + Gidsen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 22 + + + Glossary + Woordenlijst - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 92 + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Aandelen, ETF's, obligaties, cryptocurrencies, grondstoffen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 22 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 62 + + + Mortgages, personal loans, credit cards + Hypotheken, persoonlijke leningen, creditcards - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 54 + + + Luxury items, real estate, private companies + Luxe artikelen, onroerend goed, particuliere bedrijven - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 70 + + + Buy + Koop - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 31 + + + Valuable + Waardevol - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 35 + + + ETFs without Countries + ETF's zonder Landen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 78 + + + ETFs without Sectors + ETF's zonder Sectoren - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 83 + + + Assets + Assets - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 239 + + + Preset + Voorinstelling - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 22 + + + By Market + Per markt - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 175 + + + Asia-Pacific + Azië en de Stille Oceaan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 5 + + + Japan + Japan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 17 + + + Welcome to Ghostfolio + Welkom bij Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 7 + + + Setup your accounts + Je accounts instellen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 15 + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Krijg een uitgebreid financieel overzicht door je bank- en effectenrekeningen toe te voegen. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + Capture your activities + Leg je activiteiten vast - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 24 + + + Record your investment activities to keep your portfolio up to date. + Leg je investeringsactiviteiten vast om je portefeuille up-to-date te houden. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + Monitor and analyze your portfolio + Volg en analyseer je portfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 33 + + + Track your progress in real-time with comprehensive analysis and insights. + Volg je voortgang in real-time met uitgebreide analyses en inzichten. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + No data available + Geen data beschikbaar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/public/public-page.html + 123 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 88 + + + Ready to take control of your personal finances? + Klaar om je persoonlijke financiën onder controle te krijgen? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 8 + + + Setup accounts + Account opzetten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 48 + + + Biometric Authentication + Biometrische authenticatie - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 188 + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Bij Ghostfolio is transparantie één van onze kernwaarden. We publiceren de broncode als open source software (OSS) onder de AGPL-3.0 licentie en we delen openlijk geaggregeerde kerncijfers van de operationele status van het platform. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/open/open-page.html + 6 - - Origin - Oorsprong + + Active Users + Actieve gebruikers - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 40 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 62 + + + New Users + Nieuwe gebruikers - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 51 + + + Users in Slack community + Gebruikers in de Slack gemeenschap - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 75 + + + Contributors on GitHub + Contributors op GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 89 + + + Stars on GitHub + Sterren op GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 103 + + + Pulls on Docker Hub + Pulls op Docker Hub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 105 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 117 + + + Uptime + Bedrijfstijd - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 132 + + + Export Data + Exporteer Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 231 + + + Currencies + Valuta - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 73 + + + Our + Onze - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + Visit + Bezoek - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + Discover other exciting Open Source Software projects + Ontdek andere interessante Open Source Softwareprojecten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + Frequently Asked Questions (FAQ) + Veelgestelde vragen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/overview/faq-overview-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/saas/saas-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html + 4 + + + Check out the numerous features of Ghostfolio to manage your wealth + Bekijk de vele functies van Ghostfolio om je vermogen te beheren - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/features/features-page.html + 6 + + + Discover the latest Ghostfolio updates and insights on personal finance + Ontdek de nieuwste Ghostfolio-updates en inzichten in persoonlijke financiën - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/blog/blog-page.html + 7 + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + Als je Ghostfolio liever op je eigen systeem uitvoert, vind je de broncode en verdere instructies op GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + Manage your wealth like a boss + Beheer je vermogen als een baas - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 5 + + + 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 is een privacygericht, open source dashboard voor je persoonlijke financiën. Analyseer je asset-allocatie, ken je nettowaarde en neem gefundeerde, datagedreven investeringsbeslissingen. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 9 + + + Get Started + Aan de slag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 419 + + + or + of - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 46 + + + Monthly Active Users + Maandelijkse actieve gebruikers - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 69 + + + As seen in + Zoals te zien in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 113 + + + Protect your assets. Refine your personal investment strategy. + Bescherm je financiële bezittingen. Verfijn je persoonlijke investeringsstrategie. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 215 + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio stelt drukbezette mensen in staat om aandelen, ETF's of cryptocurrencies bij te houden zonder gevolgd te worden. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 219 + + + 360° View + 360°-overzicht - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 230 + + + Web3 Ready + Klaar voor Web3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 241 + + + Use Ghostfolio anonymously and own your financial data. + Gebruik Ghostfolio anoniem en bezit je financiële gegevens. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 243 + + + Open Source + Open Source - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 251 + + + Benefit from continuous improvements through a strong community. + Profiteer van voortdurende verbeteringen door een sterke gemeenschap. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 253 + + + Why Ghostfolio? + Waarom Ghostfolio? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 262 + + + Ghostfolio is for you if you are... + Ghostfolio is iets voor je als je... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 263 - - Region - Regio + + trading stocks, ETFs or cryptocurrencies on multiple platforms + handelt in aandelen, ETF's of cryptocurrencies op meerdere platforms - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 270 + + + pursuing a buy & hold strategy + streeft naar een buy & hold strategie - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 276 + + + interested in getting insights of your portfolio composition + geïnteresseerd bent in het krijgen van inzicht in je portefeuillesamenstelling - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 281 + + + valuing privacy and data ownership + privacy en eigendom van gegevens waardeert - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 286 + + + into minimalism + houdt van een minimalistisch ontwerp - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 289 + + + caring about diversifying your financial resources + zorgdraagt voor het diversifiëren van je financiële middelen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 293 + + + interested in financial independence + geïnteresseerd bent in financiële onafhankelijkheid - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 297 + + + saying no to spreadsheets in + "nee" zegt tegen spreadsheets in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 301 + + + still reading this list + nog steeds deze lijst aan het lezen bent - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 304 + + + Learn more about Ghostfolio + Leer meer over Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 309 + + + What our users are saying + Wat onze gebruikers zeggen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 317 + + + Members from around the globe are using Ghostfolio Premium + Leden van over de hele wereld gebruikenGhostfolio Premium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 349 + + + How does Ghostfolio work? + Hoe Ghostfolio werkt? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 361 + + + Sign up anonymously* + Anoniem aanmelden* - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 370 + + + * no e-mail address nor credit card required + * geen e-mailadres of creditcard nodig - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 372 + + + Add any of your historical transactions + Voeg al je historische transacties toe - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 383 + + + Get valuable insights of your portfolio composition + Krijg waardevolle inzichten in de samenstelling van je portefeuille - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 395 + + + Are you ready? + Ben je er klaar voor? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 407 + + + Join now or check out the example account + Nu lid worden of bekijk het voorbeeld account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 408 + + + Live Demo + Live Demo - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 49 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 424 + + + Get the full picture of your personal finances across multiple platforms. + Krijg een volledig beeld van je persoonlijke financiën op meerdere platforms. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 232 + + + Get started in only 3 steps + Aan de slag in slechts 3 stappen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 364 + + + faq + veelgestelde-vragen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/app.component.ts + 66 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/core/paths.ts + 3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - - Available in - Beschikbaar in - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - - ✅ Yes - ✅ Wel - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - - ❌ No - ❌ Geen - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 176 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - - ❌ No - ❌ Geen - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 118 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118 - - - - Self-Hosting - Zelf hosten - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - - Use anonymously - Gebruik anoniem - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 150 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 - - - - Free Plan - Gratis abonnement - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - - Notes - Notities - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Volg, analyseer en visualiseer moeiteloos je vermogen met Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - - Personal Finance Tools - Tools voor persoonlijke financiën - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - - Guides - Gidsen - - apps/client/src/app/pages/resources/resources-page.html - 22 - - - - Glossary - Woordenlijst - - apps/client/src/app/pages/resources/resources-page.html - 92 - - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Aandelen, ETF's, obligaties, cryptocurrencies, grondstoffen - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 - - - - Mortgages, personal loans, credit cards - Hypotheken, persoonlijke leningen, creditcards - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 - - - - Luxury items, real estate, private companies - Luxe artikelen, onroerend goed, particuliere bedrijven - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 - - - - Buy - Koop - - libs/ui/src/lib/i18n.ts - 31 - - - - Valuable - Waardevol - - libs/ui/src/lib/i18n.ts - 35 - - - - ETFs without Countries - ETF's zonder Landen - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 78 - - - - ETFs without Sectors - ETF's zonder Sectoren - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 83 - - - - Assets - Assets - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 224 - - - - Preset - Voorinstelling - - libs/ui/src/lib/i18n.ts - 22 - - - - By Market - Per markt - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 179 - - - - Asia-Pacific - Azië en de Stille Oceaan - - libs/ui/src/lib/i18n.ts - 5 - - - - Japan - Japan - - libs/ui/src/lib/i18n.ts - 17 - - - - Welcome to Ghostfolio - Welkom bij Ghostfolio - - apps/client/src/app/components/home-overview/home-overview.html - 7 - - - - Setup your accounts - Je accounts instellen - - apps/client/src/app/components/home-overview/home-overview.html - 15 - - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Krijg een uitgebreid financieel overzicht door je bank- en effectenrekeningen toe te voegen. - - apps/client/src/app/components/home-overview/home-overview.html - 17 - - - - Capture your activities - Leg je activiteiten vast - - apps/client/src/app/components/home-overview/home-overview.html - 24 - - - - Record your investment activities to keep your portfolio up to date. - Leg je investeringsactiviteiten vast om je portefeuille up-to-date te houden. - - apps/client/src/app/components/home-overview/home-overview.html - 26 - - - - Monitor and analyze your portfolio - Volg en analyseer je portfolio - - apps/client/src/app/components/home-overview/home-overview.html - 33 - - - - Track your progress in real-time with comprehensive analysis and insights. - Volg je voortgang in real-time met uitgebreide analyses en inzichten. - - apps/client/src/app/components/home-overview/home-overview.html - 35 - - - - No data available - Geen data beschikbaar - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 258 - - - apps/client/src/app/pages/public/public-page.html - 123 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 86 - - - - Ready to take control of your personal finances? - Klaar om je persoonlijke financiën onder controle te krijgen? - - apps/client/src/app/components/home-overview/home-overview.html - 8 - - - - Setup accounts - Account opzetten - - apps/client/src/app/components/home-overview/home-overview.html - 48 - - - - Biometric Authentication - Biometrische authenticatie - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 - - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Bij Ghostfolio is transparantie één van onze kernwaarden. We publiceren de broncode als open source software (OSS) onder de AGPL-3.0 licentie en we delen openlijk geaggregeerde kerncijfers van de operationele status van het platform. - - apps/client/src/app/pages/open/open-page.html - 6 - - - - Active Users - Actieve gebruikers - - apps/client/src/app/pages/open/open-page.html - 40 - - - apps/client/src/app/pages/open/open-page.html - 62 - - - - New Users - Nieuwe gebruikers - - apps/client/src/app/pages/open/open-page.html - 51 - - - - Users in Slack community - Gebruikers in de Slack gemeenschap - - apps/client/src/app/pages/open/open-page.html - 75 - - - - Contributors on GitHub - Contributors op GitHub - - apps/client/src/app/pages/open/open-page.html - 89 - - - - Stars on GitHub - Sterren op GitHub - - apps/client/src/app/pages/landing/landing-page.html - 87 - - - apps/client/src/app/pages/open/open-page.html - 103 - - - - Pulls on Docker Hub - Pulls op Docker Hub - - apps/client/src/app/pages/landing/landing-page.html - 105 - - - apps/client/src/app/pages/open/open-page.html - 117 - - - - Uptime - Bedrijfstijd - - apps/client/src/app/pages/open/open-page.html - 132 - - - - Export Data - Exporteer Data - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 - - - - Currencies - Valuta - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 73 - - - - Our - Onze - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 - - - - Visit - Bezoek - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 - - - - Discover other exciting Open Source Software projects - Ontdek andere interessante Open Source Softwareprojecten - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 - - - - Frequently Asked Questions (FAQ) - Veelgestelde vragen - - apps/client/src/app/pages/faq/overview/faq-overview-page.html - 4 - - - apps/client/src/app/pages/faq/saas/saas-page.html - 4 - - - apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html - 4 - - - - Check out the numerous features of Ghostfolio to manage your wealth - Bekijk de vele functies van Ghostfolio om je vermogen te beheren - - apps/client/src/app/pages/features/features-page.html - 6 - - - - Discover the latest Ghostfolio updates and insights on personal finance - Ontdek de nieuwste Ghostfolio-updates en inzichten in persoonlijke financiën - - apps/client/src/app/pages/blog/blog-page.html - 7 - - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - Als je Ghostfolio liever op je eigen systeem uitvoert, vind je de broncode en verdere instructies op GitHub. - - apps/client/src/app/pages/pricing/pricing-page.html - 24 - - - - Manage your wealth like a boss - Beheer je vermogen als een baas - - apps/client/src/app/pages/landing/landing-page.html - 5 - - - - 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 is een privacygericht, open source dashboard voor je persoonlijke financiën. Analyseer je asset-allocatie, ken je nettowaarde en neem gefundeerde, datagedreven investeringsbeslissingen. - - apps/client/src/app/pages/landing/landing-page.html - 9 - - - - Get Started - Aan de slag - - apps/client/src/app/pages/landing/landing-page.html - 41 - - - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - of - - apps/client/src/app/pages/landing/landing-page.html - 46 - - - - Monthly Active Users - Maandelijkse actieve gebruikers - - apps/client/src/app/pages/landing/landing-page.html - 69 - - - - As seen in - Zoals te zien in - - apps/client/src/app/pages/landing/landing-page.html - 113 - - - - Protect your assets. Refine your personal investment strategy. - Bescherm je financiële bezittingen. Verfijn je persoonlijke investeringsstrategie. - - apps/client/src/app/pages/landing/landing-page.html - 215 - - - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio stelt drukbezette mensen in staat om aandelen, ETF's of cryptocurrencies bij te houden zonder gevolgd te worden. - - apps/client/src/app/pages/landing/landing-page.html - 219 - - - - 360° View - 360°-overzicht - - apps/client/src/app/pages/landing/landing-page.html - 230 - - - - Web3 Ready - Klaar voor Web3 - - apps/client/src/app/pages/landing/landing-page.html - 241 - - - - Use Ghostfolio anonymously and own your financial data. - Gebruik Ghostfolio anoniem en bezit je financiële gegevens. - - apps/client/src/app/pages/landing/landing-page.html - 243 - - - - Open Source - Open Source - - apps/client/src/app/pages/landing/landing-page.html - 251 - - - - Benefit from continuous improvements through a strong community. - Profiteer van voortdurende verbeteringen door een sterke gemeenschap. - - apps/client/src/app/pages/landing/landing-page.html - 253 - - - - Why Ghostfolio? - Waarom Ghostfolio? - - apps/client/src/app/pages/landing/landing-page.html - 262 - - - - Ghostfolio is for you if you are... - Ghostfolio is iets voor je als je... - - apps/client/src/app/pages/landing/landing-page.html - 263 - - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - handelt in aandelen, ETF's of cryptocurrencies op meerdere platforms - - apps/client/src/app/pages/landing/landing-page.html - 270 - - - - pursuing a buy & hold strategy - streeft naar een buy & hold strategie - - apps/client/src/app/pages/landing/landing-page.html - 276 - - - - interested in getting insights of your portfolio composition - geïnteresseerd bent in het krijgen van inzicht in je portefeuillesamenstelling - - apps/client/src/app/pages/landing/landing-page.html - 281 - - - - valuing privacy and data ownership - privacy en eigendom van gegevens waardeert - - apps/client/src/app/pages/landing/landing-page.html - 286 - - - - into minimalism - houdt van een minimalistisch ontwerp - - apps/client/src/app/pages/landing/landing-page.html - 289 - - - - caring about diversifying your financial resources - zorgdraagt voor het diversifiëren van je financiële middelen - - apps/client/src/app/pages/landing/landing-page.html - 293 - - - - interested in financial independence - geïnteresseerd bent in financiële onafhankelijkheid - - apps/client/src/app/pages/landing/landing-page.html - 297 - - - - saying no to spreadsheets in - "nee" zegt tegen spreadsheets in - - apps/client/src/app/pages/landing/landing-page.html - 301 - - - - still reading this list - nog steeds deze lijst aan het lezen bent - - apps/client/src/app/pages/landing/landing-page.html - 304 - - - - Learn more about Ghostfolio - Leer meer over Ghostfolio - - apps/client/src/app/pages/landing/landing-page.html - 309 - - - - What our users are saying - Wat onze gebruikers zeggen - - apps/client/src/app/pages/landing/landing-page.html - 317 - - - - Members from around the globe are using Ghostfolio Premium - Leden van over de hele wereld gebruikenGhostfolio Premium - - apps/client/src/app/pages/landing/landing-page.html - 349 - - - - How does Ghostfolio work? - Hoe Ghostfolio werkt? - - apps/client/src/app/pages/landing/landing-page.html - 361 - - - - Sign up anonymously* - Anoniem aanmelden* - - apps/client/src/app/pages/landing/landing-page.html - 370 - - - - * no e-mail address nor credit card required - * geen e-mailadres of creditcard nodig - - apps/client/src/app/pages/landing/landing-page.html - 372 - - - - Add any of your historical transactions - Voeg al je historische transacties toe - - apps/client/src/app/pages/landing/landing-page.html - 383 - - - - Get valuable insights of your portfolio composition - Krijg waardevolle inzichten in de samenstelling van je portefeuille - - apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Ben je er klaar voor? - - apps/client/src/app/pages/landing/landing-page.html - 407 - - - - Join now or check out the example account - Nu lid worden of bekijk het voorbeeld account - - apps/client/src/app/pages/landing/landing-page.html - 408 - - - - Live Demo - Live Demo - - apps/client/src/app/pages/landing/landing-page.html - 49 - - - apps/client/src/app/pages/landing/landing-page.html - 424 - - - - Get the full picture of your personal finances across multiple platforms. - Krijg een volledig beeld van je persoonlijke financiën op meerdere platforms. - - apps/client/src/app/pages/landing/landing-page.html - 232 - - - - Get started in only 3 steps - Aan de slag in slechts 3 stappen - - apps/client/src/app/pages/landing/landing-page.html - 364 - - - - faq - veelgestelde-vragen - - apps/client/src/app/app.component.ts - 66 - - - apps/client/src/app/core/paths.ts - 3 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 37 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 42 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 48 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 17 - - - - features - functionaliteiten - - apps/client/src/app/app.component.ts - 67 - - - apps/client/src/app/components/header/header.component.ts - 78 - - - apps/client/src/app/components/header/header.component.ts - 83 - - - apps/client/src/app/core/paths.ts - 4 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 14 - - - apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts - 14 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 27 - - - - about - over - - apps/client/src/app/app.component.ts - 59 - - - apps/client/src/app/app.component.ts - 60 - - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/app.component.ts - 63 - - - apps/client/src/app/components/header/header.component.ts - 77 - - - apps/client/src/app/components/header/header.component.ts - 82 - - - apps/client/src/app/core/paths.ts - 2 - - - apps/client/src/app/pages/about/about-page.component.ts - 45 - - - apps/client/src/app/pages/about/about-page.component.ts - 50 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - apps/client/src/app/pages/about/about-page.component.ts - 74 - - - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 13 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 - - - - privacy-policy - privacybeleid - - apps/client/src/app/app.component.ts - 64 - - - apps/client/src/app/core/paths.ts - 8 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - - license - licentie - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/core/paths.ts - 5 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - - markets - markten - - apps/client/src/app/app.component.ts - 68 - - - apps/client/src/app/components/header/header.component.ts - 79 - - - apps/client/src/app/components/header/header.component.ts - 84 - - - apps/client/src/app/core/paths.ts - 6 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 14 - - - - pricing - prijzen - - apps/client/src/app/app.component.ts - 69 - - - apps/client/src/app/components/header/header.component.ts - 80 - - - apps/client/src/app/components/header/header.component.ts - 85 - - - apps/client/src/app/components/home-summary/home-summary.component.ts - 125 - - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 - - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 38 - - - apps/client/src/app/core/http-response.interceptor.ts - 83 - - - apps/client/src/app/core/paths.ts - 7 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 16 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 15 - - - libs/ui/src/lib/membership-card/membership-card.component.ts - 25 - - - - register - registratie - - apps/client/src/app/app.component.ts - 70 - - - apps/client/src/app/components/header/header.component.ts - 86 - - - apps/client/src/app/core/auth.guard.ts - 55 - - - apps/client/src/app/core/paths.ts - 9 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 16 - - - apps/client/src/app/pages/features/features-page.component.ts - 31 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 27 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 36 - - - - resources - bronnen - - apps/client/src/app/app.component.ts - 71 - - - apps/client/src/app/components/header/header.component.ts - 81 - - - apps/client/src/app/components/header/header.component.ts - 87 - - - apps/client/src/app/core/paths.ts - 10 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/features/features-page.component.ts - 32 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 19 - - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - Deze overzichtspagina bevat een verzameling tools voor persoonlijke financiën vergeleken met het open source alternatief Ghostfolio. Als je waarde hecht aan transparantie, gegevensprivacy en samenwerking binnen een gemeenschap, biedt Ghostfolio een uitstekende mogelijkheid om je financieel beheer in eigen hand te nemen. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8 - - - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Bekijk de links hieronder om verschillende persoonlijke financiële tools met Ghostfolio te vergelijken. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16 - - - - Open Source Alternative to - Open Source alternatief voor - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 38 - - - - Open Source Alternative to - Open Source alternatief voor - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 26 - - - - The Open Source Alternative to - Open Source alternatief voor - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Ben je op zoek naar een open source alternatief voor ? Ghostfolio is een krachtige tool voor portefeuillebeheer die particulieren een uitgebreid platform biedt om hun beleggingen bij te houden, te analyseren en te optimaliseren. Of je nu een ervaren belegger bent of net begint, Ghostfolio biedt een intuïtieve gebruikersinterface en uitgebreide functionaliteiten om je te helpen weloverwogen beslissingen te nemen en je financiële toekomst in eigen handen te nemen. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is open source software (OSS) en biedt een kosteneffectief alternatief voor waardoor het bijzonder geschikt is voor mensen met een krap budget, zoals degenen Financiële onafhankelijkheid nastreven, vroeg met pensioen gaan (FIRE). Door gebruik te maken van de collectieve inspanningen van een gemeenschap van ontwikkelaars en liefhebbers van persoonlijke financiën, verbetert Ghostfolio voortdurend de mogelijkheden, veiligheid en gebruikerservaring. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Laten we eens dieper duiken in de gedetailleerde vergelijkingstabel hieronder om een beter begrip te krijgen hoe Ghostfolio zichzelf positioneert ten opzichte van . We gaan in op verschillende aspecten zoals functies, gegevensprivacy, prijzen en meer, zodat je een weloverwogen keuze kunt maken voor jouw persoonlijke behoeften. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - - open-source-alternative-to - open-source-alternatief-voor - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 23 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 - - - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Houd er rekening mee dat de verstrekte informatie gebaseerd is op ons onafhankelijk onderzoek en analyse. Deze website is niet gelieerd aan of een ander product dat in de vergelijking wordt genoemd. Aangezien het landschap van tools voor persoonlijke financiën evolueert, is het essentieel om specifieke details of wijzigingen rechtstreeks op de betreffende productpagina te controleren. Hebben je gegevens een opfrisbeurt nodig? Help ons nauwkeurige gegevens te onderhouden over GitHub. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - - Ready to take your investments to the next level? - Klaar om je investeringen naar een hoger niveau te brengen? - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - - Get Started - Aan de slag - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - - Switzerland - Zwitserland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 80 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 590 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 650 - - - - Global - Wereldwijd - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 81 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 360 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 502 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 651 - - - - United States - Verenigde Staten - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 101 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 167 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 218 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 240 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 302 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 324 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 335 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 371 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 469 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 479 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 489 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 578 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 601 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 639 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 661 - - - - Belgium - België - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 187 - - - - Germany - Duitsland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 198 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 292 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 313 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 358 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 415 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 532 - - - - Austria - Oostenrijk - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 270 - - - - Italy - Italië - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 - - - - Netherlands - Nederland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 436 - - - - Thailand - Thailand - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 458 - - - - New Zealand - Nieuw-Zeeland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 500 - - - - Czech Republic - Tsjechië - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 511 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 568 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 611 - - - - (Last 24 hours) - (Laatste 24 uur) - - apps/client/src/app/pages/open/open-page.html - 37 - - - - (Last 30 days) - (Laatste 30 dagen) - - apps/client/src/app/pages/open/open-page.html - 48 - - - apps/client/src/app/pages/open/open-page.html - 59 - - - - (Last 90 days) - (Laatste 90 dagen) - - apps/client/src/app/pages/open/open-page.html - 127 - - - - Choose or drop a file here - Choose or drop a file here - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 - - - - You are using the Live Demo. - You are using the Live Demo. - - apps/client/src/app/app.component.html - 17 - - - - One-time fee, annual account fees - One-time fee, annual account fees - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 - - - - Distribution of corporate earnings - Distribution of corporate earnings - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 - - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 - - - - Fee - Fee - - libs/ui/src/lib/i18n.ts - 33 - - - - Interest - Interest - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 318 - - - - Revenue for lending out money - Revenue for lending out money - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 - - - - Add Tag - Add Tag - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 - - - - Do you really want to delete this tag? - Do you really want to delete this tag? - - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 79 - - - - Update tag - Update tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 - - - - Add tag - Add tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 - - - - France - France - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 522 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 547 - - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 111 - - - - Currency Cluster Risks - Currency Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 - - - - Account Cluster Risks - Account Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 - - - - Transfer Cash Balance - Transfer Cash Balance - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 - - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 - - - - Benchmark - Benchmark - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 284 - - - - Version - Version - - apps/client/src/app/components/admin-overview/admin-overview.html - 7 - - - - Settings - Settings - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 - - - - From - From - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 - - - - To - To - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 - - - - Transfer - Transfer - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 - - - - Finland - Finland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 539 - - - - Membership - Membership - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 23 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 40 - - - - Access - Access - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 28 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 46 - - - - Find holding... - Find holding... - - libs/ui/src/lib/assistant/assistant.component.ts - 138 - - - - No entries... - No entries... - - libs/ui/src/lib/assistant/assistant.html - 63 - - - libs/ui/src/lib/assistant/assistant.html - 84 - - - - Asset Profile - Asset Profile - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 - - - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? - - apps/client/src/app/components/admin-market-data/admin-market-data.service.ts - 13 - - - - Search - Search - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 - - - - Add Manually - Add Manually - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 - - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio is een persoonlijk financieel dashboard om uw activa zoals aandelen, ETF’s of cryptocurrencies over meerdere platforms bij te houden. - - apps/client/src/app/pages/i18n/i18n-page.html - 4 - - - - Last All Time High - Last All Time High - - libs/ui/src/lib/benchmark/benchmark.component.html - 65 - - - - User - User - - apps/client/src/app/components/admin-users/admin-users.html - 29 - - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - - Canada - Canada - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 631 - - - - Open Source Wealth Management Software - Open Source Wealth Management Software - - apps/client/src/app/pages/i18n/i18n-page.html - 14 - - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - - apps/client/src/app/pages/i18n/i18n-page.html - 9 - - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - - apps/client/src/app/pages/accounts/accounts-page.component.ts - 304 - - - - Poland - Poland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 139 - - - - South Africa - South Africa - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 259 - - - - Extreme Fear - Extreme Fear - - libs/ui/src/lib/i18n.ts - 69 - - - - Extreme Greed - Extreme Greed - - libs/ui/src/lib/i18n.ts - 70 - - - - Neutral - Neutral - - libs/ui/src/lib/i18n.ts - 73 - - - - Oops! Could not parse historical data. - Oops! Could not parse historical data. - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 232 - - - - Do you really want to delete this system message? - Do you really want to delete this system message? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 166 - - - - 50-Day Trend - 50-Day Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 15 - - - - 200-Day Trend - 200-Day Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 40 - - - - Cash Balances - Cash Balances - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 115 - - - - Starting from - Starting from - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + features + functionaliteiten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 67 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 83 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 24 + + + about + over - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 60 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 82 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 2 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 45 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 50 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 18 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 23 + + + privacy-policy + privacybeleid - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 64 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 8 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 + + + license + licentie - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 5 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 + + + markets + markten - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 68 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 84 - - - year - year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 6 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 14 + + + pricing + prijzen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 85 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/http-response.interceptor.ts + 72 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 7 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/membership-card/membership-card.component.ts + 25 + + + register + registratie - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 86 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/auth.guard.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 31 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/landing/landing-page.component.ts + 27 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 36 + + + resources + bronnen - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 71 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 10 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 32 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/resources-page.component.ts + 19 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + Deze overzichtspagina bevat een verzameling tools voor persoonlijke financiën vergeleken met het open source alternatief Ghostfolio. Als je waarde hecht aan transparantie, gegevensprivacy en samenwerking binnen een gemeenschap, biedt Ghostfolio een uitstekende mogelijkheid om je financieel beheer in eigen hand te nemen. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 + + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Bekijk de links hieronder om verschillende persoonlijke financiële tools met Ghostfolio te vergelijken. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + Open Source alternatief voor - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 42 + + + Open Source Alternative to + Open Source alternatief voor - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 27 + + + The Open Source Alternative to + Open Source alternatief voor - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Ben je op zoek naar een open source alternatief voor ? Ghostfolio is een krachtige tool voor portefeuillebeheer die particulieren een uitgebreid platform biedt om hun beleggingen bij te houden, te analyseren en te optimaliseren. Of je nu een ervaren belegger bent of net begint, Ghostfolio biedt een intuïtieve gebruikersinterface en uitgebreide functionaliteiten om je te helpen weloverwogen beslissingen te nemen en je financiële toekomst in eigen handen te nemen. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio is open source software (OSS) en biedt een kosteneffectief alternatief voor waardoor het bijzonder geschikt is voor mensen met een krap budget, zoals degenen Financiële onafhankelijkheid nastreven, vroeg met pensioen gaan (FIRE). Door gebruik te maken van de collectieve inspanningen van een gemeenschap van ontwikkelaars en liefhebbers van persoonlijke financiën, verbetert Ghostfolio voortdurend de mogelijkheden, veiligheid en gebruikerservaring. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 27 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Laten we eens dieper duiken in de gedetailleerde vergelijkingstabel hieronder om een beter begrip te krijgen hoe Ghostfolio zichzelf positioneert ten opzichte van . We gaan in op verschillende aspecten zoals functies, gegevensprivacy, prijzen en meer, zodat je een weloverwogen keuze kunt maken voor jouw persoonlijke behoeften. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 38 + + + open-source-alternative-to + open-source-alternatief-voor - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Houd er rekening mee dat de verstrekte informatie gebaseerd is op ons onafhankelijk onderzoek en analyse. Deze website is niet gelieerd aan of een ander product dat in de vergelijking wordt genoemd. Aangezien het landschap van tools voor persoonlijke financiën evolueert, is het essentieel om specifieke details of wijzigingen rechtstreeks op de betreffende productpagina te controleren. Hebben je gegevens een opfrisbeurt nodig? Help ons nauwkeurige gegevens te onderhouden over GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 210 + + + Ready to take your investments to the next level? + Klaar om je investeringen naar een hoger niveau te brengen? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 223 + + + Get Started + Aan de slag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 232 + + + Switzerland + Zwitserland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 58 + + + Global + Wereldwijd - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 59 + + + (Last 24 hours) + (Laatste 24 uur) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Laatste 30 dagen) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Laatste 90 dagen) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 127 + + + Choose or drop a file here + Choose or drop a file here - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 86 + + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + One-time fee, annual account fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 30 + + + Distribution of corporate earnings + Distribution of corporate earnings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 38 + + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 226 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 33 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 331 + + + Revenue for lending out money + Revenue for lending out money - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 46 + + + Add Tag + Add Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Do you really want to delete this tag? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 79 + + + Update tag + Update tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 7 + + + Add tag + Add tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 8 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 111 + + + Currency Cluster Risks + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 135 + + + Account Cluster Risks + Account Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 148 + + + Transfer Cash Balance + Transfer Cash Balance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 284 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 28 + + + Transfer + Transfer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 64 + + + Membership + Membership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 40 + + + Access + Access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 46 + + + Find holding... + Find holding... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.component.ts + 138 + + + No entries... + No entries... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 84 + + + Asset Profile + Asset Profile - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/admin-market-data.service.ts + 13 + + + Search + Search - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + Add Manually + Add Manually - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio is een persoonlijk financieel dashboard om uw activa zoals aandelen, ETF’s of cryptocurrencies over meerdere platforms bij te houden. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + Last All Time High + Last All Time High - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 65 + + + User + User - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs comparison table - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 49 + + + Open Source Wealth Management Software + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 9 + + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 304 + + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 69 + + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 70 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 73 + + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 232 + + + Do you really want to delete this system message? + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 166 + + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 + + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 40 + + + Cash Balances + Cash Balances - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 115 + + + Starting from + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 195 + + + year + year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 191 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 197 @@ -15698,7 +6166,7 @@ Permission apps/client/src/app/components/access-table/access-table.component.html - 17 + 18 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15710,7 +6178,7 @@ Restricted view apps/client/src/app/components/access-table/access-table.component.html - 25 + 26 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15858,7 +6326,7 @@ View apps/client/src/app/components/access-table/access-table.component.html - 22 + 23 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15986,7 +6454,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 - 107 + 96 @@ -16050,7 +6518,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 70 + 61 @@ -16133,36 +6601,20 @@ 278 - - Australia - Australia - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 403 - - - - Bulgaria - Bulgaria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 558 - - By ETF Holding By ETF Holding apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 342 + 333 - - Approximation based on the Top 15 holdings per ETF - Approximation based on the Top 15 holdings per ETF + + Approximation based on the top holdings of each ETF + Approximation based on the top holdings of each ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 350 + 340 diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index f3f382f9e..4b7771dc7 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -78,15570 +78,6038 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 18 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 23 + + + faq + faq - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + apps/client/src/app/app.component.ts + 66 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 3 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + features + features - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + apps/client/src/app/app.component.ts + 67 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 83 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 4 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 26 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 24 + + + license + license - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 5 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 55 + + + markets + markets - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + apps/client/src/app/app.component.ts + 68 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 84 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 6 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 26 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 14 + + + pricing + pricing - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + apps/client/src/app/app.component.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 85 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + apps/client/src/app/core/http-response.interceptor.ts + 72 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 7 - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 26 + libs/ui/src/lib/membership-card/membership-card.component.ts + 25 + + + privacy-policy + privacy-policy - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 26 + apps/client/src/app/app.component.ts + 64 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 8 - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 63 + + + register + register - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + apps/client/src/app/app.component.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 86 - - - faq - faq - apps/client/src/app/app.component.ts - 66 + apps/client/src/app/core/auth.guard.ts + 55 apps/client/src/app/core/paths.ts - 3 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 + 9 - apps/client/src/app/pages/faq/faq-page.component.ts - 37 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 16 - apps/client/src/app/pages/faq/faq-page.component.ts - 42 + apps/client/src/app/pages/features/features-page.component.ts + 31 - apps/client/src/app/pages/faq/faq-page.component.ts - 48 + apps/client/src/app/pages/landing/landing-page.component.ts + 27 - apps/client/src/app/pages/resources/resources-page.component.ts - 17 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 36 - - features - features + + resources + resources apps/client/src/app/app.component.ts - 67 + 71 apps/client/src/app/components/header/header.component.ts - 78 + 81 apps/client/src/app/components/header/header.component.ts - 83 + 87 apps/client/src/app/core/paths.ts - 4 + 10 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts 13 apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 + 14 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 + apps/client/src/app/pages/features/features-page.component.ts + 32 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 26 - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 14 + apps/client/src/app/pages/resources/resources-page.component.ts + 19 + + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts - 14 + apps/client/src/app/app.component.html + 17 + + + Create Account + Create Account - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 + apps/client/src/app/app.component.html + 18 - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 27 + apps/client/src/app/pages/register/register-page.html + 26 - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 27 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 2 + + + Personal Finance + Personal Finance - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 27 + apps/client/src/app/app.component.html + 55 + + + Markets + Markets - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 27 + apps/client/src/app/app.component.html + 58 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 386 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 27 + apps/client/src/app/components/home-market/home-market.html + 2 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 27 + apps/client/src/app/pages/resources/resources-page.html + 56 + + + Resources + Resources - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 27 + apps/client/src/app/app.component.html + 60 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 289 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 27 + apps/client/src/app/pages/resources/resources-page.html + 4 + + + About + About - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 27 + apps/client/src/app/app.component.html + 66 - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 357 + + + Blog + Blog - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 27 + apps/client/src/app/app.component.html + 68 - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 27 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html + 204 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 27 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/07/ghostfolio-meets-internet-identity/ghostfolio-meets-internet-identity-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html + 209 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html + 195 - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/10/hacktoberfest-2022/hacktoberfest-2022-page.html + 181 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/12/the-importance-of-tracking-your-personal-finances/the-importance-of-tracking-your-personal-finances-page.html + 168 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/01/ghostfolio-auf-sackgeld-vorgestellt/ghostfolio-auf-sackgeld-vorgestellt-page.html + 178 - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/02/ghostfolio-meets-umbrel/ghostfolio-meets-umbrel-page.html + 202 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html + 252 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html + 233 - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.html + 243 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.html + 154 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.html + 273 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html + 181 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.html + 148 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.html + 270 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 27 + apps/client/src/app/pages/blog/blog-page.html + 5 + + + Changelog + Changelog - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 27 + apps/client/src/app/app.component.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 27 + apps/client/src/app/pages/about/changelog/changelog-page.html + 4 + + + Features + Features - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 27 + apps/client/src/app/app.component.html + 73 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 344 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 27 + apps/client/src/app/pages/features/features-page.html + 5 + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 27 + apps/client/src/app/app.component.html + 76 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 27 + apps/client/src/app/pages/about/overview/about-overview-page.html + 146 + + + License + License - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 27 + apps/client/src/app/app.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 27 + apps/client/src/app/pages/about/license/license-page.html + 4 + + + Pricing + Pricing - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 27 + apps/client/src/app/app.component.html + 86 - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 98 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 301 - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 370 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 188 + + + Privacy Policy + Privacy Policy - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 27 + apps/client/src/app/app.component.html + 90 - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 27 + apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html + 4 + + + Community + Community - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 27 + apps/client/src/app/app.component.html + 105 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 81 - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 86 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 90 - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 94 - - - license - license - apps/client/src/app/app.component.ts - 61 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 98 - apps/client/src/app/core/paths.ts - 5 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 103 - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - - markets - markets - - apps/client/src/app/app.component.ts - 68 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 108 - apps/client/src/app/components/header/header.component.ts - 79 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 112 - apps/client/src/app/components/header/header.component.ts - 84 + apps/client/src/app/pages/features/features-page.html + 256 + + + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. - apps/client/src/app/core/paths.ts - 6 + apps/client/src/app/app.component.html + 182 + + + Alias + Alias - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 + apps/client/src/app/components/access-table/access-table.component.html + 4 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 11 + + + Grantee + Grantee - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 14 + apps/client/src/app/components/access-table/access-table.component.html + 11 - - pricing - pricing + + Type + Type - apps/client/src/app/app.component.ts - 69 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 28 - apps/client/src/app/components/header/header.component.ts - 80 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 22 - apps/client/src/app/components/header/header.component.ts - 85 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 12 - apps/client/src/app/components/home-summary/home-summary.component.ts - 125 + libs/ui/src/lib/activities-table/activities-table.component.html + 160 + + + Details + Details - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 + apps/client/src/app/components/access-table/access-table.component.html + 33 + + + Revoke + Revoke - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 38 + apps/client/src/app/components/access-table/access-table.component.html + 63 + + + Do you really want to revoke this granted access? + Do you really want to revoke this granted access? - apps/client/src/app/core/http-response.interceptor.ts - 83 + apps/client/src/app/components/access-table/access-table.component.ts + 50 + + + Cash Balance + Cash Balance - apps/client/src/app/core/paths.ts - 7 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 45 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 130 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 34 + + + Equity + Equity - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 56 + + + Activities + Activities - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 61 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 16 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 90 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 113 - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 16 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 150 - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 15 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 44 - libs/ui/src/lib/membership-card/membership-card.component.ts - 25 + apps/client/src/app/components/admin-users/admin-users.html + 134 - - - privacy-policy - privacy-policy - apps/client/src/app/app.component.ts - 64 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 221 - apps/client/src/app/core/paths.ts - 8 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 331 - apps/client/src/app/pages/about/about-page.component.ts - 63 + apps/client/src/app/pages/portfolio/activities/activities-page.html + 4 - - register - register + + Platform + Platform - apps/client/src/app/app.component.ts - 70 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 65 - apps/client/src/app/components/header/header.component.ts - 86 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 81 - apps/client/src/app/core/auth.guard.ts - 55 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 48 + + + Transfer Cash Balance + Transfer Cash Balance - apps/client/src/app/core/paths.ts + apps/client/src/app/components/accounts-table/accounts-table.component.html 9 - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 16 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Name + Name - apps/client/src/app/pages/features/features-page.component.ts - 31 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 39 - apps/client/src/app/pages/landing/landing-page.component.ts - 27 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 36 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 226 - - - resources - resources - apps/client/src/app/app.component.ts - 71 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 30 - apps/client/src/app/components/header/header.component.ts - 81 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 12 - apps/client/src/app/components/header/header.component.ts - 87 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 30 - apps/client/src/app/core/paths.ts - 10 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 12 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 15 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 134 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts - 13 + libs/ui/src/lib/activities-table/activities-table.component.html + 137 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 28 - apps/client/src/app/pages/features/features-page.component.ts - 32 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 12 + + + Total + Total - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 50 + + + Currency + Currency - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 60 - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 233 - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 29 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 140 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 275 + + + Value + Value - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 165 - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 200 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 29 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 194 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 195 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 197 - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 257 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 258 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 259 - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 260 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 29 + libs/ui/src/lib/account-balances/account-balances.component.html + 34 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 256 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 292 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 29 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 74 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 29 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 26 + + + Edit + Edit - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 271 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 175 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 29 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 91 - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 29 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 429 + + + Delete + Delete - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 281 - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 194 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 62 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 90 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 199 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 29 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 101 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 29 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 81 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 29 + libs/ui/src/lib/account-balances/account-balances.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 455 + + + Do you really want to delete this account? + Do you really want to delete this account? - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.ts + 101 + + + Asset Profile + Asset Profile - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + Historical Market Data + Historical Market Data - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 37 + + + Symbol + Symbol - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 24 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 115 - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 34 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 29 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 301 + + + Data Source + Data Source - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 54 - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 51 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 125 - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 150 + + + Attempts + Attempts - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 82 + + + Created + Created - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 91 + + + Finished + Finished - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 100 + + + Status + Status - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 109 + + + Delete Jobs + Delete Jobs - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 158 + + + View Data + View Data - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 173 + + + View Stacktrace + View Stacktrace - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 180 + + + Delete Job + Delete Job - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 186 + + + Details for + Details for - apps/client/src/app/pages/resources/resources-page.component.ts - 19 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 2 - - You are using the Live Demo. - You are using the Live Demo. + + Date + Date - apps/client/src/app/app.component.html - 17 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 6 - - - Create Account - Create Account - apps/client/src/app/app.component.html - 18 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 156 - apps/client/src/app/pages/register/register-page.html - 26 + libs/ui/src/lib/account-balances/account-balances.component.html + 12 - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 2 + libs/ui/src/lib/activities-table/activities-table.component.html + 169 - - Personal Finance - Personal Finance + + Market Price + Market Price - apps/client/src/app/app.component.html - 55 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 26 - - - Markets - Markets - apps/client/src/app/app.component.html - 58 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 112 + + + Cancel + Cancel - apps/client/src/app/components/header/header.component.html - 386 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 46 - apps/client/src/app/components/home-market/home-market.html - 2 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 376 - apps/client/src/app/pages/resources/resources-page.html - 56 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 40 - - - Resources - Resources - apps/client/src/app/app.component.html - 60 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 39 - apps/client/src/app/components/header/header.component.html - 80 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 22 - apps/client/src/app/components/header/header.component.html - 289 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 58 - apps/client/src/app/pages/resources/resources-page.html - 4 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 103 - - - About - About - apps/client/src/app/app.component.html - 66 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 57 - apps/client/src/app/components/header/header.component.html - 111 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 399 - apps/client/src/app/components/header/header.component.html - 357 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 38 - - Blog - Blog + + Save + Save - apps/client/src/app/app.component.html - 68 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 48 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 204 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 383 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html - 183 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 47 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.html - 183 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 46 - apps/client/src/app/pages/blog/2022/07/ghostfolio-meets-internet-identity/ghostfolio-meets-internet-identity-page.html - 183 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 29 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html - 209 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 65 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html - 195 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 110 - apps/client/src/app/pages/blog/2022/10/hacktoberfest-2022/hacktoberfest-2022-page.html - 181 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 406 + + + Currencies + Currencies - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html - 141 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 73 + + + ETFs without Countries + ETFs without Countries - apps/client/src/app/pages/blog/2022/12/the-importance-of-tracking-your-personal-finances/the-importance-of-tracking-your-personal-finances-page.html - 168 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 78 + + + ETFs without Sectors + ETFs without Sectors - apps/client/src/app/pages/blog/2023/01/ghostfolio-auf-sackgeld-vorgestellt/ghostfolio-auf-sackgeld-vorgestellt-page.html - 178 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 83 + + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? - apps/client/src/app/pages/blog/2023/02/ghostfolio-meets-umbrel/ghostfolio-meets-umbrel-page.html - 202 + apps/client/src/app/components/admin-market-data/admin-market-data.service.ts + 13 + + + Filter by... + Filter by... - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html - 252 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 282 + + + Asset Class + Asset Class - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html - 233 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 60 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.html - 243 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 159 - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.html - 154 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 243 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.html - 273 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 228 - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html - 181 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 326 + + + Asset Sub Class + Asset Sub Class - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.html - 148 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 69 - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.html - 270 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 168 - apps/client/src/app/pages/blog/blog-page.html - 5 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 256 - - - Changelog - Changelog - apps/client/src/app/app.component.html - 71 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 237 - apps/client/src/app/pages/about/changelog/changelog-page.html - 4 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 342 - - Features - Features + + First Activity + First Activity - apps/client/src/app/app.component.html - 73 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 78 - apps/client/src/app/components/header/header.component.html - 344 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 141 - apps/client/src/app/pages/features/features-page.html - 5 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 209 - - - Frequently Asked Questions (FAQ) - Frequently Asked Questions (FAQ) - apps/client/src/app/app.component.html - 76 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 50 + + + Activities Count + Activities Count - apps/client/src/app/pages/about/overview/about-overview-page.html - 146 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 87 - - License - License + + Historical Data + Historical Data - apps/client/src/app/app.component.html - 80 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 96 - apps/client/src/app/pages/about/license/license-page.html - 4 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 82 - - Pricing - Pricing + + Sectors Count + Sectors Count - apps/client/src/app/app.component.html - 86 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 105 + + + Countries Count + Countries Count - apps/client/src/app/components/header/header.component.html - 98 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 114 + + + Gather Recent Data + Gather Recent Data - apps/client/src/app/components/header/header.component.html - 301 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 144 + + + Gather All Data + Gather All Data - apps/client/src/app/components/header/header.component.html - 370 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 147 + + + Gather Profile Data + Gather Profile Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 150 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 45 + + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 232 + + + Refresh + Refresh - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 22 + + + Gather Historical Data + Gather Historical Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 32 + + + Import + Import - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 108 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 190 + + + Sector + Sector - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 254 + + + Country + Country - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 196 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-users/admin-users.html + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 264 + + + Sectors + Sectors - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 202 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 327 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/public/public-page.html + 45 + + + Countries + Countries - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 212 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 338 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 282 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 284 + + + Symbol Mapping + Symbol Mapping - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 290 + + + Scraper Configuration + Scraper Configuration - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 302 + + + Note + Note - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 363 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 311 + + + Add Asset Profile + Add Asset Profile - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 7 + + + Search + Search - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + Add Manually + Add Manually - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + Name, symbol or ISIN + Name, symbol or ISIN - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 25 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 120 + + + Please add a currency: + Please add a currency: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 122 + + + Do you really want to delete this coupon? + Do you really want to delete this coupon? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 140 + + + Do you really want to delete this currency? + Do you really want to delete this currency? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 153 + + + Do you really want to delete this system message? + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 166 + + + Do you really want to flush the cache? + Do you really want to flush the cache? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 183 + + + Please set your system message: + Please set your system message: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 214 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + User Count + User Count - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 13 + + + Activity Count + Activity Count - 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 - - - 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 - - - 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 + apps/client/src/app/components/admin-overview/admin-overview.html + 23 + + + per User + per User - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 32 + + + Exchange Rates + Exchange Rates - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 37 + + + Add Currency + Add Currency - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 104 + + + User Signup + User Signup - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 110 + + + Read-only Mode + Read-only Mode - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 123 + + + System Message + System Message - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 145 + + + Set Message + Set Message - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 165 + + + Coupons + Coupons - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 173 + + + Add + Add - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 231 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + libs/ui/src/lib/account-balances/account-balances.component.html + 93 + + + Housekeeping + Housekeeping - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 238 - - Privacy Policy - Privacy Policy + + Flush Cache + Flush Cache - apps/client/src/app/app.component.html - 90 + apps/client/src/app/components/admin-overview/admin-overview.html + 242 + + + Add Platform + Add Platform - apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html - 4 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 11 - - Community - Community + + Url + Url - apps/client/src/app/app.component.html - 105 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 350 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 50 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 86 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 22 + + + Accounts + Accounts - apps/client/src/app/components/user-account-settings/user-account-settings.html - 90 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 64 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 94 + apps/client/src/app/components/admin-users/admin-users.html + 113 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + apps/client/src/app/components/header/header.component.html + 54 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + apps/client/src/app/components/header/header.component.html + 262 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 108 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 357 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 + apps/client/src/app/pages/accounts/accounts-page.html + 4 - apps/client/src/app/pages/features/features-page.html - 256 + libs/ui/src/lib/assistant/assistant.html + 107 - - The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. - The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. + + Do you really want to delete this platform? + Do you really want to delete this platform? - apps/client/src/app/app.component.html - 182 + apps/client/src/app/components/admin-platform/admin-platform.component.ts + 79 - - Alias - Alias + + Update platform + Update platform - apps/client/src/app/components/access-table/access-table.component.html - 3 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 7 + + + Add platform + Add platform - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 11 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 8 - - Grantee - Grantee + + Platforms + Platforms - apps/client/src/app/components/access-table/access-table.component.html - 10 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 4 - - Type - Type + + Tags + Tags - apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 10 - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 22 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 355 - libs/ui/src/lib/activities-table/activities-table.component.html - 160 + libs/ui/src/lib/assistant/assistant.html + 127 - - Details - Details + + Add Tag + Add Tag - apps/client/src/app/components/access-table/access-table.component.html - 32 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 - - Revoke - Revoke + + Do you really want to delete this tag? + Do you really want to delete this tag? - apps/client/src/app/components/access-table/access-table.component.html - 59 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 79 - - Do you really want to revoke this granted access? - Do you really want to revoke this granted access? + + Update tag + Update tag - apps/client/src/app/components/access-table/access-table.component.ts - 50 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 7 - - Cash Balance - Cash Balance + + Add tag + Add tag - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 45 - - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 117 - - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 34 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 8 - - Equity - Equity + + Do you really want to delete this user? + Do you really want to delete this user? - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 56 + apps/client/src/app/components/admin-users/admin-users.component.ts + 113 - - Activities - Activities + + User + User - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 61 + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Registration + Registration - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 90 + apps/client/src/app/components/admin-users/admin-users.html + 96 + + + Engagement per Day + Engagement per Day - apps/client/src/app/components/accounts-table/accounts-table.component.html - 100 + apps/client/src/app/components/admin-users/admin-users.html + 158 + + + Last Request + Last Request - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 150 + apps/client/src/app/components/admin-users/admin-users.html + 183 + + + Impersonate User + Impersonate User - apps/client/src/app/components/admin-tag/admin-tag.component.html - 44 + apps/client/src/app/components/admin-users/admin-users.html + 222 + + + Delete User + Delete User apps/client/src/app/components/admin-users/admin-users.html - 134 + 232 + + + Performance + Performance - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 221 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 6 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 331 + 89 - apps/client/src/app/pages/portfolio/activities/activities-page.html - 4 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 142 - - Platform - Platform + + Compare with... + Compare with... - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 65 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 19 + + + Manage Benchmarks + Manage Benchmarks - apps/client/src/app/components/accounts-table/accounts-table.component.html - 72 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 38 + + + Portfolio + Portfolio - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 48 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts + 116 - - - Transfer Cash Balance - Transfer Cash Balance - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts + 41 + + + Benchmark + Benchmark - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts + 128 - - Name - Name + + Current Market Mood + Current Market Mood - apps/client/src/app/components/accounts-table/accounts-table.component.html - 34 + apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html + 12 + + + Overview + Overview - apps/client/src/app/components/admin-market-data/admin-market-data.html - 38 + apps/client/src/app/components/header/header.component.html + 28 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 + apps/client/src/app/components/header/header.component.html + 244 + + + Portfolio + Portfolio - apps/client/src/app/components/admin-platform/admin-platform.component.html - 30 + apps/client/src/app/components/header/header.component.html + 41 - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + apps/client/src/app/components/header/header.component.html + 254 + + + Admin Control + Admin Control - apps/client/src/app/components/admin-tag/admin-tag.component.html - 30 + apps/client/src/app/components/header/header.component.html + 67 - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + apps/client/src/app/components/header/header.component.html + 278 + + + Me + Me - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 15 + apps/client/src/app/components/header/header.component.html + 211 + + + User + User - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + apps/client/src/app/components/header/header.component.html + 230 + + + My Ghostfolio + My Ghostfolio - libs/ui/src/lib/activities-table/activities-table.component.html - 137 + apps/client/src/app/components/header/header.component.html + 269 + + + About Ghostfolio + About Ghostfolio - libs/ui/src/lib/holdings-table/holdings-table.component.html - 28 + apps/client/src/app/components/header/header.component.html + 309 - libs/ui/src/lib/top-holdings/top-holdings.component.html - 11 + apps/client/src/app/pages/about/overview/about-overview-page.html + 5 - - Total - Total + + Sign in + Sign in - apps/client/src/app/components/accounts-table/accounts-table.component.html - 45 + apps/client/src/app/components/header/header.component.html + 399 - - - Currency - Currency - apps/client/src/app/components/accounts-table/accounts-table.component.html - 55 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 71 + + + Get started + Get started - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 130 + apps/client/src/app/components/header/header.component.html + 411 + + + Sign in + Sign in - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 233 + apps/client/src/app/app-routing.module.ts + 141 - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 25 + apps/client/src/app/components/header/header.component.ts + 229 + + + Oops! Incorrect Security Token. + Oops! Incorrect Security Token. - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + apps/client/src/app/components/header/header.component.ts + 243 - libs/ui/src/lib/activities-table/activities-table.component.html - 275 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 154 - - Value - Value - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 152 - + + Manage Activities + Manage Activities - apps/client/src/app/components/accounts-table/accounts-table.component.html - 187 + apps/client/src/app/components/home-holdings/home-holdings.html + 32 + + + Fear + Fear - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + apps/client/src/app/components/home-market/home-market.component.ts + 25 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + libs/ui/src/lib/i18n.ts + 71 + + + Greed + Greed - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + apps/client/src/app/components/home-market/home-market.component.ts + 26 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + libs/ui/src/lib/i18n.ts + 72 + + + Last Days + Last Days - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + apps/client/src/app/components/home-market/home-market.html + 6 + + + Welcome to Ghostfolio + Welcome to Ghostfolio - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + apps/client/src/app/components/home-overview/home-overview.html + 7 + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + apps/client/src/app/components/home-overview/home-overview.html + 8 + + + Setup your accounts + Setup your accounts - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + apps/client/src/app/components/home-overview/home-overview.html + 15 + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. - libs/ui/src/lib/account-balances/account-balances.component.html - 34 + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + Capture your activities + Capture your activities - libs/ui/src/lib/activities-table/activities-table.component.html - 256 + apps/client/src/app/components/home-overview/home-overview.html + 24 + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. - libs/ui/src/lib/activities-table/activities-table.component.html - 292 + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio - libs/ui/src/lib/holdings-table/holdings-table.component.html - 74 + apps/client/src/app/components/home-overview/home-overview.html + 33 + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. - libs/ui/src/lib/top-holdings/top-holdings.component.html - 25 + apps/client/src/app/components/home-overview/home-overview.html + 35 - - Edit - Edit + + Setup accounts + Setup accounts - apps/client/src/app/components/accounts-table/accounts-table.component.html - 254 + apps/client/src/app/components/home-overview/home-overview.html + 48 + + + Add activity + Add activity - apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + apps/client/src/app/components/home-overview/home-overview.html + 56 - apps/client/src/app/components/admin-overview/admin-overview.html - 80 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 8 + + + Summary + Summary - apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + apps/client/src/app/components/home-summary/home-summary.html + 2 + + + Total Amount + Total Amount - apps/client/src/app/components/admin-tag/admin-tag.component.html - 71 + apps/client/src/app/components/investment-chart/investment-chart.component.ts + 142 + + + Savings Rate + Savings Rate - libs/ui/src/lib/activities-table/activities-table.component.html - 429 + apps/client/src/app/components/investment-chart/investment-chart.component.ts + 214 - - Delete - Delete + + Security Token + Security Token - apps/client/src/app/components/accounts-table/accounts-table.component.html - 264 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 11 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 250 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 62 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 10 + + + or + or - apps/client/src/app/components/admin-overview/admin-overview.html - 90 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 31 - apps/client/src/app/components/admin-overview/admin-overview.html - 199 + apps/client/src/app/pages/landing/landing-page.html + 423 - apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 99 - apps/client/src/app/components/admin-tag/admin-tag.component.html - 81 + apps/client/src/app/pages/register/register-page.html + 29 - libs/ui/src/lib/account-balances/account-balances.component.html - 80 + apps/client/src/app/pages/webauthn/webauthn-page.html + 29 + + + Sign in with Internet Identity + Sign in with Internet Identity - libs/ui/src/lib/activities-table/activities-table.component.html - 455 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 42 - - Do you really want to delete this account? - Do you really want to delete this account? + + Sign in with Google + Sign in with Google - apps/client/src/app/components/accounts-table/accounts-table.component.ts - 101 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 52 - - Asset Profile - Asset Profile + + Stay signed in + Stay signed in - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 61 - - Historical Market Data - Historical Market Data + + Time in Market + Time in Market - apps/client/src/app/components/admin-jobs/admin-jobs.html - 37 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 3 - - Symbol - Symbol + + Buy + Buy - apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 31 + + + Sell + Sell - apps/client/src/app/components/admin-market-data/admin-market-data.html - 24 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 43 + + + Investment + Investment - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 115 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 165 - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 58 + + + Absolute Gross Performance + Absolute Gross Performance - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 301 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 70 - - Data Source - Data Source + + Gross Performance + Gross Performance - apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 85 + + + Fees + Fees - apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 199 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 125 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 108 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 161 - - Attempts - Attempts + + Absolute Net Performance + Absolute Net Performance - apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 126 - - Created - Created + + Net Performance + Net Performance - apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 141 - - Finished - Finished + + Total Assets + Total Assets - apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 167 - - Status - Status + + Valuables + Valuables - apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 180 - - Delete Jobs - Delete Jobs + + Emergency Fund + Emergency Fund - apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 192 - - - View Data - View Data - apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + apps/client/src/app/pages/features/features-page.html + 89 + + + apps/client/src/app/pages/portfolio/fire/fire-page.html + 122 - - View Stacktrace - View Stacktrace + + Cash + Cash - apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 226 - - Delete Job - Delete Job + + Assets + Assets - apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 239 - - Details for - Details for + + Buying Power + Buying Power - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 2 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 252 - - Date - Date + + Excluded from Analysis + Excluded from Analysis - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 6 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 264 + + + Liabilities + Liabilities - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 279 - libs/ui/src/lib/account-balances/account-balances.component.html - 12 + apps/client/src/app/pages/features/features-page.html + 102 + + + Net Worth + Net Worth - libs/ui/src/lib/activities-table/activities-table.component.html - 169 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 297 - - Market Price - Market Price + + Annualized Performance + Annualized Performance - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 26 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 309 + + + Interest + Interest - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 112 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 331 - - Cancel - Cancel + + Dividend + Dividend - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 46 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 177 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 376 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 343 - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + apps/client/src/app/pages/features/features-page.html + 63 - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 192 - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 255 + + + Please enter the amount of your emergency fund: + Please enter the amount of your emergency fund: - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts 58 + + + Change + Change - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 103 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 63 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + + + Average Unit Price + Average Unit Price - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 101 + + + Minimum Price + Minimum Price - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 38 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 128 - - Save - Save + + Maximum Price + Maximum Price - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 48 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 144 + + + Quantity + Quantity - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 383 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 154 - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 - - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 179 - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 185 + + + Report Data Glitch + Report Data Glitch - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 65 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 395 + + + Are you an ambitious investor who needs the full picture? + Are you an ambitious investor who needs the full picture? - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 110 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 12 + + + Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: + Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 15 - - Currencies - Currencies + + Portfolio Summary + Portfolio Summary - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 73 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 22 - - - ETFs without Countries - ETFs without Countries - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 78 + apps/client/src/app/pages/pricing/pricing-page.html + 55 - - - ETFs without Sectors - ETFs without Sectors - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 83 + apps/client/src/app/pages/pricing/pricing-page.html + 199 - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? + + Portfolio Allocations + Portfolio Allocations - apps/client/src/app/components/admin-market-data/admin-market-data.service.ts - 13 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 26 - - - Filter by... - Filter by... - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 282 + apps/client/src/app/pages/features/features-page.html + 160 - - - Asset Class - Asset Class - apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + apps/client/src/app/pages/pricing/pricing-page.html + 59 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 + apps/client/src/app/pages/pricing/pricing-page.html + 203 + + + Performance Benchmarks + Performance Benchmarks - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 243 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 30 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 228 + apps/client/src/app/pages/pricing/pricing-page.html + 63 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + apps/client/src/app/pages/pricing/pricing-page.html + 207 - - Asset Sub Class - Asset Sub Class + + FIRE Calculator + FIRE Calculator - apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 34 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 168 + apps/client/src/app/pages/pricing/pricing-page.html + 67 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 256 + apps/client/src/app/pages/pricing/pricing-page.html + 211 + + + Professional Data Provider + Professional Data Provider - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 237 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 38 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + apps/client/src/app/pages/pricing/pricing-page.html + 226 - - First Activity - First Activity + + and more Features... + and more Features... - apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 42 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 141 + apps/client/src/app/pages/pricing/pricing-page.html + 83 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 209 + apps/client/src/app/pages/pricing/pricing-page.html + 231 + + + Get the tools to effectively manage your finances and refine your personal investment strategy. + Get the tools to effectively manage your finances and refine your personal investment strategy. - libs/ui/src/lib/holdings-table/holdings-table.component.html - 50 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 45 - - Activities Count - Activities Count + + Skip + Skip - apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 52 - - Historical Data - Historical Data + + Upgrade Plan + Upgrade Plan - apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + apps/client/src/app/components/header/header.component.html + 182 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 82 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 59 - - - Sectors Count - Sectors Count - apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 20 - - - Countries Count - Countries Count - apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + apps/client/src/app/pages/pricing/pricing-page.html + 268 - - Gather Recent Data - Gather Recent Data + + Today + Today - apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + apps/client/src/app/components/toggle/toggle.component.ts + 22 - - - Gather All Data - Gather All Data - apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + libs/ui/src/lib/assistant/assistant.component.ts + 215 - - Gather Profile Data - Gather Profile Data + + YTD + YTD - apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + apps/client/src/app/components/toggle/toggle.component.ts + 23 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 45 + libs/ui/src/lib/assistant/assistant.component.ts + 225 - - Oops! Could not parse historical data. - Oops! Could not parse historical data. + + 1Y + 1Y - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 232 + apps/client/src/app/components/toggle/toggle.component.ts + 24 - - - Refresh - Refresh - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 22 + libs/ui/src/lib/assistant/assistant.component.ts + 229 - - Gather Historical Data - Gather Historical Data - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 32 - - - - Import - Import - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 108 - + + 5Y + 5Y - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 + apps/client/src/app/components/toggle/toggle.component.ts + 25 - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 + libs/ui/src/lib/assistant/assistant.component.ts + 250 - - Sector - Sector + + Max + Max - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 185 + apps/client/src/app/components/toggle/toggle.component.ts + 26 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 254 + libs/ui/src/lib/assistant/assistant.component.ts + 253 - - Country - Country - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 196 - + + Grant access + Grant access - apps/client/src/app/components/admin-users/admin-users.html - 77 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 7 + + + Public + Public - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 264 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 25 - - Sectors - Sectors + + Granted Access + Granted Access - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 + apps/client/src/app/components/user-account-access/user-account-access.html + 5 + + + Please enter your coupon code: + Please enter your coupon code: - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 327 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 111 + + + Could not redeem coupon code + Could not redeem coupon code - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 270 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 121 + + + Coupon code has been redeemed + Coupon code has been redeemed - apps/client/src/app/pages/public/public-page.html - 45 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 133 - - Countries - Countries + + Reload + Reload - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 212 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 134 + + + per year + per year - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 338 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 41 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 282 + apps/client/src/app/pages/pricing/pricing-page.html + 254 - - Benchmark - Benchmark + + Try Premium + Try Premium - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 284 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 50 - - Symbol Mapping - Symbol Mapping + + Redeem Coupon + Redeem Coupon - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 290 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 63 - - Scraper Configuration - Scraper Configuration + + Auto + Auto - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 302 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 35 - - Note - Note - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 363 - + + Do you really want to remove this sign in method? + Do you really want to remove this sign in method? - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 78 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 230 + + + Settings + Settings - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 - - Add Asset Profile - Add Asset Profile + + Presenter View + Presenter View - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + apps/client/src/app/components/user-account-settings/user-account-settings.html 7 - - Search - Search + + Protection for sensitive information like absolute performances and quantity values + Protection for sensitive information like absolute performances and quantity values - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 8 - - Add Manually - Add Manually + + Base Currency + Base Currency - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 27 - - Name, symbol or ISIN - Name, symbol or ISIN + + Language + Language - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 50 + + + Locale + Locale - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 121 - - Please add a currency: - Please add a currency: + + Date and number format + Date and number format - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 122 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 123 - - Do you really want to delete this coupon? - Do you really want to delete this coupon? + + Appearance + Appearance - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 146 - - Do you really want to delete this currency? - Do you really want to delete this currency? + + Auto + Auto - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 153 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 160 - - Do you really want to delete this system message? - Do you really want to delete this system message? + + Light + Light - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 166 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 161 - - Do you really want to flush the cache? - Do you really want to flush the cache? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 183 - - - - Please set your system message: - Please set your system message: - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 214 - - - - Version - Version - - apps/client/src/app/components/admin-overview/admin-overview.html - 7 - - - - User Count - User Count - - apps/client/src/app/components/admin-overview/admin-overview.html - 13 - - - - Activity Count - Activity Count - - apps/client/src/app/components/admin-overview/admin-overview.html - 23 - - - - per User - per User - - apps/client/src/app/components/admin-overview/admin-overview.html - 32 - - - - Exchange Rates - Exchange Rates - - apps/client/src/app/components/admin-overview/admin-overview.html - 37 - - - - Add Currency - Add Currency - - apps/client/src/app/components/admin-overview/admin-overview.html - 104 - - - - User Signup - User Signup - - apps/client/src/app/components/admin-overview/admin-overview.html - 110 - - - - Read-only Mode - Read-only Mode - - apps/client/src/app/components/admin-overview/admin-overview.html - 123 - - - - System Message - System Message - - apps/client/src/app/components/admin-overview/admin-overview.html - 145 - - - - Set Message - Set Message - - apps/client/src/app/components/admin-overview/admin-overview.html - 165 - - - - Coupons - Coupons - - apps/client/src/app/components/admin-overview/admin-overview.html - 173 - - - - Add - Add - - apps/client/src/app/components/admin-overview/admin-overview.html - 231 - - - libs/ui/src/lib/account-balances/account-balances.component.html - 93 - - - - Housekeeping - Housekeeping - - apps/client/src/app/components/admin-overview/admin-overview.html - 238 - - - - Flush Cache - Flush Cache - - apps/client/src/app/components/admin-overview/admin-overview.html - 242 - - - - Add Platform - Add Platform - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 11 - - - - Url - Url - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 350 - - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 - - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 - - - - Accounts - Accounts - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 - - - apps/client/src/app/components/admin-users/admin-users.html - 113 - - - apps/client/src/app/components/header/header.component.html - 54 - - - apps/client/src/app/components/header/header.component.html - 262 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 357 - - - apps/client/src/app/pages/accounts/accounts-page.html - 4 - - - libs/ui/src/lib/assistant/assistant.html - 107 - - - - Do you really want to delete this platform? - Do you really want to delete this platform? - - apps/client/src/app/components/admin-platform/admin-platform.component.ts - 79 - - - - Update platform - Update platform - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 - - - - Add platform - Add platform - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 - - - - Platforms - Platforms - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 4 - - - - Tags - Tags - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 10 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 377 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 - - - libs/ui/src/lib/assistant/assistant.html - 127 - - - - Add Tag - Add Tag - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 - - - - Do you really want to delete this tag? - Do you really want to delete this tag? - - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 79 - - - - Update tag - Update tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 - - - - Add tag - Add tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 - - - - Do you really want to delete this user? - Do you really want to delete this user? - - apps/client/src/app/components/admin-users/admin-users.component.ts - 113 - - - - User - User - - apps/client/src/app/components/admin-users/admin-users.html - 29 - - - - Registration - Registration - - apps/client/src/app/components/admin-users/admin-users.html - 96 - - - - Engagement per Day - Engagement per Day - - apps/client/src/app/components/admin-users/admin-users.html - 158 - - - - Last Request - Last Request - - apps/client/src/app/components/admin-users/admin-users.html - 183 - - - - Impersonate User - Impersonate User - - apps/client/src/app/components/admin-users/admin-users.html - 222 - - - - Delete User - Delete User - - apps/client/src/app/components/admin-users/admin-users.html - 232 - - - - Performance - Performance - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 6 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 89 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 142 - - - - Compare with... - Compare with... - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 - - - - Manage Benchmarks - Manage Benchmarks - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 - - - - Portfolio - Portfolio - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 116 - - - apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 41 - - - - Benchmark - Benchmark - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 128 - - - - Current Market Mood - Current Market Mood - - apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html - 12 - - - - Overview - Overview - - apps/client/src/app/components/header/header.component.html - 28 - - - apps/client/src/app/components/header/header.component.html - 244 - - - - Portfolio - Portfolio - - apps/client/src/app/components/header/header.component.html - 41 - - - apps/client/src/app/components/header/header.component.html - 254 - - - - Admin Control - Admin Control - - apps/client/src/app/components/header/header.component.html - 67 - - - apps/client/src/app/components/header/header.component.html - 278 - - - - Me - Me - - apps/client/src/app/components/header/header.component.html - 211 - - - - User - User - - apps/client/src/app/components/header/header.component.html - 230 - - - - My Ghostfolio - My Ghostfolio - - apps/client/src/app/components/header/header.component.html - 269 - - - - About Ghostfolio - About Ghostfolio - - apps/client/src/app/components/header/header.component.html - 309 - - - apps/client/src/app/pages/about/overview/about-overview-page.html - 5 - - - - Sign in - Sign in - - apps/client/src/app/components/header/header.component.html - 399 - - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 71 - - - - Get started - Get started - - apps/client/src/app/components/header/header.component.html - 411 - - - - Sign in - Sign in - - apps/client/src/app/app-routing.module.ts - 141 - - - apps/client/src/app/components/header/header.component.ts - 229 - - - - Oops! Incorrect Security Token. - Oops! Incorrect Security Token. - - apps/client/src/app/components/header/header.component.ts - 243 - - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 154 - - - - Manage Activities - Manage Activities - - apps/client/src/app/components/home-holdings/home-holdings.html - 32 - - - - Fear - Fear - - apps/client/src/app/components/home-market/home-market.component.ts - 25 - - - libs/ui/src/lib/i18n.ts - 71 - - - - Greed - Greed - - apps/client/src/app/components/home-market/home-market.component.ts - 26 - - - libs/ui/src/lib/i18n.ts - 72 - - - - Last Days - Last Days - - apps/client/src/app/components/home-market/home-market.html - 6 - - - - Welcome to Ghostfolio - Welcome to Ghostfolio - - apps/client/src/app/components/home-overview/home-overview.html - 7 - - - - Ready to take control of your personal finances? - Ready to take control of your personal finances? - - apps/client/src/app/components/home-overview/home-overview.html - 8 - - - - Setup your accounts - Setup your accounts - - apps/client/src/app/components/home-overview/home-overview.html - 15 - - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Get a comprehensive financial overview by adding your bank and brokerage accounts. - - apps/client/src/app/components/home-overview/home-overview.html - 17 - - - - Capture your activities - Capture your activities - - apps/client/src/app/components/home-overview/home-overview.html - 24 - - - - Record your investment activities to keep your portfolio up to date. - Record your investment activities to keep your portfolio up to date. - - apps/client/src/app/components/home-overview/home-overview.html - 26 - - - - Monitor and analyze your portfolio - Monitor and analyze your portfolio - - apps/client/src/app/components/home-overview/home-overview.html - 33 - - - - Track your progress in real-time with comprehensive analysis and insights. - Track your progress in real-time with comprehensive analysis and insights. - - apps/client/src/app/components/home-overview/home-overview.html - 35 - - - - Setup accounts - Setup accounts - - apps/client/src/app/components/home-overview/home-overview.html - 48 - - - - Add activity - Add activity - - apps/client/src/app/components/home-overview/home-overview.html - 56 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 - - - - This feature requires a subscription. - This feature requires a subscription. - - apps/client/src/app/components/home-summary/home-summary.component.ts - 113 - - - apps/client/src/app/core/http-response.interceptor.ts - 69 - - - - Upgrade Plan - Upgrade Plan - - apps/client/src/app/components/home-summary/home-summary.component.ts - 115 - - - apps/client/src/app/core/http-response.interceptor.ts - 72 - - - - Summary - Summary - - apps/client/src/app/components/home-summary/home-summary.html - 2 - - - - Total Amount - Total Amount - - apps/client/src/app/components/investment-chart/investment-chart.component.ts - 142 - - - - Savings Rate - Savings Rate - - apps/client/src/app/components/investment-chart/investment-chart.component.ts - 214 - - - - Security Token - Security Token - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 11 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 - - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 10 - - - - or - or - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 31 - - - apps/client/src/app/pages/landing/landing-page.html - 423 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 - - - apps/client/src/app/pages/register/register-page.html - 29 - - - apps/client/src/app/pages/webauthn/webauthn-page.html - 29 - - - - Sign in with Internet Identity - Sign in with Internet Identity - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 42 - - - - Sign in with Google - Sign in with Google - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 52 - - - - Stay signed in - Stay signed in - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 61 - - - - Time in Market - Time in Market - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 3 - - - - Buy - Buy - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 31 - - - - Sell - Sell - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 43 - - - - Investment - Investment - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 165 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 58 - - - - Absolute Gross Performance - Absolute Gross Performance - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 70 - - - - Gross Performance - Gross Performance - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 85 - - - - Fees - Fees - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 199 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 108 - - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 - - - - Absolute Net Performance - Absolute Net Performance - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 124 - - - - Net Performance - Net Performance - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 139 - - - - Total Assets - Total Assets - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 165 - - - - Valuables - Valuables - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 178 - - - - Emergency Fund - Emergency Fund - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 - - - apps/client/src/app/pages/features/features-page.html - 89 - - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 122 - - - - Cash - Cash - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 211 - - - - Assets - Assets - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 224 - - - - Buying Power - Buying Power - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 237 - - - - Excluded from Analysis - Excluded from Analysis - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 249 - - - - Liabilities - Liabilities - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 264 - - - apps/client/src/app/pages/features/features-page.html - 102 - - - - Net Worth - Net Worth - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 284 - - - - Annualized Performance - Annualized Performance - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 296 - - - - Interest - Interest - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 318 - - - - Dividend - Dividend - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 177 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 330 - - - apps/client/src/app/pages/features/features-page.html - 63 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 - - - - Please enter the amount of your emergency fund: - Please enter the amount of your emergency fund: - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 57 - - - - Change - Change - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 63 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 - - - - Average Unit Price - Average Unit Price - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 101 - - - - Minimum Price - Minimum Price - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 128 - - - - Maximum Price - Maximum Price - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 144 - - - - Quantity - Quantity - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 154 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 185 - - - - Report Data Glitch - Report Data Glitch - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 395 - - - - Are you an ambitious investor who needs the full picture? - Are you an ambitious investor who needs the full picture? - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 12 - - - - Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: - Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15 - - - - Portfolio Summary - Portfolio Summary - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 22 - - - apps/client/src/app/pages/pricing/pricing-page.html - 55 - - - apps/client/src/app/pages/pricing/pricing-page.html - 199 - - - - Portfolio Allocations - Portfolio Allocations - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 26 - - - apps/client/src/app/pages/features/features-page.html - 160 - - - apps/client/src/app/pages/pricing/pricing-page.html - 59 - - - apps/client/src/app/pages/pricing/pricing-page.html - 203 - - - - Performance Benchmarks - Performance Benchmarks - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 30 - - - apps/client/src/app/pages/pricing/pricing-page.html - 63 - - - apps/client/src/app/pages/pricing/pricing-page.html - 207 - - - - FIRE Calculator - FIRE Calculator - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 34 - - - apps/client/src/app/pages/pricing/pricing-page.html - 67 - - - apps/client/src/app/pages/pricing/pricing-page.html - 211 - - - - Professional Data Provider - Professional Data Provider - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 38 - - - apps/client/src/app/pages/pricing/pricing-page.html - 226 - - - - and more Features... - and more Features... - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 42 - - - apps/client/src/app/pages/pricing/pricing-page.html - 83 - - - apps/client/src/app/pages/pricing/pricing-page.html - 231 - - - - Get the tools to effectively manage your finances and refine your personal investment strategy. - Get the tools to effectively manage your finances and refine your personal investment strategy. - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 45 - - - - Skip - Skip - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 52 - - - - Upgrade Plan - Upgrade Plan - - apps/client/src/app/components/header/header.component.html - 182 - - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 59 - - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 - - - apps/client/src/app/pages/pricing/pricing-page.html - 268 - - - - Today - Today - - apps/client/src/app/components/toggle/toggle.component.ts - 22 - - - libs/ui/src/lib/assistant/assistant.component.ts - 215 - - - - YTD - YTD - - apps/client/src/app/components/toggle/toggle.component.ts - 23 - - - libs/ui/src/lib/assistant/assistant.component.ts - 225 - - - - 1Y - 1Y - - apps/client/src/app/components/toggle/toggle.component.ts - 24 - - - libs/ui/src/lib/assistant/assistant.component.ts - 229 - - - - 5Y - 5Y - - apps/client/src/app/components/toggle/toggle.component.ts - 25 - - - libs/ui/src/lib/assistant/assistant.component.ts - 250 - - - - Max - Max - - apps/client/src/app/components/toggle/toggle.component.ts - 26 - - - libs/ui/src/lib/assistant/assistant.component.ts - 253 - - - - Grant access - Grant access - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 7 - - - - Public - Public - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 25 - - - - Granted Access - Granted Access - - apps/client/src/app/components/user-account-access/user-account-access.html - 5 - - - - Please enter your coupon code: - Please enter your coupon code: - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 111 - - - - Could not redeem coupon code - Could not redeem coupon code - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 121 - - - - Coupon code has been redeemed - Coupon code has been redeemed - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 133 - - - - Reload - Reload - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 134 - - - - per year - per year - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 - - - apps/client/src/app/pages/pricing/pricing-page.html - 254 - - - - Try Premium - Try Premium - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 - - - - Redeem Coupon - Redeem Coupon - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 - - - - Auto - Auto - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 35 - - - - Do you really want to remove this sign in method? - Do you really want to remove this sign in method? - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 230 - - - - Settings - Settings - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 - - - - Presenter View - Presenter View - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 7 - - - - Protection for sensitive information like absolute performances and quantity values - Protection for sensitive information like absolute performances and quantity values - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 8 - - - - Base Currency - Base Currency - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 27 - - - - Language - Language - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 - - - - Locale - Locale - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 - - - - Date and number format - Date and number format - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 - - - - Appearance - Appearance - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 - - - - Auto - Auto - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 - - - - Light - Light - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 - - - - Dark - Dark - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 - - - - Zen Mode - Zen Mode - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 - - - apps/client/src/app/pages/features/features-page.html - 190 - - - - Distraction-free experience for turbulent times - Distraction-free experience for turbulent times - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 - - - - Biometric Authentication - Biometric Authentication - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 - - - - Sign in with fingerprint - Sign in with fingerprint - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 - - - - Experimental Features - Experimental Features - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 - - - - Sneak peek at upcoming functionality - Sneak peek at upcoming functionality - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 - - - - User ID - User ID - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 45 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 - - - - Export Data - Export Data - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 - - - - This feature is currently unavailable. - This feature is currently unavailable. - - apps/client/src/app/core/http-response.interceptor.ts - 60 - - - - Please try again later. - Please try again later. - - apps/client/src/app/core/http-response.interceptor.ts - 62 - - - apps/client/src/app/core/http-response.interceptor.ts - 91 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 138 - - - - Oops! Something went wrong. - Oops! Something went wrong. - - apps/client/src/app/core/http-response.interceptor.ts - 89 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 136 - - - - Okay - Okay - - apps/client/src/app/core/http-response.interceptor.ts - 92 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 139 - - - - About - About - - apps/client/src/app/pages/about/about-page-routing.module.ts - 51 - - - apps/client/src/app/pages/about/about-page.component.ts - 44 - - - apps/client/src/app/pages/about/overview/about-overview-page-routing.module.ts - 13 - - - - Changelog - Changelog - - apps/client/src/app/pages/about/about-page.component.ts - 49 - - - apps/client/src/app/pages/about/changelog/changelog-page-routing.module.ts - 13 - - - - License - License - - apps/client/src/app/pages/about/about-page.component.ts - 54 - - - apps/client/src/app/pages/about/license/license-page-routing.module.ts - 13 - - - - Privacy Policy - Privacy Policy - - apps/client/src/app/pages/about/about-page.component.ts - 62 - - - apps/client/src/app/pages/about/privacy-policy/privacy-policy-page-routing.module.ts - 13 - - - - Our - Our - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 - - - - Discover other exciting Open Source Software projects - Discover other exciting Open Source Software projects - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 - - - - Visit - Visit - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 - - - - Accounts - Accounts - - apps/client/src/app/pages/accounts/accounts-page-routing.module.ts - 13 - - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - - apps/client/src/app/pages/accounts/accounts-page.component.ts - 304 - - - - Update account - Update account - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 8 - - - - Add account - Add account - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 10 - - - - Account ID - Account ID - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 96 - - - - From - From - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 - - - - To - To - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 - - - - Transfer - Transfer - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 - - - - Admin Control - Admin Control - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 20 - - - - Market Data - Market Data - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 30 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 37 - - - - Settings - Settings - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 35 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 32 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 18 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 35 - - - - Users - Users - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 40 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 47 - - - - Overview - Overview - - apps/client/src/app/pages/admin/admin-page.component.ts - 27 - - - apps/client/src/app/pages/home/home-page.component.ts - 37 - - - apps/client/src/app/pages/zen/zen-page-routing.module.ts - 19 - - - apps/client/src/app/pages/zen/zen-page.component.ts - 34 - - - - Blog - Blog - - apps/client/src/app/pages/blog/blog-page-routing.module.ts - 13 - - - - Discover the latest Ghostfolio updates and insights on personal finance - Discover the latest Ghostfolio updates and insights on personal finance - - apps/client/src/app/pages/blog/blog-page.html - 7 - - - - As you are already logged in, you cannot access the demo account. - As you are already logged in, you cannot access the demo account. - - apps/client/src/app/pages/demo/demo-page.component.ts - 35 - - - - Frequently Asked Questions (FAQ) - Frequently Asked Questions (FAQ) - - apps/client/src/app/pages/faq/faq-page-routing.module.ts - 34 - - - apps/client/src/app/pages/faq/overview/faq-overview-page-routing.module.ts - 13 - - - - Frequently Asked Questions (FAQ) - Frequently Asked Questions (FAQ) - - apps/client/src/app/pages/faq/overview/faq-overview-page.html - 4 - - - apps/client/src/app/pages/faq/saas/saas-page.html - 4 - - - apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html - 4 - - - - Features - Features - - apps/client/src/app/app-routing.module.ts - 65 - - - - Check out the numerous features of Ghostfolio to manage your wealth - Check out the numerous features of Ghostfolio to manage your wealth - - apps/client/src/app/pages/features/features-page.html - 6 - - - - Stocks - Stocks - - apps/client/src/app/pages/features/features-page.html - 15 - - - - ETFs - ETFs - - apps/client/src/app/pages/features/features-page.html - 25 - - - - Bonds - Bonds - - apps/client/src/app/pages/features/features-page.html - 38 - - - - Cryptocurrencies - Cryptocurrencies - - apps/client/src/app/pages/features/features-page.html - 51 - - - - Wealth Items - Wealth Items - - apps/client/src/app/pages/features/features-page.html - 76 - - - - Import and Export - Import and Export - - apps/client/src/app/pages/features/features-page.html - 115 - - - - Multi-Accounts - Multi-Accounts - - apps/client/src/app/pages/features/features-page.html - 127 - - - - Portfolio Calculations - Portfolio Calculations - - apps/client/src/app/pages/features/features-page.html - 141 - - - - Dark Mode - Dark Mode - - apps/client/src/app/pages/features/features-page.html - 177 - - - - Market Mood - Market Mood - - apps/client/src/app/pages/features/features-page.html - 205 - - - - Static Analysis - Static Analysis - - apps/client/src/app/pages/features/features-page.html - 224 - - - - Multi-Language - Multi-Language - - apps/client/src/app/pages/features/features-page.html - 241 - - - - Open Source Software - Open Source Software - - apps/client/src/app/pages/features/features-page.html - 275 - - - - Get Started - Get Started - - apps/client/src/app/pages/features/features-page.html - 300 - - - apps/client/src/app/pages/public/public-page.html - 153 - - - - Holdings - Holdings - - apps/client/src/app/pages/home/home-page-routing.module.ts - 23 - - - apps/client/src/app/pages/home/home-page-routing.module.ts - 28 - - - apps/client/src/app/pages/home/home-page.component.ts - 42 - - - apps/client/src/app/pages/zen/zen-page.component.ts - 39 - - - - Summary - Summary - - apps/client/src/app/pages/home/home-page-routing.module.ts - 33 - - - apps/client/src/app/pages/home/home-page.component.ts - 47 - - - - Markets - Markets - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 52 - - - apps/client/src/app/pages/markets/markets-page-routing.module.ts - 13 - - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - - apps/client/src/app/pages/i18n/i18n-page.html - 4 - - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - - apps/client/src/app/pages/i18n/i18n-page.html - 9 - - - - Open Source Wealth Management Software - Open Source Wealth Management Software - - apps/client/src/app/pages/i18n/i18n-page.html - 14 - - - - Manage your wealth like a boss - Manage your wealth like a boss - - apps/client/src/app/pages/landing/landing-page.html - 5 - - - - 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 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. - - apps/client/src/app/pages/landing/landing-page.html - 9 - - - - Get Started - Get Started - - apps/client/src/app/pages/landing/landing-page.html - 41 - - - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - or - - apps/client/src/app/pages/landing/landing-page.html - 46 - - - - Live Demo - Live Demo - - apps/client/src/app/pages/landing/landing-page.html - 49 - - - apps/client/src/app/pages/landing/landing-page.html - 424 - - - - Monthly Active Users - Monthly Active Users - - apps/client/src/app/pages/landing/landing-page.html - 69 - - - - Stars on GitHub - Stars on GitHub - - apps/client/src/app/pages/landing/landing-page.html - 87 - - - apps/client/src/app/pages/open/open-page.html - 103 - - - - Pulls on Docker Hub - Pulls on Docker Hub - - apps/client/src/app/pages/landing/landing-page.html - 105 - - - apps/client/src/app/pages/open/open-page.html - 117 - - - - As seen in - As seen in - - apps/client/src/app/pages/landing/landing-page.html - 113 - - - - Protect your assets. Refine your personal investment strategy. - Protect your assets. Refine your personal investment strategy. - - apps/client/src/app/pages/landing/landing-page.html - 215 - - - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - - apps/client/src/app/pages/landing/landing-page.html - 219 - - - - 360° View - 360° View - - apps/client/src/app/pages/landing/landing-page.html - 230 - - - - Get the full picture of your personal finances across multiple platforms. - Get the full picture of your personal finances across multiple platforms. - - apps/client/src/app/pages/landing/landing-page.html - 232 - - - - Web3 Ready - Web3 Ready - - apps/client/src/app/pages/landing/landing-page.html - 241 - - - - Use Ghostfolio anonymously and own your financial data. - Use Ghostfolio anonymously and own your financial data. - - apps/client/src/app/pages/landing/landing-page.html - 243 - - - - Open Source - Open Source - - apps/client/src/app/pages/landing/landing-page.html - 251 - - - - Benefit from continuous improvements through a strong community. - Benefit from continuous improvements through a strong community. - - apps/client/src/app/pages/landing/landing-page.html - 253 - - - - Why Ghostfolio? - Why Ghostfolio? - - apps/client/src/app/pages/landing/landing-page.html - 262 - - - - Ghostfolio is for you if you are... - Ghostfolio is for you if you are... - - apps/client/src/app/pages/landing/landing-page.html - 263 - - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - trading stocks, ETFs or cryptocurrencies on multiple platforms - - apps/client/src/app/pages/landing/landing-page.html - 270 - - - - pursuing a buy & hold strategy - pursuing a buy & hold strategy - - apps/client/src/app/pages/landing/landing-page.html - 276 - - - - interested in getting insights of your portfolio composition - interested in getting insights of your portfolio composition - - apps/client/src/app/pages/landing/landing-page.html - 281 - - - - valuing privacy and data ownership - valuing privacy and data ownership - - apps/client/src/app/pages/landing/landing-page.html - 286 - - - - into minimalism - into minimalism - - apps/client/src/app/pages/landing/landing-page.html - 289 - - - - caring about diversifying your financial resources - caring about diversifying your financial resources - - apps/client/src/app/pages/landing/landing-page.html - 293 - - - - interested in financial independence - interested in financial independence - - apps/client/src/app/pages/landing/landing-page.html - 297 - - - - saying no to spreadsheets in - saying no to spreadsheets in - - apps/client/src/app/pages/landing/landing-page.html - 301 - - - - still reading this list - still reading this list - - apps/client/src/app/pages/landing/landing-page.html - 304 - - - - Learn more about Ghostfolio - Learn more about Ghostfolio - - apps/client/src/app/pages/landing/landing-page.html - 309 - - - - What our users are saying - What our users are saying - - apps/client/src/app/pages/landing/landing-page.html - 317 - - - - Members from around the globe are using Ghostfolio Premium - Members from around the globe are using Ghostfolio Premium - - apps/client/src/app/pages/landing/landing-page.html - 349 - - - - How does Ghostfolio work? - How does Ghostfolio work? - - apps/client/src/app/pages/landing/landing-page.html - 361 - - - - Get started in only 3 steps - Get started in only 3 steps - - apps/client/src/app/pages/landing/landing-page.html - 364 - - - - Sign up anonymously* - Sign up anonymously* - - apps/client/src/app/pages/landing/landing-page.html - 370 - - - - * no e-mail address nor credit card required - * no e-mail address nor credit card required - - apps/client/src/app/pages/landing/landing-page.html - 372 - - - - Add any of your historical transactions - Add any of your historical transactions - - apps/client/src/app/pages/landing/landing-page.html - 383 - - - - Get valuable insights of your portfolio composition - Get valuable insights of your portfolio composition - - apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 - - - - Join now or check out the example account - Join now or check out the example account - - apps/client/src/app/pages/landing/landing-page.html - 408 - - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - - apps/client/src/app/pages/open/open-page.html - 6 - - - - (Last 24 hours) - (Last 24 hours) - - apps/client/src/app/pages/open/open-page.html - 37 - - - - Active Users - Active Users - - apps/client/src/app/pages/open/open-page.html - 40 - - - apps/client/src/app/pages/open/open-page.html - 62 - - - - (Last 30 days) - (Last 30 days) - - apps/client/src/app/pages/open/open-page.html - 48 - - - apps/client/src/app/pages/open/open-page.html - 59 - - - - New Users - New Users - - apps/client/src/app/pages/open/open-page.html - 51 - - - - Users in Slack community - Users in Slack community - - apps/client/src/app/pages/open/open-page.html - 75 - - - - Contributors on GitHub - Contributors on GitHub - - apps/client/src/app/pages/open/open-page.html - 89 - - - - (Last 90 days) - (Last 90 days) - - apps/client/src/app/pages/open/open-page.html - 127 - - - - Uptime - Uptime - - apps/client/src/app/pages/open/open-page.html - 132 - - - - Activities - Activities - - apps/client/src/app/pages/portfolio/activities/activities-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 - - - - Do you really want to delete these activities? - Do you really want to delete these activities? - - libs/ui/src/lib/activities-table/activities-table.component.ts - 216 - - - - Update activity - Update activity - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 - - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Stocks, ETFs, bonds, cryptocurrencies, commodities - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 - - - - One-time fee, annual account fees - One-time fee, annual account fees - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 - - - - Distribution of corporate earnings - Distribution of corporate earnings - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 - - - - Revenue for lending out money - Revenue for lending out money - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 - - - - Mortgages, personal loans, credit cards - Mortgages, personal loans, credit cards - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 - - - - Luxury items, real estate, private companies - Luxury items, real estate, private companies - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 - - - - Account - Account - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 307 - - - - Update Cash Balance - Update Cash Balance - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 - - - - Unit Price - Unit Price - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 209 - - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 - - - - Fee - Fee - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 233 - - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 - - - - Import Activities - Import Activities - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 44 - - - - Import Dividends - Import Dividends - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 86 - - - - Importing data... - Importing data... - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 120 - - - - Import has been completed - Import has been completed - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 128 - - - - Validating data... - Validating data... - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 233 - - - - Select Holding - Select Holding - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 20 - - - - Select File - Select File - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 - - - - Holding - Holding - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 - - - - Load Dividends - Load Dividends - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 - - - - Choose or drop a file here - Choose or drop a file here - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 - - - - The following file formats are supported: - The following file formats are supported: - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 - - - - Select Dividends - Select Dividends - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 - - - - Select Activities - Select Activities - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 - - - - Back - Back - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 - - - - Allocations - Allocations - - apps/client/src/app/pages/portfolio/allocations/allocations-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 - - - - Allocations - Allocations - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 4 - - - - Proportion of Net Worth - Proportion of Net Worth - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 12 - - - - By Platform - By Platform - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 44 - - - - By Currency - By Currency - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 63 - - - - By Asset Class - By Asset Class - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 86 - - - - By Holding - By Holding - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 109 - - - - By Sector - By Sector - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 132 - - - - By Continent - By Continent - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 156 - - - - By Market - By Market - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 179 - - - - Regions - Regions - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 203 - - - apps/client/src/app/pages/public/public-page.html - 76 - - - - Developed Markets - Developed Markets - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 228 - - - apps/client/src/app/pages/public/public-page.html - 93 - - - - Emerging Markets - Emerging Markets - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 237 - - - apps/client/src/app/pages/public/public-page.html - 102 - - - - Other Markets - Other Markets - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 246 - - - apps/client/src/app/pages/public/public-page.html - 111 - - - - No data available - No data available - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 258 - - - apps/client/src/app/pages/public/public-page.html - 123 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 86 - - - - By Account - By Account - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 294 - - - - By ETF Provider - By ETF Provider - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 314 - - - - By Country - By Country - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 271 - - - - Analysis - Analysis - - apps/client/src/app/pages/portfolio/analysis/analysis-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 34 - - - - Dividend - Dividend - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 38 - - - libs/ui/src/lib/i18n.ts - 32 - - - - Deposit - Deposit - - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 357 - - - - Monthly - Monthly - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 50 - - - - Yearly - Yearly - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 51 - - - - Analysis - Analysis - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 2 - - - - Top - Top - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 - - - - Bottom - Bottom - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 - - - - Portfolio Evolution - Portfolio Evolution - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 - - - - Investment Timeline - Investment Timeline - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 - - - - Current Streak - Current Streak - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 - - - - Longest Streak - Longest Streak - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 - - - - Dividend Timeline - Dividend Timeline - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 - - - - FIRE - FIRE - - apps/client/src/app/pages/portfolio/fire/fire-page-routing.module.ts - 13 - - - - FIRE - FIRE - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 4 - - - - Calculator - Calculator - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 7 - - - - 4% Rule - 4% Rule - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 - - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 111 - - - - Currency Cluster Risks - Currency Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 - - - - Account Cluster Risks - Account Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 - - - - Holdings - Holdings - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 77 - - - apps/client/src/app/components/home-holdings/home-holdings.html - 4 - - - apps/client/src/app/pages/public/public-page.html - 14 - - - libs/ui/src/lib/assistant/assistant.html - 46 - - - - Pricing - Pricing - - apps/client/src/app/pages/pricing/pricing-page-routing.module.ts - 13 - - - - Pricing Plans - Pricing Plans - - apps/client/src/app/pages/pricing/pricing-page.html - 4 - - - - Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. - Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. - - apps/client/src/app/pages/pricing/pricing-page.html - 6 - - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - - apps/client/src/app/pages/pricing/pricing-page.html - 24 - - - - For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. - For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. - - apps/client/src/app/pages/pricing/pricing-page.html - 36 - - - - Unlimited Transactions - Unlimited Transactions - - apps/client/src/app/pages/pricing/pricing-page.html - 43 - - - apps/client/src/app/pages/pricing/pricing-page.html - 126 - - - apps/client/src/app/pages/pricing/pricing-page.html - 187 - - - - Unlimited Accounts - Unlimited Accounts - - apps/client/src/app/pages/pricing/pricing-page.html - 47 - - - apps/client/src/app/pages/pricing/pricing-page.html - 130 - - - apps/client/src/app/pages/pricing/pricing-page.html - 191 - - - - Portfolio Performance - Portfolio Performance - - apps/client/src/app/pages/pricing/pricing-page.html - 51 - - - apps/client/src/app/pages/pricing/pricing-page.html - 134 - - - apps/client/src/app/pages/pricing/pricing-page.html - 195 - - - - Data Import and Export - Data Import and Export - - apps/client/src/app/pages/pricing/pricing-page.html - 71 - - - apps/client/src/app/pages/pricing/pricing-page.html - 138 - - - apps/client/src/app/pages/pricing/pricing-page.html - 215 - - - - Community Support - Community Support - - apps/client/src/app/pages/pricing/pricing-page.html - 88 - - - - Self-hosted, update manually. - Self-hosted, update manually. - - apps/client/src/app/pages/pricing/pricing-page.html - 92 - - - - Free - Free - - apps/client/src/app/pages/pricing/pricing-page.html - 93 - - - apps/client/src/app/pages/pricing/pricing-page.html - 150 - - - - For new investors who are just getting started with trading. - For new investors who are just getting started with trading. - - apps/client/src/app/pages/pricing/pricing-page.html - 120 - - - - Fully managed Ghostfolio cloud offering. - Fully managed Ghostfolio cloud offering. - - apps/client/src/app/pages/pricing/pricing-page.html - 149 - - - apps/client/src/app/pages/pricing/pricing-page.html - 240 - - - - For ambitious investors who need the full picture of their financial assets. - For ambitious investors who need the full picture of their financial assets. - - apps/client/src/app/pages/pricing/pricing-page.html - 180 - - - - Email and Chat Support - Email and Chat Support - - apps/client/src/app/pages/pricing/pricing-page.html - 236 - - - - Renew Plan - Renew Plan - - apps/client/src/app/components/header/header.component.html - 190 - - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 - - - apps/client/src/app/pages/pricing/pricing-page.html - 276 - - - - One-time payment, no auto-renewal. - One-time payment, no auto-renewal. - - apps/client/src/app/pages/pricing/pricing-page.html - 280 - - - - Get Started - Get Started - - apps/client/src/app/pages/pricing/pricing-page.html - 291 - - - - It’s free. - It’s free. - - apps/client/src/app/pages/pricing/pricing-page.html - 294 - - - - Hello, has shared a Portfolio with you! - Hello, has shared a Portfolio with you! - - apps/client/src/app/pages/public/public-page.html - 4 - - - - Currencies - Currencies - - apps/client/src/app/pages/public/public-page.html - 30 - - - - Continents - Continents - - apps/client/src/app/pages/public/public-page.html - 60 - - - - Ghostfolio empowers you to keep track of your wealth. - Ghostfolio empowers you to keep track of your wealth. - - apps/client/src/app/pages/public/public-page.html - 148 - - - - Registration - Registration - - apps/client/src/app/pages/register/register-page-routing.module.ts - 13 - - - - Continue with Internet Identity - Continue with Internet Identity - - apps/client/src/app/pages/register/register-page.html - 41 - - - - Continue with Google - Continue with Google - - apps/client/src/app/pages/register/register-page.html - 51 - - - - Copy to clipboard - Copy to clipboard - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 26 - - - - I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. - I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 32 - - - - Agree and continue - Agree and continue - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 45 - - - - Personal Finance Tools - Personal Finance Tools - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 14 - - - - open-source-alternative-to - open-source-alternative-to - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 23 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 - - - - Open Source Alternative to - Open Source Alternative to - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 26 - - - - Discover Open Source Alternatives for Personal Finance Tools - Discover Open Source Alternatives for Personal Finance Tools - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4 - - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8 - - - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16 - - - - Open Source Alternative to - Open Source Alternative to - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 38 - - - - The Open Source Alternative to - The Open Source Alternative to - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - - Founded - Founded - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - - Origin - Origin - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - - Region - Region - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - - Available in - Available in - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - - ✅ Yes - ✅ Yes - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - - ❌ No - ❌ No - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 176 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - - ❌ No - ❌ No - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 118 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118 - - - - Self-Hosting - Self-Hosting - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - - Use anonymously - Use anonymously - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 150 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 - - - - Free Plan - Free Plan - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - - Notes - Notes - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - - Ready to take your investments to the next level? - Ready to take your investments to the next level? - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - - Get Started - Get Started - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - + + Dark + Dark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 162 - - Personal Finance Tools - Personal Finance Tools - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - + + Zen Mode + Zen Mode - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 171 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/features/features-page.html + 190 + + + Distraction-free experience for turbulent times + Distraction-free experience for turbulent times - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 172 + + + Biometric Authentication + Biometric Authentication - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 188 + + + Sign in with fingerprint + Sign in with fingerprint - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 189 + + + Experimental Features + Experimental Features - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 206 + + + Sneak peek at upcoming functionality + Sneak peek at upcoming functionality - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 207 + + + User ID + User ID - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 223 + + + Export Data + Export Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 231 + + + This feature is currently unavailable. + This feature is currently unavailable. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/core/http-response.interceptor.ts + 53 + + + Please try again later. + Please try again later. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/core/http-response.interceptor.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/core/http-response.interceptor.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 138 + + + Oops! Something went wrong. + Oops! Something went wrong. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/core/http-response.interceptor.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 136 + + + Okay + Okay - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/core/http-response.interceptor.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 139 + + + About + About - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/about-page-routing.module.ts + 51 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/about-page.component.ts + 44 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/overview/about-overview-page-routing.module.ts + 13 + + + Changelog + Changelog - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/about-page.component.ts + 49 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/changelog/changelog-page-routing.module.ts + 13 + + + License + License - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/about-page.component.ts + 54 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/license/license-page-routing.module.ts + 13 + + + Privacy Policy + Privacy Policy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/about-page.component.ts + 62 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/privacy-policy/privacy-policy-page-routing.module.ts + 13 + + + Our + Our - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + Discover other exciting Open Source Software projects + Discover other exciting Open Source Software projects - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + Visit + Visit - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + Accounts + Accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/accounts/accounts-page-routing.module.ts + 13 + + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 304 + + + Update account + Update account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 8 + + + Add account + Add account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 10 + + + Account ID + Account ID - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 96 + + + From + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 28 + + + Transfer + Transfer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 64 + + + Admin Control + Admin Control - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 20 - - Switzerland - Switzerland + + Market Data + Market Data - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 80 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 30 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + Settings + Settings - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 590 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 650 + apps/client/src/app/pages/admin/admin-page.component.ts + 32 - - - Global - Global - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 81 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 18 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 360 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 35 + + + Users + Users - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 502 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 40 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 651 + apps/client/src/app/pages/admin/admin-page.component.ts + 47 - - United States - United States + + Overview + Overview - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 101 + apps/client/src/app/pages/admin/admin-page.component.ts + 27 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 157 + apps/client/src/app/pages/home/home-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 167 + apps/client/src/app/pages/zen/zen-page-routing.module.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + apps/client/src/app/pages/zen/zen-page.component.ts + 34 + + + Blog + Blog - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 218 + apps/client/src/app/pages/blog/blog-page-routing.module.ts + 13 + + + Discover the latest Ghostfolio updates and insights on personal finance + Discover the latest Ghostfolio updates and insights on personal finance - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + apps/client/src/app/pages/blog/blog-page.html + 7 + + + As you are already logged in, you cannot access the demo account. + As you are already logged in, you cannot access the demo account. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 240 + apps/client/src/app/pages/demo/demo-page.component.ts + 35 + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 + apps/client/src/app/pages/faq/faq-page-routing.module.ts + 34 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 302 + apps/client/src/app/pages/faq/overview/faq-overview-page-routing.module.ts + 13 + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 324 + apps/client/src/app/pages/faq/overview/faq-overview-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 335 + apps/client/src/app/pages/faq/saas/saas-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 + apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html + 4 + + + Features + Features - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 371 + apps/client/src/app/app-routing.module.ts + 65 + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + apps/client/src/app/pages/features/features-page.html + 6 + + + Stocks + Stocks - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + apps/client/src/app/pages/features/features-page.html + 15 + + + ETFs + ETFs - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 469 + apps/client/src/app/pages/features/features-page.html + 25 + + + Bonds + Bonds - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 479 + apps/client/src/app/pages/features/features-page.html + 38 + + + Cryptocurrencies + Cryptocurrencies - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 489 + apps/client/src/app/pages/features/features-page.html + 51 + + + Wealth Items + Wealth Items - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 578 + apps/client/src/app/pages/features/features-page.html + 76 + + + Import and Export + Import and Export - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 601 + apps/client/src/app/pages/features/features-page.html + 115 + + + Multi-Accounts + Multi-Accounts - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 639 + apps/client/src/app/pages/features/features-page.html + 127 + + + Portfolio Calculations + Portfolio Calculations - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 661 + apps/client/src/app/pages/features/features-page.html + 141 - - France - France + + Dark Mode + Dark Mode - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + apps/client/src/app/pages/features/features-page.html + 177 + + + Market Mood + Market Mood - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 522 + apps/client/src/app/pages/features/features-page.html + 205 + + + Static Analysis + Static Analysis - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 547 + apps/client/src/app/pages/features/features-page.html + 224 - - Poland - Poland + + Multi-Language + Multi-Language - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 139 + apps/client/src/app/pages/features/features-page.html + 241 - - Germany - Germany + + Open Source Software + Open Source Software - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 + apps/client/src/app/pages/features/features-page.html + 275 + + + Get Started + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 198 + apps/client/src/app/pages/features/features-page.html + 300 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 + apps/client/src/app/pages/public/public-page.html + 153 + + + Holdings + Holdings - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 292 + apps/client/src/app/pages/home/home-page-routing.module.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 313 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 358 + apps/client/src/app/pages/home/home-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 415 + apps/client/src/app/pages/zen/zen-page.component.ts + 39 + + + Summary + Summary - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 532 + apps/client/src/app/pages/home/home-page-routing.module.ts + 33 - - - Belgium - Belgium - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 187 + apps/client/src/app/pages/home/home-page.component.ts + 47 - - South Africa - South Africa + + Markets + Markets - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 259 + apps/client/src/app/pages/home/home-page-routing.module.ts + 38 - - - Austria - Austria - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 270 + apps/client/src/app/pages/home/home-page.component.ts + 52 - - - Italy - Italy - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + apps/client/src/app/pages/markets/markets-page-routing.module.ts + 13 - - Netherlands - Netherlands + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 436 + apps/client/src/app/pages/i18n/i18n-page.html + 4 - - Thailand - Thailand + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 458 + apps/client/src/app/pages/i18n/i18n-page.html + 9 - - New Zealand - New Zealand + + Open Source Wealth Management Software + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 500 + apps/client/src/app/pages/i18n/i18n-page.html + 14 - - Czech Republic - Czech Republic + + Manage your wealth like a boss + Manage your wealth like a boss - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 511 + apps/client/src/app/pages/landing/landing-page.html + 5 + + + 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 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. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 568 + apps/client/src/app/pages/landing/landing-page.html + 9 + + + Get Started + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 611 + apps/client/src/app/pages/landing/landing-page.html + 41 - - - Finland - Finland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 539 + apps/client/src/app/pages/landing/landing-page.html + 419 - - Canada - Canada + + or + or - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 631 + apps/client/src/app/pages/landing/landing-page.html + 46 - - Resources - Resources + + Live Demo + Live Demo - apps/client/src/app/pages/resources/resources-page-routing.module.ts - 13 + apps/client/src/app/pages/landing/landing-page.html + 49 - - - Guides - Guides - apps/client/src/app/pages/resources/resources-page.html - 22 + apps/client/src/app/pages/landing/landing-page.html + 424 - - Glossary - Glossary + + Monthly Active Users + Monthly Active Users - apps/client/src/app/pages/resources/resources-page.html - 92 + apps/client/src/app/pages/landing/landing-page.html + 69 - - Membership - Membership + + Stars on GitHub + Stars on GitHub - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 23 + apps/client/src/app/pages/landing/landing-page.html + 87 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 40 + apps/client/src/app/pages/open/open-page.html + 103 - - Access - Access + + Pulls on Docker Hub + Pulls on Docker Hub - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 28 + apps/client/src/app/pages/landing/landing-page.html + 105 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 46 + apps/client/src/app/pages/open/open-page.html + 117 - - My Ghostfolio - My Ghostfolio + + As seen in + As seen in - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 33 + apps/client/src/app/pages/landing/landing-page.html + 113 - - Oops, authentication has failed. - Oops, authentication has failed. + + Protect your assets. Refine your personal investment strategy. + Protect your assets. Refine your personal investment strategy. - apps/client/src/app/pages/webauthn/webauthn-page.html - 19 + apps/client/src/app/pages/landing/landing-page.html + 215 - - Try again - Try again + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - apps/client/src/app/pages/webauthn/webauthn-page.html - 27 + apps/client/src/app/pages/landing/landing-page.html + 219 - - Go back to Home Page - Go back to Home Page + + 360° View + 360° View - apps/client/src/app/pages/webauthn/webauthn-page.html - 31 + apps/client/src/app/pages/landing/landing-page.html + 230 - - Import Activities - Import Activities + + Get the full picture of your personal finances across multiple platforms. + Get the full picture of your personal finances across multiple platforms. - libs/ui/src/lib/activities-table/activities-table.component.html - 9 + apps/client/src/app/pages/landing/landing-page.html + 232 + + + Web3 Ready + Web3 Ready - libs/ui/src/lib/activities-table/activities-table.component.html - 370 + apps/client/src/app/pages/landing/landing-page.html + 241 - - Import Dividends - Import Dividends + + Use Ghostfolio anonymously and own your financial data. + Use Ghostfolio anonymously and own your financial data. - libs/ui/src/lib/activities-table/activities-table.component.html - 29 + apps/client/src/app/pages/landing/landing-page.html + 243 + + + Open Source + Open Source - libs/ui/src/lib/activities-table/activities-table.component.html - 382 + apps/client/src/app/pages/landing/landing-page.html + 251 - - Export Activities - Export Activities + + Benefit from continuous improvements through a strong community. + Benefit from continuous improvements through a strong community. - libs/ui/src/lib/activities-table/activities-table.component.html - 41 + apps/client/src/app/pages/landing/landing-page.html + 253 + + + + Why Ghostfolio? + Why Ghostfolio? + + apps/client/src/app/pages/landing/landing-page.html + 262 + + + Ghostfolio is for you if you are... + Ghostfolio is for you if you are... - libs/ui/src/lib/activities-table/activities-table.component.html - 395 + apps/client/src/app/pages/landing/landing-page.html + 263 - - Export Drafts as ICS - Export Drafts as ICS + + trading stocks, ETFs or cryptocurrencies on multiple platforms + trading stocks, ETFs or cryptocurrencies on multiple platforms - libs/ui/src/lib/activities-table/activities-table.component.html - 54 + apps/client/src/app/pages/landing/landing-page.html + 270 + + + pursuing a buy & hold strategy + pursuing a buy & hold strategy - libs/ui/src/lib/activities-table/activities-table.component.html - 408 + apps/client/src/app/pages/landing/landing-page.html + 276 - - Draft - Draft + + interested in getting insights of your portfolio composition + interested in getting insights of your portfolio composition - libs/ui/src/lib/activities-table/activities-table.component.html - 144 + apps/client/src/app/pages/landing/landing-page.html + 281 - - Clone - Clone + + valuing privacy and data ownership + valuing privacy and data ownership - libs/ui/src/lib/activities-table/activities-table.component.html - 435 + apps/client/src/app/pages/landing/landing-page.html + 286 - - Export Draft as ICS - Export Draft as ICS + + into minimalism + into minimalism - libs/ui/src/lib/activities-table/activities-table.component.html - 445 + apps/client/src/app/pages/landing/landing-page.html + 289 - - Do you really want to delete this activity? - Do you really want to delete this activity? + + caring about diversifying your financial resources + caring about diversifying your financial resources - libs/ui/src/lib/activities-table/activities-table.component.ts - 226 + apps/client/src/app/pages/landing/landing-page.html + 293 - - Find holding... - Find holding... + + interested in financial independence + interested in financial independence - libs/ui/src/lib/assistant/assistant.component.ts - 138 + apps/client/src/app/pages/landing/landing-page.html + 297 - - No entries... - No entries... + + saying no to spreadsheets in + saying no to spreadsheets in - libs/ui/src/lib/assistant/assistant.html - 63 + apps/client/src/app/pages/landing/landing-page.html + 301 + + + still reading this list + still reading this list - libs/ui/src/lib/assistant/assistant.html - 84 + apps/client/src/app/pages/landing/landing-page.html + 304 - - Asset Profiles - Asset Profiles + + Learn more about Ghostfolio + Learn more about Ghostfolio - libs/ui/src/lib/assistant/assistant.html - 67 + apps/client/src/app/pages/landing/landing-page.html + 309 - - Index - Index + + What our users are saying + What our users are saying - libs/ui/src/lib/benchmark/benchmark.component.html - 3 + apps/client/src/app/pages/landing/landing-page.html + 317 - - Last All Time High - Last All Time High + + Members from around the globe are using Ghostfolio Premium + Members from around the globe are using Ghostfolio Premium - libs/ui/src/lib/benchmark/benchmark.component.html - 65 + apps/client/src/app/pages/landing/landing-page.html + 349 - - Change from All Time High - Change from All Time High + + How does Ghostfolio work? + How does Ghostfolio work? - libs/ui/src/lib/benchmark/benchmark.component.html - 81 + apps/client/src/app/pages/landing/landing-page.html + 361 - - from ATH - from ATH + + Get started in only 3 steps + Get started in only 3 steps - libs/ui/src/lib/benchmark/benchmark.component.html - 83 + apps/client/src/app/pages/landing/landing-page.html + 364 - - Market data provided by - Market data provided by + + Sign up anonymously* + Sign up anonymously* - libs/ui/src/lib/data-provider-credits/data-provider-credits.component.html - 2 + apps/client/src/app/pages/landing/landing-page.html + 370 - - Savings Rate per Month - Savings Rate per Month + + * no e-mail address nor credit card required + * no e-mail address nor credit card required - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 10 + apps/client/src/app/pages/landing/landing-page.html + 372 - - Annual Interest Rate - Annual Interest Rate + + Add any of your historical transactions + Add any of your historical transactions - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 21 + apps/client/src/app/pages/landing/landing-page.html + 383 - - Retirement Date - Retirement Date + + Get valuable insights of your portfolio composition + Get valuable insights of your portfolio composition - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 32 + apps/client/src/app/pages/landing/landing-page.html + 395 - - Projected Total Amount - Projected Total Amount + + Are you ready? + Are you ready? - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 57 + apps/client/src/app/pages/landing/landing-page.html + 407 - - Interest - Interest + + Join now or check out the example account + Join now or check out the example account - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 367 + apps/client/src/app/pages/landing/landing-page.html + 408 + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - libs/ui/src/lib/i18n.ts - 34 + apps/client/src/app/pages/open/open-page.html + 6 - - Savings - Savings + + (Last 24 hours) + (Last 24 hours) - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 377 + apps/client/src/app/pages/open/open-page.html + 37 - - Allocation - Allocation + + Active Users + Active Users - libs/ui/src/lib/holdings-table/holdings-table.component.html - 98 + apps/client/src/app/pages/open/open-page.html + 40 - libs/ui/src/lib/top-holdings/top-holdings.component.html - 45 + apps/client/src/app/pages/open/open-page.html + 62 - - Show all - Show all + + (Last 30 days) + (Last 30 days) - libs/ui/src/lib/holdings-table/holdings-table.component.html - 197 + apps/client/src/app/pages/open/open-page.html + 48 - libs/ui/src/lib/top-holdings/top-holdings.component.html - 79 + apps/client/src/app/pages/open/open-page.html + 59 - - Account - Account + + New Users + New Users - libs/ui/src/lib/i18n.ts - 4 + apps/client/src/app/pages/open/open-page.html + 51 - - Asia-Pacific - Asia-Pacific + + Users in Slack community + Users in Slack community - libs/ui/src/lib/i18n.ts - 5 + apps/client/src/app/pages/open/open-page.html + 75 - - Asset Class - Asset Class + + Contributors on GitHub + Contributors on GitHub - libs/ui/src/lib/i18n.ts - 6 + apps/client/src/app/pages/open/open-page.html + 89 - - Asset Sub Class - Asset Sub Class + + (Last 90 days) + (Last 90 days) - libs/ui/src/lib/i18n.ts - 7 + apps/client/src/app/pages/open/open-page.html + 127 - - Core - Core + + Uptime + Uptime - libs/ui/src/lib/i18n.ts - 9 + apps/client/src/app/pages/open/open-page.html + 132 - - Switch to Ghostfolio Premium or Ghostfolio Open Source easily - Switch to Ghostfolio Premium or Ghostfolio Open Source easily + + Activities + Activities - libs/ui/src/lib/i18n.ts - 10 + apps/client/src/app/pages/portfolio/activities/activities-page-routing.module.ts + 13 - - - Switch to Ghostfolio Premium easily - Switch to Ghostfolio Premium easily - libs/ui/src/lib/i18n.ts - 11 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 39 - - Switch to Ghostfolio Open Source or Ghostfolio Basic easily - Switch to Ghostfolio Open Source or Ghostfolio Basic easily + + Do you really want to delete these activities? + Do you really want to delete these activities? - libs/ui/src/lib/i18n.ts - 12 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 - - Emergency Fund - Emergency Fund + + Update activity + Update activity - libs/ui/src/lib/i18n.ts - 13 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 7 - - Grant - Grant + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Stocks, ETFs, bonds, cryptocurrencies, commodities - libs/ui/src/lib/i18n.ts - 14 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 22 - - - Higher Risk - Higher Risk - libs/ui/src/lib/i18n.ts - 15 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 62 - - This activity already exists. - This activity already exists. + + One-time fee, annual account fees + One-time fee, annual account fees - libs/ui/src/lib/i18n.ts - 16 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 30 - - Japan - Japan + + Distribution of corporate earnings + Distribution of corporate earnings - libs/ui/src/lib/i18n.ts - 17 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 38 - - Lower Risk - Lower Risk + + Revenue for lending out money + Revenue for lending out money - libs/ui/src/lib/i18n.ts - 18 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 46 - - Month - Month + + Mortgages, personal loans, credit cards + Mortgages, personal loans, credit cards - libs/ui/src/lib/i18n.ts - 19 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 54 - - Months - Months + + Luxury items, real estate, private companies + Luxury items, real estate, private companies - libs/ui/src/lib/i18n.ts - 20 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 70 - - Other - Other + + Account + Account - libs/ui/src/lib/i18n.ts - 21 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 82 - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 389 + libs/ui/src/lib/activities-table/activities-table.component.html + 307 - - Preset - Preset + + Update Cash Balance + Update Cash Balance - libs/ui/src/lib/i18n.ts - 22 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 108 - - Retirement Provision - Retirement Provision + + Unit Price + Unit Price - libs/ui/src/lib/i18n.ts - 23 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 199 - - - Satellite - Satellite - libs/ui/src/lib/i18n.ts - 24 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 261 - - - Symbol - Symbol - libs/ui/src/lib/i18n.ts - 25 + libs/ui/src/lib/activities-table/activities-table.component.html + 209 - - Tag - Tag + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - libs/ui/src/lib/i18n.ts - 26 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 226 - - Year - Year + + Fee + Fee - libs/ui/src/lib/i18n.ts - 27 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 280 - - - Years - Years - libs/ui/src/lib/i18n.ts - 28 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 302 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 233 - - Buy - Buy + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - libs/ui/src/lib/i18n.ts - 31 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 292 - - Fee - Fee + + Import Activities + Import Activities - libs/ui/src/lib/i18n.ts - 33 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 44 - - Valuable - Valuable + + Import Dividends + Import Dividends - libs/ui/src/lib/i18n.ts - 35 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 86 - - Liability - Liability + + Importing data... + Importing data... - libs/ui/src/lib/i18n.ts - 36 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 120 - - Sell - Sell + + Import has been completed + Import has been completed - libs/ui/src/lib/i18n.ts - 37 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 128 - - Cash - Cash + + Validating data... + Validating data... - libs/ui/src/lib/i18n.ts - 40 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 233 - - Commodity - Commodity + + Select Holding + Select Holding - libs/ui/src/lib/i18n.ts - 41 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 20 - - Equity - Equity + + Select File + Select File - libs/ui/src/lib/i18n.ts - 42 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 23 - - Fixed Income - Fixed Income + + Holding + Holding - libs/ui/src/lib/i18n.ts - 43 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 33 - - Real Estate - Real Estate + + Load Dividends + Load Dividends - libs/ui/src/lib/i18n.ts - 45 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 70 - - Bond - Bond + + Choose or drop a file here + Choose or drop a file here - libs/ui/src/lib/i18n.ts - 48 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 86 - - Cryptocurrency - Cryptocurrency + + The following file formats are supported: + The following file formats are supported: - libs/ui/src/lib/i18n.ts - 49 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 92 - - ETF - ETF + + Select Dividends + Select Dividends - libs/ui/src/lib/i18n.ts - 50 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 115 - - Mutual Fund - Mutual Fund + + Select Activities + Select Activities - libs/ui/src/lib/i18n.ts - 51 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 118 - - Precious Metal - Precious Metal + + Back + Back - libs/ui/src/lib/i18n.ts - 52 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 146 - - - Private Equity - Private Equity - libs/ui/src/lib/i18n.ts - 53 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 182 - - Stock - Stock + + Allocations + Allocations - libs/ui/src/lib/i18n.ts - 54 + apps/client/src/app/pages/portfolio/allocations/allocations-page-routing.module.ts + 13 - - - Africa - Africa - libs/ui/src/lib/i18n.ts - 61 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 44 - - Asia - Asia + + Allocations + Allocations - libs/ui/src/lib/i18n.ts - 62 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 4 - - Europe - Europe + + Proportion of Net Worth + Proportion of Net Worth - libs/ui/src/lib/i18n.ts - 63 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 12 - - North America - North America + + By Platform + By Platform - libs/ui/src/lib/i18n.ts - 64 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 44 - - Oceania - Oceania + + By Currency + By Currency - libs/ui/src/lib/i18n.ts - 65 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 63 - - South America - South America + + By Asset Class + By Asset Class - libs/ui/src/lib/i18n.ts - 66 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 85 - - Extreme Fear - Extreme Fear + + By Holding + By Holding - libs/ui/src/lib/i18n.ts - 69 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 107 - - Extreme Greed - Extreme Greed + + By Sector + By Sector - libs/ui/src/lib/i18n.ts - 70 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 130 - - Neutral - Neutral + + By Continent + By Continent - libs/ui/src/lib/i18n.ts - 73 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 153 - - Membership - Membership + + By Market + By Market - libs/ui/src/lib/membership-card/membership-card.component.html - 18 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 175 - - Valid until - Valid until + + Regions + Regions - libs/ui/src/lib/membership-card/membership-card.component.html - 23 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 198 - - - Time to add your first activity. - Time to add your first activity. - libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html - 12 + apps/client/src/app/pages/public/public-page.html + 76 - - No data available - No data available + + Developed Markets + Developed Markets - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 391 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 222 - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 404 + apps/client/src/app/pages/public/public-page.html + 93 - - 50-Day Trend - 50-Day Trend + + Emerging Markets + Emerging Markets - libs/ui/src/lib/benchmark/benchmark.component.html - 15 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 231 - - - 200-Day Trend - 200-Day Trend - libs/ui/src/lib/benchmark/benchmark.component.html - 40 + apps/client/src/app/pages/public/public-page.html + 102 - - Cash Balances - Cash Balances + + Other Markets + Other Markets - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 115 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 240 + + + apps/client/src/app/pages/public/public-page.html + 111 - - Starting from - Starting from + + No data available + No data available - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/public/public-page.html + 123 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 88 + + + By Account + By Account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 286 + + + By ETF Provider + By ETF Provider - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 306 + + + By Country + By Country - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 264 + + + Analysis + Analysis - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 34 + + + Dividend + Dividend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + libs/ui/src/lib/i18n.ts + 32 + + + Deposit + Deposit - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 361 + + + Monthly + Monthly - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 50 + + + Yearly + Yearly - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 51 + + + Analysis + Analysis - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 2 + + + Top + Top - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 168 + + + Bottom + Bottom - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 214 + + + Portfolio Evolution + Portfolio Evolution - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 264 + + + Investment Timeline + Investment Timeline - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 294 + + + Current Streak + Current Streak - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 315 + + + Longest Streak + Longest Streak - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 324 + + + Dividend Timeline + Dividend Timeline - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 352 + + + FIRE + FIRE - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/fire/fire-page-routing.module.ts + 13 + + + FIRE + FIRE - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 4 + + + Calculator + Calculator - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 7 + + + 4% Rule + 4% Rule - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 41 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 111 + + + Currency Cluster Risks + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 135 + + + Account Cluster Risks + Account Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 148 + + + Holdings + Holdings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/components/home-holdings/home-holdings.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/public/public-page.html + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + libs/ui/src/lib/assistant/assistant.html + 46 + + + Pricing + Pricing - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page-routing.module.ts + 13 + + + Pricing Plans + Pricing Plans - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 4 + + + Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. + Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 6 + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. + For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 36 + + + Unlimited Transactions + Unlimited Transactions - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 43 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 126 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 187 + + + Unlimited Accounts + Unlimited Accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 47 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 191 + + + Portfolio Performance + Portfolio Performance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 51 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 195 + + + Data Import and Export + Data Import and Export - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 138 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 215 + + + Community Support + Community Support - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 88 + + + Self-hosted, update manually. + Self-hosted, update manually. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 92 + + + Free + Free - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 93 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 150 + + + For new investors who are just getting started with trading. + For new investors who are just getting started with trading. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 120 + + + Fully managed Ghostfolio cloud offering. + Fully managed Ghostfolio cloud offering. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 149 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/pricing/pricing-page.html + 240 + + + For ambitious investors who need the full picture of their financial assets. + For ambitious investors who need the full picture of their financial assets. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.html + 180 + + + Email and Chat Support + Email and Chat Support - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.html + 236 + + + Renew Plan + Renew Plan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.html + 276 + + + One-time payment, no auto-renewal. + One-time payment, no auto-renewal. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.html + 280 + + + Get Started + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.html + 291 + + + It’s free. + It’s free. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.html + 294 + + + Hello, has shared a Portfolio with you! + Hello, has shared a Portfolio with you! - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/public/public-page.html + 4 + + + Currencies + Currencies - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/public/public-page.html + 30 + + + Continents + Continents - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/public/public-page.html + 60 + + + Ghostfolio empowers you to keep track of your wealth. + Ghostfolio empowers you to keep track of your wealth. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/public/public-page.html + 148 + + + Registration + Registration - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/register/register-page-routing.module.ts + 13 + + + Continue with Internet Identity + Continue with Internet Identity - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/register/register-page.html + 41 + + + Continue with Google + Continue with Google - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/register/register-page.html + 51 + + + Copy to clipboard + Copy to clipboard - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 26 + + + I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. + I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 32 + + + Agree and continue + Agree and continue - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 45 + + + Personal Finance Tools + Personal Finance Tools - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 14 + + + open-source-alternative-to + open-source-alternative-to - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + Open Source Alternative to + Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 27 + + + Discover Open Source Alternatives for Personal Finance Tools + Discover Open Source Alternatives for Personal Finance Tools - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 4 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 + + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Explore the links below to compare a variety of personal finance tools with Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 42 + + + The Open Source Alternative to + The Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 27 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 38 + + + Ghostfolio vs comparison table + Ghostfolio vs comparison table - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 49 + + + Founded + Founded - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 72 + + + Origin + Origin - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 77 + + + Region + Region - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 82 + + + Available in + Available in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 87 + + + ✅ Yes + ✅ Yes - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 116 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 162 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 174 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 181 + + + ❌ No + ❌ No - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 145 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 157 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 164 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 176 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 183 + + + ❌ No + ❌ No - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 118 + + + Self-Hosting + Self-Hosting - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 123 + + + Use anonymously + Use anonymously - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 150 + + + Free Plan + Free Plan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 169 + + + Notes + Notes - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 202 + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 210 - - year - year + + Ready to take your investments to the next level? + Ready to take your investments to the next level? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 223 + + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 227 + + + Get Started + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 232 + + + Personal Finance Tools + Personal Finance Tools - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 308 + + + Switzerland + Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 58 + + + Global + Global - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 59 + + + Resources + Resources - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/resources-page-routing.module.ts + 13 + + + Guides + Guides - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/resources-page.html + 22 + + + Glossary + Glossary - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/resources-page.html + 92 + + + Membership + Membership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 40 + + + Access + Access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 46 + + + My Ghostfolio + My Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 33 + + + Oops, authentication has failed. + Oops, authentication has failed. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/webauthn/webauthn-page.html + 19 + + + Try again + Try again - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/webauthn/webauthn-page.html + 27 + + + Go back to Home Page + Go back to Home Page - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/webauthn/webauthn-page.html + 31 + + + Import Activities + Import Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.html + 370 + + + Import Dividends + Import Dividends - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.html + 29 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.html + 382 + + + Export Activities + Export Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.html + 395 + + + Export Drafts as ICS + Export Drafts as ICS - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.html + 54 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.html + 408 + + + Draft + Draft - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.html + 144 + + + Clone + Clone - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.html + 435 + + + Export Draft as ICS + Export Draft as ICS - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.html + 445 + + + Do you really want to delete this activity? + Do you really want to delete this activity? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/activities-table/activities-table.component.ts + 226 + + + Find holding... + Find holding... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/assistant/assistant.component.ts + 138 + + + No entries... + No entries... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/assistant/assistant.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/assistant/assistant.html + 84 + + + Asset Profiles + Asset Profiles - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/assistant/assistant.html + 67 + + + Index + Index - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/benchmark/benchmark.component.html + 3 + + + Last All Time High + Last All Time High - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/benchmark/benchmark.component.html + 65 + + + Change from All Time High + Change from All Time High - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/benchmark/benchmark.component.html + 81 + + + from ATH + from ATH - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/benchmark/benchmark.component.html + 83 + + + Market data provided by + Market data provided by - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/data-provider-credits/data-provider-credits.component.html + 2 + + + Savings Rate per Month + Savings Rate per Month - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 10 + + + Annual Interest Rate + Annual Interest Rate - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 21 + + + Retirement Date + Retirement Date - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 32 + + + Projected Total Amount + Projected Total Amount - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 57 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 371 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 34 + + + Savings + Savings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 381 + + + Allocation + Allocation - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 98 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 46 + + + Show all + Show all - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 197 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 81 + + + Account + Account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 4 + + + Asia-Pacific + Asia-Pacific - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 5 + + + Asset Class + Asset Class - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 6 + + + Asset Sub Class + Asset Sub Class - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 7 + + + Core + Core - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 9 + + + Switch to Ghostfolio Premium or Ghostfolio Open Source easily + Switch to Ghostfolio Premium or Ghostfolio Open Source easily - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 10 + + + Switch to Ghostfolio Premium easily + Switch to Ghostfolio Premium easily - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 11 + + + Switch to Ghostfolio Open Source or Ghostfolio Basic easily + Switch to Ghostfolio Open Source or Ghostfolio Basic easily - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 12 + + + Emergency Fund + Emergency Fund - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 13 + + + Grant + Grant - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 14 + + + Higher Risk + Higher Risk - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 15 + + + This activity already exists. + This activity already exists. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 16 + + + Japan + Japan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 17 + + + Lower Risk + Lower Risk - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 18 + + + Month + Month - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 19 + + + Months + Months - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 20 + + + Other + Other - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 21 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 389 + + + Preset + Preset - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 22 + + + Retirement Provision + Retirement Provision - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 23 + + + Satellite + Satellite - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 24 + + + Symbol + Symbol - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 25 + + + Tag + Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 26 + + + Year + Year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 27 + + + Years + Years - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 28 + + + Buy + Buy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 31 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 33 + + + Valuable + Valuable - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 35 + + + Liability + Liability - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 36 + + + Sell + Sell - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 37 + + + Cash + Cash - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 40 + + + Commodity + Commodity - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 41 + + + Equity + Equity - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 42 + + + Fixed Income + Fixed Income - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 43 + + + Real Estate + Real Estate - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 45 + + + Bond + Bond - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 48 + + + Cryptocurrency + Cryptocurrency - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 49 + + + ETF + ETF - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 50 + + + Mutual Fund + Mutual Fund - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 51 + + + Precious Metal + Precious Metal - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 52 + + + Private Equity + Private Equity - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 53 + + + Stock + Stock - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 54 + + + Africa + Africa - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 61 + + + Asia + Asia - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 62 + + + Europe + Europe - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 63 + + + North America + North America - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 64 + + + Oceania + Oceania - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 65 + + + South America + South America - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 66 + + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 69 + + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 70 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 73 + + + Membership + Membership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/membership-card/membership-card.component.html + 18 + + + Valid until + Valid until - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/membership-card/membership-card.component.html + 23 + + + Time to add your first activity. + Time to add your first activity. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html + 12 + + + No data available + No data available - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 391 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 404 + + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 + + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 40 + + + Cash Balances + Cash Balances - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 115 + + + Starting from + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 195 + + + year + year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 191 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 197 @@ -15698,7 +6166,7 @@ Permission apps/client/src/app/components/access-table/access-table.component.html - 17 + 18 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15710,7 +6178,7 @@ Restricted view apps/client/src/app/components/access-table/access-table.component.html - 25 + 26 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15858,7 +6326,7 @@ View apps/client/src/app/components/access-table/access-table.component.html - 22 + 23 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15986,7 +6454,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 - 107 + 96 @@ -16050,7 +6518,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 70 + 61 @@ -16133,36 +6601,20 @@ 278 - - Australia - Australia - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 403 - - - - Bulgaria - Bulgaria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 558 - - By ETF Holding By ETF Holding apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 342 + 333 - - Approximation based on the Top 15 holdings per ETF - Approximation based on the Top 15 holdings per ETF + + Approximation based on the top holdings of each ETF + Approximation based on the top holdings of each ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 350 + 340 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index a5a4d5d3b..ab455cd68 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -14,7 +14,7 @@ Alias apps/client/src/app/components/access-table/access-table.component.html - 3 + 4 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -26,7 +26,7 @@ Beneficiário (a) apps/client/src/app/components/access-table/access-table.component.html - 10 + 11 @@ -54,7 +54,7 @@ Detalhes apps/client/src/app/components/access-table/access-table.component.html - 32 + 33 @@ -62,7 +62,7 @@ Revogar apps/client/src/app/components/access-table/access-table.component.html - 59 + 63 @@ -82,7 +82,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 72 + 81 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -102,7 +102,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 100 + 113 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -134,7 +134,7 @@ Nome apps/client/src/app/components/accounts-table/accounts-table.component.html - 34 + 39 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -178,7 +178,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 11 + 12 @@ -186,7 +186,7 @@ Total apps/client/src/app/components/accounts-table/accounts-table.component.html - 45 + 50 @@ -194,7 +194,7 @@ Moeda apps/client/src/app/components/accounts-table/accounts-table.component.html - 55 + 60 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -226,7 +226,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 117 + 130 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -238,11 +238,11 @@ Valor apps/client/src/app/components/accounts-table/accounts-table.component.html - 152 + 165 apps/client/src/app/components/accounts-table/accounts-table.component.html - 187 + 200 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -294,7 +294,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 25 + 26 @@ -302,7 +302,7 @@ Editar apps/client/src/app/components/accounts-table/accounts-table.component.html - 254 + 271 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -330,7 +330,7 @@ Eliminar apps/client/src/app/components/accounts-table/accounts-table.component.html - 264 + 281 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -1089,227 +1089,7 @@ 370 - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 188 @@ -1477,30 +1257,6 @@ 6 - - This feature requires a subscription. - Esta funcionalidade requer uma subscrição. - - apps/client/src/app/components/home-summary/home-summary.component.ts - 113 - - - apps/client/src/app/core/http-response.interceptor.ts - 69 - - - - Upgrade Plan - Atualizar Plano - - apps/client/src/app/components/home-summary/home-summary.component.ts - 115 - - - apps/client/src/app/core/http-response.interceptor.ts - 72 - - Summary Resumo @@ -1514,7 +1270,7 @@ Depósito libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 357 + 361 @@ -1654,7 +1410,7 @@ Desempenho Líquido Absoluto apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 124 + 126 @@ -1662,7 +1418,7 @@ Desempenho Líquido apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 139 + 141 @@ -1670,7 +1426,7 @@ Ativos Totais apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 165 + 167 @@ -1678,7 +1434,7 @@ Bens de valor apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 178 + 180 @@ -1686,7 +1442,7 @@ Fundo de Emergência apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 + 192 apps/client/src/app/pages/features/features-page.html @@ -1702,7 +1458,7 @@ Poder de Compra apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 237 + 252 @@ -1710,7 +1466,7 @@ Excluído da Análise apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 249 + 264 @@ -1718,7 +1474,7 @@ Valor Líquido apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 284 + 297 @@ -1726,7 +1482,7 @@ Desempenho Anual apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 296 + 309 @@ -1738,7 +1494,7 @@ apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 330 + 343 apps/client/src/app/pages/features/features-page.html @@ -1758,7 +1514,7 @@ Por favor, insira o valor do seu fundo de emergência: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 57 + 58 @@ -1914,7 +1670,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 45 + 46 @@ -1926,7 +1682,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 79 + 81 @@ -1994,7 +1750,7 @@ Esta funcionalidade está atualmente indisponível. apps/client/src/app/core/http-response.interceptor.ts - 60 + 53 @@ -2002,11 +1758,11 @@ Por favor tente novamente mais tarde. apps/client/src/app/core/http-response.interceptor.ts - 62 + 55 apps/client/src/app/core/http-response.interceptor.ts - 91 + 80 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2018,7 +1774,7 @@ Oops! Ocorreu um erro. apps/client/src/app/core/http-response.interceptor.ts - 89 + 78 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2030,7 +1786,7 @@ OK apps/client/src/app/core/http-response.interceptor.ts - 92 + 81 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts @@ -2382,7 +2138,7 @@ Dinheiro apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 211 + 226 @@ -2730,7 +2486,7 @@ Por Conta apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 294 + 286 @@ -2746,7 +2502,7 @@ Por Classe de Ativo apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 86 + 85 @@ -2754,7 +2510,7 @@ Por Posse apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 109 + 107 @@ -2762,7 +2518,7 @@ Por Setor apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 132 + 130 @@ -2770,7 +2526,7 @@ Por Continente apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 156 + 153 @@ -2778,7 +2534,7 @@ Por País apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 271 + 264 @@ -2786,7 +2542,7 @@ Regiões apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 203 + 198 apps/client/src/app/pages/public/public-page.html @@ -2798,7 +2554,7 @@ Mercados Desenvoldidos apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 228 + 222 apps/client/src/app/pages/public/public-page.html @@ -2810,7 +2566,7 @@ Mercados Emergentes apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 237 + 231 apps/client/src/app/pages/public/public-page.html @@ -2822,7 +2578,7 @@ Outros Mercados apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 246 + 240 apps/client/src/app/pages/public/public-page.html @@ -3218,7 +2974,7 @@ Juros libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 367 + 371 libs/ui/src/lib/i18n.ts @@ -3230,7 +2986,7 @@ Poupanças libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 377 + 381 @@ -4146,7 +3902,7 @@ Por Prestador de ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 314 + 306 @@ -4410,7 +4166,7 @@ Liabilities apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 264 + 279 apps/client/src/app/pages/features/features-page.html @@ -4589,11059 +4345,1771 @@ Founded Founded - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 72 + + + Origin + Origin - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 77 + + + Region + Region - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 82 + + + Available in + Available in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 87 + + + ✅ Yes + ✅ Sim - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 116 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 162 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 174 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 181 + + + ❌ No + ❌ Não - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 145 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 157 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 164 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 176 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 183 + + + ❌ No + ❌ No - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 118 + + + Self-Hosting + Self-Hosting - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 123 + + + Use anonymously + Use anonymously - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 150 + + + Free Plan + Free Plan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 169 + + + Notes + Notes - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 202 + + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 227 + + + Personal Finance Tools + Personal Finance Tools - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 308 + + + Guides + Guides - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 22 + + + Glossary + Glossary - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/resources/resources-page.html + 92 + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Stocks, ETFs, bonds, cryptocurrencies, commodities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 22 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 62 + + + Mortgages, personal loans, credit cards + Mortgages, personal loans, credit cards - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 54 + + + Luxury items, real estate, private companies + Luxury items, real estate, private companies - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 70 + + + Buy + Buy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 31 + + + Valuable + Valuable - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 35 + + + ETFs without Countries + ETFs without Countries - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 78 + + + ETFs without Sectors + ETFs without Sectors - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 83 + + + Assets + Assets - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 239 + + + Preset + Preset - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 22 + + + By Market + By Market - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 175 + + + Asia-Pacific + Asia-Pacific - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 5 + + + Japan + Japan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/i18n.ts + 17 + + + Welcome to Ghostfolio + Welcome to Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 7 + + + Setup your accounts + Setup your accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 15 + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Get a comprehensive financial overview by adding your bank and brokerage accounts. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + Capture your activities + Capture your activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 24 + + + Record your investment activities to keep your portfolio up to date. + Record your investment activities to keep your portfolio up to date. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + Monitor and analyze your portfolio + Monitor and analyze your portfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 33 + + + Track your progress in real-time with comprehensive analysis and insights. + Track your progress in real-time with comprehensive analysis and insights. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + No data available + No data available - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/public/public-page.html + 123 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 88 + + + Ready to take control of your personal finances? + Ready to take control of your personal finances? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 8 + + + Setup accounts + Setup accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/home-overview/home-overview.html + 48 + + + Biometric Authentication + Biometric Authentication - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 188 + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 + apps/client/src/app/pages/open/open-page.html + 6 - - Origin - Origin + + Active Users + Active Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 40 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 62 + + + New Users + New Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 51 + + + Users in Slack community + Users in Slack community - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 75 + + + Contributors on GitHub + Contributors on GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 89 + + + Stars on GitHub + Stars on GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 103 + + + Pulls on Docker Hub + Pulls on Docker Hub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 105 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 117 + + + Uptime + Uptime - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/open/open-page.html + 132 + + + Export Data + Export Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 231 + + + Currencies + Currencies - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 73 + + + Our + Our - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + Visit + Visit - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + Discover other exciting Open Source Software projects + Discover other exciting Open Source Software projects - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/overview/faq-overview-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/saas/saas-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html + 4 + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/features/features-page.html + 6 + + + Discover the latest Ghostfolio updates and insights on personal finance + Discover the latest Ghostfolio updates and insights on personal finance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/blog/blog-page.html + 7 + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + Manage your wealth like a boss + Manage your wealth like a boss - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 5 + + + 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 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. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 9 + + + Get Started + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 419 + + + or + or - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 46 + + + Monthly Active Users + Monthly Active Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 69 + + + As seen in + As seen in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 113 + + + Protect your assets. Refine your personal investment strategy. + Protect your assets. Refine your personal investment strategy. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 215 + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 219 + + + 360° View + 360° View - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 230 + + + Web3 Ready + Web3 Ready - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 241 + + + Use Ghostfolio anonymously and own your financial data. + Use Ghostfolio anonymously and own your financial data. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 243 + + + Open Source + Open Source - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 251 + + + Benefit from continuous improvements through a strong community. + Benefit from continuous improvements through a strong community. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 253 + + + Why Ghostfolio? + Why Ghostfolio? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 262 + + + Ghostfolio is for you if you are... + Ghostfolio is for you if you are... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 + apps/client/src/app/pages/landing/landing-page.html + 263 - - Region - Region + + trading stocks, ETFs or cryptocurrencies on multiple platforms + trading stocks, ETFs or cryptocurrencies on multiple platforms - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 270 + + + pursuing a buy & hold strategy + pursuing a buy & hold strategy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 276 + + + interested in getting insights of your portfolio composition + interested in getting insights of your portfolio composition - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 281 + + + valuing privacy and data ownership + valuing privacy and data ownership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 286 + + + into minimalism + into minimalism - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 289 + + + caring about diversifying your financial resources + caring about diversifying your financial resources - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 293 + + + interested in financial independence + interested in financial independence - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 297 + + + saying no to spreadsheets in + saying no to spreadsheets in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 301 + + + still reading this list + still reading this list - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 304 + + + Learn more about Ghostfolio + Learn more about Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 309 + + + What our users are saying + What our users are saying - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 317 + + + Members from around the globe are using Ghostfolio Premium + Members from around the globe are using Ghostfolio Premium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 349 + + + How does Ghostfolio work? + How does Ghostfolio work? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 361 + + + Sign up anonymously* + Sign up anonymously* - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 370 + + + * no e-mail address nor credit card required + * no e-mail address nor credit card required - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 372 + + + Add any of your historical transactions + Add any of your historical transactions - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 383 + + + Get valuable insights of your portfolio composition + Get valuable insights of your portfolio composition - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 395 + + + Are you ready? + Are you ready? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 407 + + + Join now or check out the example account + Join now or check out the example account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 408 + + + Live Demo + Live Demo - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 49 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 424 + + + Get the full picture of your personal finances across multiple platforms. + Get the full picture of your personal finances across multiple platforms. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 232 + + + Get started in only 3 steps + Get started in only 3 steps - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/pages/landing/landing-page.html + 364 + + + faq + perguntas-mais-frequentes - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/app.component.ts + 66 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 + apps/client/src/app/core/paths.ts + 3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - - Available in - Available in - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - - ✅ Yes - ✅ Sim - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - - ❌ No - ❌ Não - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 176 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - - ❌ No - ❌ No - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 118 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118 - - - - Self-Hosting - Self-Hosting - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - - Use anonymously - Use anonymously - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 150 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 - - - - Free Plan - Free Plan - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - - Notes - Notes - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - - Personal Finance Tools - Personal Finance Tools - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - - Guides - Guides - - apps/client/src/app/pages/resources/resources-page.html - 22 - - - - Glossary - Glossary - - apps/client/src/app/pages/resources/resources-page.html - 92 - - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Stocks, ETFs, bonds, cryptocurrencies, commodities - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 - - - - Mortgages, personal loans, credit cards - Mortgages, personal loans, credit cards - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 - - - - Luxury items, real estate, private companies - Luxury items, real estate, private companies - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 - - - - Buy - Buy - - libs/ui/src/lib/i18n.ts - 31 - - - - Valuable - Valuable - - libs/ui/src/lib/i18n.ts - 35 - - - - ETFs without Countries - ETFs without Countries - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 78 - - - - ETFs without Sectors - ETFs without Sectors - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 83 - - - - Assets - Assets - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 224 - - - - Preset - Preset - - libs/ui/src/lib/i18n.ts - 22 - - - - By Market - By Market - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 179 - - - - Asia-Pacific - Asia-Pacific - - libs/ui/src/lib/i18n.ts - 5 - - - - Japan - Japan - - libs/ui/src/lib/i18n.ts - 17 - - - - Welcome to Ghostfolio - Welcome to Ghostfolio - - apps/client/src/app/components/home-overview/home-overview.html - 7 - - - - Setup your accounts - Setup your accounts - - apps/client/src/app/components/home-overview/home-overview.html - 15 - - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Get a comprehensive financial overview by adding your bank and brokerage accounts. - - apps/client/src/app/components/home-overview/home-overview.html - 17 - - - - Capture your activities - Capture your activities - - apps/client/src/app/components/home-overview/home-overview.html - 24 - - - - Record your investment activities to keep your portfolio up to date. - Record your investment activities to keep your portfolio up to date. - - apps/client/src/app/components/home-overview/home-overview.html - 26 - - - - Monitor and analyze your portfolio - Monitor and analyze your portfolio - - apps/client/src/app/components/home-overview/home-overview.html - 33 - - - - Track your progress in real-time with comprehensive analysis and insights. - Track your progress in real-time with comprehensive analysis and insights. - - apps/client/src/app/components/home-overview/home-overview.html - 35 - - - - No data available - No data available - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 258 - - - apps/client/src/app/pages/public/public-page.html - 123 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 86 - - - - Ready to take control of your personal finances? - Ready to take control of your personal finances? - - apps/client/src/app/components/home-overview/home-overview.html - 8 - - - - Setup accounts - Setup accounts - - apps/client/src/app/components/home-overview/home-overview.html - 48 - - - - Biometric Authentication - Biometric Authentication - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 - - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - - apps/client/src/app/pages/open/open-page.html - 6 - - - - Active Users - Active Users - - apps/client/src/app/pages/open/open-page.html - 40 - - - apps/client/src/app/pages/open/open-page.html - 62 - - - - New Users - New Users - - apps/client/src/app/pages/open/open-page.html - 51 - - - - Users in Slack community - Users in Slack community - - apps/client/src/app/pages/open/open-page.html - 75 - - - - Contributors on GitHub - Contributors on GitHub - - apps/client/src/app/pages/open/open-page.html - 89 - - - - Stars on GitHub - Stars on GitHub - - apps/client/src/app/pages/landing/landing-page.html - 87 - - - apps/client/src/app/pages/open/open-page.html - 103 - - - - Pulls on Docker Hub - Pulls on Docker Hub - - apps/client/src/app/pages/landing/landing-page.html - 105 - - - apps/client/src/app/pages/open/open-page.html - 117 - - - - Uptime - Uptime - - apps/client/src/app/pages/open/open-page.html - 132 - - - - Export Data - Export Data - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 - - - - Currencies - Currencies - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 73 - - - - Our - Our - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 - - - - Visit - Visit - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 - - - - Discover other exciting Open Source Software projects - Discover other exciting Open Source Software projects - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 - - - - Frequently Asked Questions (FAQ) - Frequently Asked Questions (FAQ) - - apps/client/src/app/pages/faq/overview/faq-overview-page.html - 4 - - - apps/client/src/app/pages/faq/saas/saas-page.html - 4 - - - apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html - 4 - - - - Check out the numerous features of Ghostfolio to manage your wealth - Check out the numerous features of Ghostfolio to manage your wealth - - apps/client/src/app/pages/features/features-page.html - 6 - - - - Discover the latest Ghostfolio updates and insights on personal finance - Discover the latest Ghostfolio updates and insights on personal finance - - apps/client/src/app/pages/blog/blog-page.html - 7 - - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - - apps/client/src/app/pages/pricing/pricing-page.html - 24 - - - - Manage your wealth like a boss - Manage your wealth like a boss - - apps/client/src/app/pages/landing/landing-page.html - 5 - - - - 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 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. - - apps/client/src/app/pages/landing/landing-page.html - 9 - - - - Get Started - Get Started - - apps/client/src/app/pages/landing/landing-page.html - 41 - - - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - or - - apps/client/src/app/pages/landing/landing-page.html - 46 - - - - Monthly Active Users - Monthly Active Users - - apps/client/src/app/pages/landing/landing-page.html - 69 - - - - As seen in - As seen in - - apps/client/src/app/pages/landing/landing-page.html - 113 - - - - Protect your assets. Refine your personal investment strategy. - Protect your assets. Refine your personal investment strategy. - - apps/client/src/app/pages/landing/landing-page.html - 215 - - - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - - apps/client/src/app/pages/landing/landing-page.html - 219 - - - - 360° View - 360° View - - apps/client/src/app/pages/landing/landing-page.html - 230 - - - - Web3 Ready - Web3 Ready - - apps/client/src/app/pages/landing/landing-page.html - 241 - - - - Use Ghostfolio anonymously and own your financial data. - Use Ghostfolio anonymously and own your financial data. - - apps/client/src/app/pages/landing/landing-page.html - 243 - - - - Open Source - Open Source - - apps/client/src/app/pages/landing/landing-page.html - 251 - - - - Benefit from continuous improvements through a strong community. - Benefit from continuous improvements through a strong community. - - apps/client/src/app/pages/landing/landing-page.html - 253 - - - - Why Ghostfolio? - Why Ghostfolio? - - apps/client/src/app/pages/landing/landing-page.html - 262 - - - - Ghostfolio is for you if you are... - Ghostfolio is for you if you are... - - apps/client/src/app/pages/landing/landing-page.html - 263 - - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - trading stocks, ETFs or cryptocurrencies on multiple platforms - - apps/client/src/app/pages/landing/landing-page.html - 270 - - - - pursuing a buy & hold strategy - pursuing a buy & hold strategy - - apps/client/src/app/pages/landing/landing-page.html - 276 - - - - interested in getting insights of your portfolio composition - interested in getting insights of your portfolio composition - - apps/client/src/app/pages/landing/landing-page.html - 281 - - - - valuing privacy and data ownership - valuing privacy and data ownership - - apps/client/src/app/pages/landing/landing-page.html - 286 - - - - into minimalism - into minimalism - - apps/client/src/app/pages/landing/landing-page.html - 289 - - - - caring about diversifying your financial resources - caring about diversifying your financial resources - - apps/client/src/app/pages/landing/landing-page.html - 293 - - - - interested in financial independence - interested in financial independence - - apps/client/src/app/pages/landing/landing-page.html - 297 - - - - saying no to spreadsheets in - saying no to spreadsheets in - - apps/client/src/app/pages/landing/landing-page.html - 301 - - - - still reading this list - still reading this list - - apps/client/src/app/pages/landing/landing-page.html - 304 - - - - Learn more about Ghostfolio - Learn more about Ghostfolio - - apps/client/src/app/pages/landing/landing-page.html - 309 - - - - What our users are saying - What our users are saying - - apps/client/src/app/pages/landing/landing-page.html - 317 - - - - Members from around the globe are using Ghostfolio Premium - Members from around the globe are using Ghostfolio Premium - - apps/client/src/app/pages/landing/landing-page.html - 349 - - - - How does Ghostfolio work? - How does Ghostfolio work? - - apps/client/src/app/pages/landing/landing-page.html - 361 - - - - Sign up anonymously* - Sign up anonymously* - - apps/client/src/app/pages/landing/landing-page.html - 370 - - - - * no e-mail address nor credit card required - * no e-mail address nor credit card required - - apps/client/src/app/pages/landing/landing-page.html - 372 - - - - Add any of your historical transactions - Add any of your historical transactions - - apps/client/src/app/pages/landing/landing-page.html - 383 - - - - Get valuable insights of your portfolio composition - Get valuable insights of your portfolio composition - - apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 - - - - Join now or check out the example account - Join now or check out the example account - - apps/client/src/app/pages/landing/landing-page.html - 408 - - - - Live Demo - Live Demo - - apps/client/src/app/pages/landing/landing-page.html - 49 - - - apps/client/src/app/pages/landing/landing-page.html - 424 - - - - Get the full picture of your personal finances across multiple platforms. - Get the full picture of your personal finances across multiple platforms. - - apps/client/src/app/pages/landing/landing-page.html - 232 - - - - Get started in only 3 steps - Get started in only 3 steps - - apps/client/src/app/pages/landing/landing-page.html - 364 - - - - faq - perguntas-mais-frequentes - - apps/client/src/app/app.component.ts - 66 - - - apps/client/src/app/core/paths.ts - 3 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 37 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 42 - - - apps/client/src/app/pages/faq/faq-page.component.ts - 48 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 17 - - - - features - funcionalidades - - apps/client/src/app/app.component.ts - 67 - - - apps/client/src/app/components/header/header.component.ts - 78 - - - apps/client/src/app/components/header/header.component.ts - 83 - - - apps/client/src/app/core/paths.ts - 4 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 15 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 14 - - - apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts - 14 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 27 - - - - about - sobre - - apps/client/src/app/app.component.ts - 59 - - - apps/client/src/app/app.component.ts - 60 - - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/app.component.ts - 63 - - - apps/client/src/app/components/header/header.component.ts - 77 - - - apps/client/src/app/components/header/header.component.ts - 82 - - - apps/client/src/app/core/paths.ts - 2 - - - apps/client/src/app/pages/about/about-page.component.ts - 45 - - - apps/client/src/app/pages/about/about-page.component.ts - 50 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - apps/client/src/app/pages/about/about-page.component.ts - 74 - - - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 13 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 - - - - privacy-policy - politica-de-privacidade - - apps/client/src/app/app.component.ts - 64 - - - apps/client/src/app/core/paths.ts - 8 - - - apps/client/src/app/pages/about/about-page.component.ts - 63 - - - - license - licenca - - apps/client/src/app/app.component.ts - 61 - - - apps/client/src/app/core/paths.ts - 5 - - - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - - markets - mercados - - apps/client/src/app/app.component.ts - 68 - - - apps/client/src/app/components/header/header.component.ts - 79 - - - apps/client/src/app/components/header/header.component.ts - 84 - - - apps/client/src/app/core/paths.ts - 6 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 14 - - - - pricing - precos - - apps/client/src/app/app.component.ts - 69 - - - apps/client/src/app/components/header/header.component.ts - 80 - - - apps/client/src/app/components/header/header.component.ts - 85 - - - apps/client/src/app/components/home-summary/home-summary.component.ts - 125 - - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 - - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 38 - - - apps/client/src/app/core/http-response.interceptor.ts - 83 - - - apps/client/src/app/core/paths.ts - 7 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 16 - - - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 16 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 15 - - - libs/ui/src/lib/membership-card/membership-card.component.ts - 25 - - - - register - registo - - apps/client/src/app/app.component.ts - 70 - - - apps/client/src/app/components/header/header.component.ts - 86 - - - apps/client/src/app/core/auth.guard.ts - 55 - - - apps/client/src/app/core/paths.ts - 9 - - - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 16 - - - apps/client/src/app/pages/features/features-page.component.ts - 31 - - - apps/client/src/app/pages/landing/landing-page.component.ts - 27 - - - apps/client/src/app/pages/pricing/pricing-page.component.ts - 36 - - - - resources - recursos - - apps/client/src/app/app.component.ts - 71 - - - apps/client/src/app/components/header/header.component.ts - 81 - - - apps/client/src/app/components/header/header.component.ts - 87 - - - apps/client/src/app/core/paths.ts - 10 - - - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts - 13 - - - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 - - - apps/client/src/app/pages/features/features-page.component.ts - 32 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 29 - - - apps/client/src/app/pages/resources/resources-page.component.ts - 19 - - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8 - - - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16 - - - - Open Source Alternative to - Alternativa de software livre ao - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 38 - - - - 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 - 26 - - - - The Open Source Alternative to - A alternativa de software livre ao - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - - 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 - 23 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 - - - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - - Ready to take your investments to the next level? - Ready to take your investments to the next level? - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - - Get Started - Get Started - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - - Switzerland - Switzerland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 80 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 590 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 650 - - - - Global - Global - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 81 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 360 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 502 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 651 - - - - United States - United States - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 101 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 167 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 218 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 240 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 302 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 324 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 335 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 371 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 469 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 479 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 489 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 578 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 601 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 639 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 661 - - - - Belgium - Belgium - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 187 - - - - Germany - Germany - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 198 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 292 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 313 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 358 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 415 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 532 - - - - Austria - Austria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 270 - - - - Italy - Italy - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 - - - - Netherlands - Netherlands - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 436 - - - - Thailand - Thailand - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 458 - - - - New Zealand - New Zealand - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 500 - - - - Czech Republic - Czech Republic - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 511 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 568 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 611 - - - - (Last 24 hours) - (Last 24 hours) - - apps/client/src/app/pages/open/open-page.html - 37 - - - - (Last 30 days) - (Last 30 days) - - apps/client/src/app/pages/open/open-page.html - 48 - - - apps/client/src/app/pages/open/open-page.html - 59 - - - - (Last 90 days) - (Last 90 days) - - apps/client/src/app/pages/open/open-page.html - 127 - - - - Choose or drop a file here - Choose or drop a file here - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 - - - - You are using the Live Demo. - You are using the Live Demo. - - apps/client/src/app/app.component.html - 17 - - - - One-time fee, annual account fees - One-time fee, annual account fees - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 - - - - Distribution of corporate earnings - Distribution of corporate earnings - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 - - - - Oops! Could not get the historical exchange rate from - Oops! Could not get the historical exchange rate from - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 - - - - Fee - Fee - - libs/ui/src/lib/i18n.ts - 33 - - - - Interest - Interest - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 318 - - - - Revenue for lending out money - Revenue for lending out money - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 - - - - Add Tag - Add Tag - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 - - - - Do you really want to delete this tag? - Do you really want to delete this tag? - - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 79 - - - - Update tag - Update tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 - - - - Add tag - Add tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 - - - - France - France - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 522 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 547 - - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 111 - - - - Currency Cluster Risks - Currency Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 - - - - Account Cluster Risks - Account Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 - - - - Transfer Cash Balance - Transfer Cash Balance - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 - - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 - - - - Benchmark - Benchmark - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 284 - - - - Version - Version - - apps/client/src/app/components/admin-overview/admin-overview.html - 7 - - - - Settings - Settings - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 - - - - From - From - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 - - - - To - To - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 - - - - Transfer - Transfer - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 - - - - Finland - Finland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 539 - - - - Membership - Membership - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 23 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 40 - - - - Access - Access - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 28 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 46 - - - - Find holding... - Find holding... - - libs/ui/src/lib/assistant/assistant.component.ts - 138 - - - - No entries... - No entries... - - libs/ui/src/lib/assistant/assistant.html - 63 - - - libs/ui/src/lib/assistant/assistant.html - 84 - - - - Asset Profile - Asset Profile - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 - - - - Do you really want to delete this asset profile? - Do you really want to delete this asset profile? - - apps/client/src/app/components/admin-market-data/admin-market-data.service.ts - 13 - - - - Search - Search - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 - - - - Add Manually - Add Manually - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 - - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio é um dashboard de finanças pessoais para acompanhar os seus activos como acções, ETFs ou criptomoedas em múltiplas plataformas. - - apps/client/src/app/pages/i18n/i18n-page.html - 4 - - - - Last All Time High - Last All Time High - - libs/ui/src/lib/benchmark/benchmark.component.html - 65 - - - - User - User - - apps/client/src/app/components/admin-users/admin-users.html - 29 - - - - Ghostfolio vs comparison table - Ghostfolio vs comparison table - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - - Canada - Canada - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 631 - - - - Open Source Wealth Management Software - Open Source Wealth Management Software - - apps/client/src/app/pages/i18n/i18n-page.html - 14 - - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - - apps/client/src/app/pages/i18n/i18n-page.html - 9 - - - - Oops, cash balance transfer has failed. - Oops, cash balance transfer has failed. - - apps/client/src/app/pages/accounts/accounts-page.component.ts - 304 - - - - Poland - Poland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 139 - - - - South Africa - South Africa - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 259 - - - - Extreme Fear - Extreme Fear - - libs/ui/src/lib/i18n.ts - 69 - - - - Extreme Greed - Extreme Greed - - libs/ui/src/lib/i18n.ts - 70 - - - - Neutral - Neutral - - libs/ui/src/lib/i18n.ts - 73 - - - - Oops! Could not parse historical data. - Oops! Could not parse historical data. - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 232 - - - - Do you really want to delete this system message? - Do you really want to delete this system message? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 166 - - - - 50-Day Trend - 50-Day Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 15 - - - - 200-Day Trend - 200-Day Trend - - libs/ui/src/lib/benchmark/benchmark.component.html - 40 - - - - Cash Balances - Cash Balances - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 115 - - - - Starting from - Starting from - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/faq-page.component.ts + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + features + funcionalidades - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 67 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 83 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 24 + + + about + sobre - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 59 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 60 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 82 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 2 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 45 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 50 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 74 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/landing/landing-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 18 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 23 + + + privacy-policy + politica-de-privacidade - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 64 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 8 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 63 + + + license + licenca - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/core/paths.ts + 5 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/about/about-page.component.ts + 55 + + + markets + mercados - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/app.component.ts + 68 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.ts + 84 - - - year - year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 6 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 14 + + + pricing + precos - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 85 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/http-response.interceptor.ts + 72 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 7 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/membership-card/membership-card.component.ts + 25 + + + register + registo - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 86 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/auth.guard.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 31 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/landing/landing-page.component.ts + 27 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 36 + + + resources + recursos - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.ts + 71 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/core/paths.ts + 10 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/features/features-page.component.ts + 32 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/resources-page.component.ts + 19 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 + + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Explore the links below to compare a variety of personal finance tools with Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + Alternativa de software livre ao - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 42 + + + Open Source Alternative to + Alternativa de software livre ao - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 27 + + + The Open Source Alternative to + A alternativa de software livre ao - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 27 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 38 + + + open-source-alternative-to + alternativa-de-software-livre-ao - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 210 + + + Ready to take your investments to the next level? + Ready to take your investments to the next level? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 223 + + + Get Started + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 232 + + + Switzerland + Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 58 + + + Global + Global - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 59 + + + (Last 24 hours) + (Last 24 hours) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Last 30 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Last 90 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 127 + + + Choose or drop a file here + Choose or drop a file here - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 86 + + + You are using the Live Demo. + You are using the Live Demo. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/app.component.html + 17 + + + One-time fee, annual account fees + One-time fee, annual account fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 30 + + + Distribution of corporate earnings + Distribution of corporate earnings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 38 + + + Oops! Could not get the historical exchange rate from + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 226 + + + Fee + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 33 + + + Interest + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 331 + + + Revenue for lending out money + Revenue for lending out money - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 46 + + + Add Tag + Add Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Do you really want to delete this tag? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 79 + + + Update tag + Update tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 7 + + + Add tag + Add tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 8 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 111 + + + Currency Cluster Risks + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 135 + + + Account Cluster Risks + Account Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 148 + + + Transfer Cash Balance + Transfer Cash Balance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 284 + + + Version + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 28 + + + Transfer + Transfer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 64 + + + Membership + Membership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 40 + + + Access + Access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 46 + + + Find holding... + Find holding... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.component.ts + 138 + + + No entries... + No entries... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 84 + + + Asset Profile + Asset Profile - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + Do you really want to delete this asset profile? + Do you really want to delete this asset profile? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/admin-market-data.service.ts + 13 + + + Search + Search - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + Add Manually + Add Manually - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio é um dashboard de finanças pessoais para acompanhar os seus activos como acções, ETFs ou criptomoedas em múltiplas plataformas. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + Last All Time High + Last All Time High - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 65 + + + User + User - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio vs comparison table - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 49 + + + Open Source Wealth Management Software + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 9 + + + Oops, cash balance transfer has failed. + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 304 + + + Extreme Fear + Extreme Fear - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 69 + + + Extreme Greed + Extreme Greed - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 70 + + + Neutral + Neutral - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 73 + + + Oops! Could not parse historical data. + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 232 + + + Do you really want to delete this system message? + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 166 + + + 50-Day Trend + 50-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 + + + 200-Day Trend + 200-Day Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 40 + + + Cash Balances + Cash Balances - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 115 + + + Starting from + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 195 + + + year + year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 191 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 197 @@ -15698,7 +6166,7 @@ Permission apps/client/src/app/components/access-table/access-table.component.html - 17 + 18 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15710,7 +6178,7 @@ Restricted view apps/client/src/app/components/access-table/access-table.component.html - 25 + 26 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15858,7 +6326,7 @@ View apps/client/src/app/components/access-table/access-table.component.html - 22 + 23 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15986,7 +6454,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 - 107 + 96 @@ -16050,7 +6518,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 70 + 61 @@ -16133,36 +6601,20 @@ 278 - - Australia - Australia - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 403 - - - - Bulgaria - Bulgaria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 558 - - By ETF Holding By ETF Holding apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 342 + 333 - - Approximation based on the Top 15 holdings per ETF - Approximation based on the Top 15 holdings per ETF + + Approximation based on the top holdings of each ETF + Approximation based on the top holdings of each ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 350 + 340 diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 0138931b1..05e2bae98 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -78,15570 +78,6038 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 18 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 23 + + + faq + sss - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + apps/client/src/app/app.component.ts + 66 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 3 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + features + oezellikler - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + apps/client/src/app/app.component.ts + 67 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 83 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 4 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 26 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 24 + + + license + lisans - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 5 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 55 + + + markets + piyasalar - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + apps/client/src/app/app.component.ts + 68 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 84 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 6 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 26 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 14 + + + pricing + fiyatlandirma - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + apps/client/src/app/app.component.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 85 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + apps/client/src/app/core/http-response.interceptor.ts + 72 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 7 - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 26 + libs/ui/src/lib/membership-card/membership-card.component.ts + 25 + + + privacy-policy + gizlilik-politikasi - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 26 + apps/client/src/app/app.component.ts + 64 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 8 - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 63 + + + register + kayit-ol - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + apps/client/src/app/app.component.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 86 - - - faq - sss - apps/client/src/app/app.component.ts - 66 + apps/client/src/app/core/auth.guard.ts + 55 apps/client/src/app/core/paths.ts - 3 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 + 9 - apps/client/src/app/pages/faq/faq-page.component.ts - 37 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 16 - apps/client/src/app/pages/faq/faq-page.component.ts - 42 + apps/client/src/app/pages/features/features-page.component.ts + 31 - apps/client/src/app/pages/faq/faq-page.component.ts - 48 + apps/client/src/app/pages/landing/landing-page.component.ts + 27 - apps/client/src/app/pages/resources/resources-page.component.ts - 17 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 36 - - features - oezellikler + + resources + kaynaklar apps/client/src/app/app.component.ts - 67 + 71 apps/client/src/app/components/header/header.component.ts - 78 + 81 apps/client/src/app/components/header/header.component.ts - 83 + 87 apps/client/src/app/core/paths.ts - 4 + 10 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts 13 apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 + 14 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 + apps/client/src/app/pages/features/features-page.component.ts + 32 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 26 - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 14 + apps/client/src/app/pages/resources/resources-page.component.ts + 19 + + + Personal Finance + Kişisel Finans - apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts - 14 + apps/client/src/app/app.component.html + 55 + + + Markets + Piyasalar - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 + apps/client/src/app/app.component.html + 58 - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 386 - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 27 + apps/client/src/app/components/home-market/home-market.html + 2 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 27 + apps/client/src/app/pages/resources/resources-page.html + 56 + + + Resources + Piyasalar - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 27 + apps/client/src/app/app.component.html + 60 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 289 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 27 + apps/client/src/app/pages/resources/resources-page.html + 4 + + + About + Hakkında - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 27 + apps/client/src/app/app.component.html + 66 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 357 + + + Blog + Blog - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 27 + apps/client/src/app/app.component.html + 68 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 27 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html + 204 - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 27 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/07/ghostfolio-meets-internet-identity/ghostfolio-meets-internet-identity-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html + 209 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html + 195 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/10/hacktoberfest-2022/hacktoberfest-2022-page.html + 181 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/12/the-importance-of-tracking-your-personal-finances/the-importance-of-tracking-your-personal-finances-page.html + 168 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/01/ghostfolio-auf-sackgeld-vorgestellt/ghostfolio-auf-sackgeld-vorgestellt-page.html + 178 - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/02/ghostfolio-meets-umbrel/ghostfolio-meets-umbrel-page.html + 202 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html + 252 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html + 233 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.html + 243 - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.html + 154 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.html + 273 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html + 181 - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.html + 148 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.html + 270 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 27 + apps/client/src/app/pages/blog/blog-page.html + 5 + + + Changelog + Değişiklik Günlüğü - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 27 + apps/client/src/app/app.component.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 27 + apps/client/src/app/pages/about/changelog/changelog-page.html + 4 + + + Features + Özellikler - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 27 + apps/client/src/app/app.component.html + 73 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 344 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 27 + apps/client/src/app/pages/features/features-page.html + 5 + + + Frequently Asked Questions (FAQ) + Sıkça Sorulan Sorular (SSS) - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 27 + apps/client/src/app/app.component.html + 76 - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 27 + apps/client/src/app/pages/about/overview/about-overview-page.html + 146 + + + License + Lisans - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 27 + apps/client/src/app/app.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 27 + apps/client/src/app/pages/about/license/license-page.html + 4 + + + Pricing + Fiyatlandırma - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 27 + apps/client/src/app/app.component.html + 86 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 98 - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 301 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 370 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 188 + + + Privacy Policy + Gizlilik Politikası - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 27 + apps/client/src/app/app.component.html + 90 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 27 + apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html + 4 + + + Community + Topluluk - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 27 + apps/client/src/app/app.component.html + 105 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 81 - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 86 - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 90 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 94 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 98 - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 103 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 108 - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 112 + + + apps/client/src/app/pages/features/features-page.html + 256 - - license - lisans + + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. + Alım satımda kayıp riski büyük boyutta olabilir. Kısa vadede ihtiyaç duyabileceğiniz parayla yatırım yapmak tavsiye edilmez. - apps/client/src/app/app.component.ts - 61 + apps/client/src/app/app.component.html + 182 + + + Alias + Takma Ad - apps/client/src/app/core/paths.ts - 5 + apps/client/src/app/components/access-table/access-table.component.html + 4 - apps/client/src/app/pages/about/about-page.component.ts - 55 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 11 - - markets - piyasalar + + Grantee + Hibe Alan / Alıcı - apps/client/src/app/app.component.ts - 68 + apps/client/src/app/components/access-table/access-table.component.html + 11 + + + Type + Tip - apps/client/src/app/components/header/header.component.ts - 79 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 28 - apps/client/src/app/components/header/header.component.ts - 84 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 22 - apps/client/src/app/core/paths.ts - 6 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 12 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 + libs/ui/src/lib/activities-table/activities-table.component.html + 160 + + + Details + Ayrıntılar - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 + apps/client/src/app/components/access-table/access-table.component.html + 33 + + + Revoke + Geri Al - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 14 + apps/client/src/app/components/access-table/access-table.component.html + 63 - - pricing - fiyatlandirma + + Do you really want to revoke this granted access? + Bu erişim iznini geri almayı gerçekten istiyor musunuz? - apps/client/src/app/app.component.ts - 69 + apps/client/src/app/components/access-table/access-table.component.ts + 50 + + + Cash Balance + Nakit Bakiye - apps/client/src/app/components/header/header.component.ts - 80 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 45 - apps/client/src/app/components/header/header.component.ts - 85 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 130 - apps/client/src/app/components/home-summary/home-summary.component.ts - 125 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 34 + + + Equity + Menkul Kıymet - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 56 + + + Platform + Platform - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 38 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 65 - apps/client/src/app/core/http-response.interceptor.ts - 83 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 81 - apps/client/src/app/core/paths.ts - 7 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 48 + + + Activities + İşlemler - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 61 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 90 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 113 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 150 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 16 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 44 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 + apps/client/src/app/components/admin-users/admin-users.html + 134 - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 16 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 221 - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 15 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 331 - libs/ui/src/lib/membership-card/membership-card.component.ts - 25 + apps/client/src/app/pages/portfolio/activities/activities-page.html + 4 - - privacy-policy - gizlilik-politikasi + + Name + Ad - apps/client/src/app/app.component.ts - 64 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 39 - apps/client/src/app/core/paths.ts - 8 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 - apps/client/src/app/pages/about/about-page.component.ts - 63 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 226 - - - register - kayit-ol - apps/client/src/app/app.component.ts - 70 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 30 - apps/client/src/app/components/header/header.component.ts - 86 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 12 - apps/client/src/app/core/auth.guard.ts - 55 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 30 - apps/client/src/app/core/paths.ts - 9 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 12 - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 16 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 15 - apps/client/src/app/pages/features/features-page.component.ts - 31 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 134 - apps/client/src/app/pages/landing/landing-page.component.ts - 27 + libs/ui/src/lib/activities-table/activities-table.component.html + 137 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 36 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 28 + + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 12 - - resources - kaynaklar + + Total + Toplam - apps/client/src/app/app.component.ts - 71 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 50 + + + Currency + Para Birimi - apps/client/src/app/components/header/header.component.ts - 81 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 60 - apps/client/src/app/components/header/header.component.ts - 87 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 130 - apps/client/src/app/core/paths.ts - 10 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 233 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 25 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 140 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts - 13 + libs/ui/src/lib/activities-table/activities-table.component.html + 275 + + + Value + Değer - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 165 - apps/client/src/app/pages/features/features-page.component.ts - 32 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 200 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 194 - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 195 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 197 - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 257 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 258 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 259 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 260 - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 29 + libs/ui/src/lib/account-balances/account-balances.component.html + 34 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 256 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 292 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 29 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 74 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 29 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 26 + + + Edit + Düzenle - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 271 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 175 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 29 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 91 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 29 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 429 + + + Delete + Sil - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 281 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 194 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 62 - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 90 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 199 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 29 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 101 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 29 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 81 - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 29 + libs/ui/src/lib/account-balances/account-balances.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 455 + + + Do you really want to delete this account? + Bu hesabı silmeyi gerçekten istiyor musunuz? - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.ts + 101 + + + Symbol + Sembol - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 24 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 115 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 34 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 29 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 301 + + + Data Source + Veri Kaynağı - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 54 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 51 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 125 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 150 + + + Attempts + Deneme - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 82 + + + Created + Oluşturuldu - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 91 + + + Finished + Tamamlandı - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 100 + + + Status + Durum - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 109 + + + Delete Jobs + İşleri Sil - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 158 + + + Asset Profiles + Varlık Profili - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 29 + libs/ui/src/lib/assistant/assistant.html + 67 + + + Historical Market Data + Tarihsel Piyasa Verisi - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 37 + + + View Data + Veri Gör - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 173 + + + View Stacktrace + Hata İzini Görüntüle - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 180 + + + Delete Job + İşleri Sil - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 186 + + + Details for + Detaylar - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 29 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 2 + + + Date + Tarih - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 29 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 6 - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 156 - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 29 + libs/ui/src/lib/account-balances/account-balances.component.html + 12 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 169 + + + Market Price + Piyasa Fiyatı - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 29 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 26 - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 29 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 112 + + + Cancel + İptal - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 29 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 46 - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 376 - apps/client/src/app/pages/resources/resources-page.component.ts - 19 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 40 - - - Personal Finance - Kişisel Finans - apps/client/src/app/app.component.html - 55 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 39 - - - Markets - Piyasalar - apps/client/src/app/app.component.html - 58 - - - apps/client/src/app/components/header/header.component.html - 386 - - - apps/client/src/app/components/home-market/home-market.html - 2 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 22 - apps/client/src/app/pages/resources/resources-page.html - 56 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 58 - - - Resources - Piyasalar - apps/client/src/app/app.component.html - 60 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 103 - apps/client/src/app/components/header/header.component.html - 80 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 57 - apps/client/src/app/components/header/header.component.html - 289 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 399 - apps/client/src/app/pages/resources/resources-page.html - 4 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 38 - - About - Hakkında + + Save + Kaydet - apps/client/src/app/app.component.html - 66 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 48 - apps/client/src/app/components/header/header.component.html - 111 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 383 - apps/client/src/app/components/header/header.component.html - 357 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 47 - - - Blog - Blog - apps/client/src/app/app.component.html - 68 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 46 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 204 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 29 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html - 183 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 65 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.html - 183 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 110 - apps/client/src/app/pages/blog/2022/07/ghostfolio-meets-internet-identity/ghostfolio-meets-internet-identity-page.html - 183 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 406 + + + Currencies + Para Birimleri - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html - 209 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 73 + + + ETFs without Countries + Ülkesi Olmayan ETF'ler - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html - 195 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 78 + + + ETFs without Sectors + Sektörü Olmayan ETF'ler - apps/client/src/app/pages/blog/2022/10/hacktoberfest-2022/hacktoberfest-2022-page.html - 181 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 83 + + + Filter by... + Filtrele... - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html - 141 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 282 + + + Asset Class + Varlık Sınıfı - apps/client/src/app/pages/blog/2022/12/the-importance-of-tracking-your-personal-finances/the-importance-of-tracking-your-personal-finances-page.html - 168 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 60 - apps/client/src/app/pages/blog/2023/01/ghostfolio-auf-sackgeld-vorgestellt/ghostfolio-auf-sackgeld-vorgestellt-page.html - 178 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 159 - apps/client/src/app/pages/blog/2023/02/ghostfolio-meets-umbrel/ghostfolio-meets-umbrel-page.html - 202 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 243 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html - 252 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 228 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html - 233 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 326 + + + Asset Sub Class + Varlık Alt Sınıfı - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.html - 243 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 69 - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.html - 154 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 168 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.html - 273 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 256 - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html - 181 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 237 - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.html - 148 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 342 + + + First Activity + İlk İşlem - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.html - 270 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 78 - apps/client/src/app/pages/blog/blog-page.html - 5 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 141 - - - Changelog - Değişiklik Günlüğü - apps/client/src/app/app.component.html - 71 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 209 - apps/client/src/app/pages/about/changelog/changelog-page.html - 4 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 50 - - Features - Özellikler + + Activities Count + İşlem Sayısı - apps/client/src/app/app.component.html - 73 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 87 + + + Historical Data + Tarihsel Veri - apps/client/src/app/components/header/header.component.html - 344 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 96 - apps/client/src/app/pages/features/features-page.html - 5 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 82 - - Frequently Asked Questions (FAQ) - Sıkça Sorulan Sorular (SSS) + + Sectors Count + Sektör Sayısı - apps/client/src/app/app.component.html - 76 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 105 + + + Countries Count + Ülke Sayısı - apps/client/src/app/pages/about/overview/about-overview-page.html - 146 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 114 - - License - Lisans + + Gather Recent Data + Son Veriyi Getir - apps/client/src/app/app.component.html - 80 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 144 + + + Gather All Data + Tüm Veriyi Getir - apps/client/src/app/pages/about/license/license-page.html - 4 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 147 - - Pricing - Fiyatlandırma + + Gather Profile Data + Profil Verisini Getir - apps/client/src/app/app.component.html - 86 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 150 - apps/client/src/app/components/header/header.component.html - 98 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 45 + + + Refresh + Yenile - apps/client/src/app/components/header/header.component.html - 301 - - - apps/client/src/app/components/header/header.component.html - 370 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 22 + + + Gather Historical Data + Tarihsel Veriyi Getir - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 32 + + + Sector + Sektör - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 254 + + + Country + Ülke - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 196 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-users/admin-users.html + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 264 + + + Sectors + Sektörler - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 202 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 327 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/public/public-page.html + 45 + + + Countries + Ülkeler - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 212 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 338 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 282 + + + Symbol Mapping + Sembol Eşleştirme - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 290 + + + Scraper Configuration + Veri Toplayıcı Yapılandırması - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 302 + + + Note + Not - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 363 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 311 + + + Add Asset Profile + Varlık Profili Ekle - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 7 + + + Name, symbol or ISIN + Ad, sembol ya da ISIN - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 25 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 120 + + + Please add a currency: + Lütfen bir para birimi giriniz: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 122 + + + Do you really want to delete this coupon? + Önbelleği temizlemeyi gerçekten istiyor musunuz? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 140 + + + Do you really want to delete this currency? + Bu para birimini silmeyi gerçekten istiyor musunuz? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 153 + + + Do you really want to flush the cache? + Önbelleği temizlemeyi gerçekten istiyor musunuz - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 183 + + + Please set your system message: + Lütfen sistem mesajınızı belirleyin: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 214 + + + User Count + Kullanıcı Sayısı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 13 + + + Activity Count + İşlem Sayısı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 23 + + + per User + Kullanıcı başına - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 32 + + + Exchange Rates + Döviz Kurları - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 37 + + + Add Currency + Para Birimi Ekle - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 104 + + + Tags + Etiketler - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 10 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 377 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 355 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + libs/ui/src/lib/assistant/assistant.html + 127 + + + User Signup + Kullanıcı Kaydı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 110 + + + Read-only Mode + Salt okunur mod - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 123 + + + System Message + Sistem Mesajı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 145 + + + Set Message + Mesaj Belirle - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 165 + + + Coupons + Kupon - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 173 + + + Add + Ekle - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 231 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + libs/ui/src/lib/account-balances/account-balances.component.html + 93 + + + Housekeeping + Genel Ayarlar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 238 + + + Flush Cache + Önbelleği temizle - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 242 + + + Add Platform + Platform Ekle - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 11 + + + Url + Url - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 350 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 50 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 22 + + + Accounts + Hesaplar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 64 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-users/admin-users.html + 113 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/header/header.component.html + 54 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/header/header.component.html + 262 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 357 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/accounts/accounts-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + libs/ui/src/lib/assistant/assistant.html + 107 + + + Do you really want to delete this platform? + Bu platformu silmeyi gerçekten istiyor musunuz? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-platform/admin-platform.component.ts + 79 - - Privacy Policy - Gizlilik Politikası + + Update platform + Platformu Güncelle - apps/client/src/app/app.component.html - 90 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 7 + + + Add platform + Platform Ekle - apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html - 4 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 8 - - Community - Topluluk + + Platforms + Platformlar - apps/client/src/app/app.component.html - 105 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 4 + + + Do you really want to delete this user? + Bu kullanıcıyı silmeyi gerçekten istiyor musunu? - apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + apps/client/src/app/components/admin-users/admin-users.component.ts + 113 + + + User + Kullanıcı - apps/client/src/app/components/user-account-settings/user-account-settings.html - 86 + apps/client/src/app/components/header/header.component.html + 230 + + + Registration + Kayıt - apps/client/src/app/components/user-account-settings/user-account-settings.html - 90 + apps/client/src/app/components/admin-users/admin-users.html + 96 + + + Engagement per Day + Günlük etkileşim - apps/client/src/app/components/user-account-settings/user-account-settings.html - 94 + apps/client/src/app/components/admin-users/admin-users.html + 158 + + + Last Request + Son Talep - apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + apps/client/src/app/components/admin-users/admin-users.html + 183 + + + Impersonate User + Kullanıcıyı Taklit Et - apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + apps/client/src/app/components/admin-users/admin-users.html + 222 + + + Delete User + Kullanıcıyı Sil - apps/client/src/app/components/user-account-settings/user-account-settings.html - 108 + apps/client/src/app/components/admin-users/admin-users.html + 232 + + + Performance + Performans - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 6 - apps/client/src/app/pages/features/features-page.html - 256 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 89 - - - The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. - Alım satımda kayıp riski büyük boyutta olabilir. Kısa vadede ihtiyaç duyabileceğiniz parayla yatırım yapmak tavsiye edilmez. - apps/client/src/app/app.component.html - 182 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 142 - - Alias - Takma Ad + + Compare with... + Karşılaştır... - apps/client/src/app/components/access-table/access-table.component.html - 3 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 19 + + + Manage Benchmarks + Karşılaştırma Ölçütlerini Yönet - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 11 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 38 - - Grantee - Hibe Alan / Alıcı + + Portfolio + Portföy - apps/client/src/app/components/access-table/access-table.component.html - 10 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts + 116 - - - Type - Tip - apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts + 41 + + + Benchmark + Karşılaştırma Ölçütü - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 22 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts + 128 + + + Current Market Mood + Piyasa Psikolojisi - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html 12 + + + Overview + Genel Bakış - libs/ui/src/lib/activities-table/activities-table.component.html - 160 + apps/client/src/app/components/header/header.component.html + 28 - - - Details - Ayrıntılar - apps/client/src/app/components/access-table/access-table.component.html - 32 + apps/client/src/app/components/header/header.component.html + 244 - - Revoke - Geri Al + + Portfolio + Portföy - apps/client/src/app/components/access-table/access-table.component.html - 59 + apps/client/src/app/components/header/header.component.html + 41 - - - Do you really want to revoke this granted access? - Bu erişim iznini geri almayı gerçekten istiyor musunuz? - apps/client/src/app/components/access-table/access-table.component.ts - 50 + apps/client/src/app/components/header/header.component.html + 254 - - Cash Balance - Nakit Bakiye + + Admin Control + Yönetici Kontrolü - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 45 + apps/client/src/app/components/header/header.component.html + 67 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 117 - - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 34 + apps/client/src/app/components/header/header.component.html + 278 - - Equity - Menkul Kıymet + + Me + Ben - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 56 + apps/client/src/app/components/header/header.component.html + 211 - - Platform - Platform + + My Ghostfolio + Ghostfolio'm - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 65 + apps/client/src/app/components/header/header.component.html + 269 + + + About Ghostfolio + Ghostfolio Hakkında - apps/client/src/app/components/accounts-table/accounts-table.component.html - 72 + apps/client/src/app/components/header/header.component.html + 309 - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 48 + apps/client/src/app/pages/about/overview/about-overview-page.html + 5 - - Activities - İşlemler - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 61 - + + Sign in + Giriş - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 90 + apps/client/src/app/components/header/header.component.html + 399 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 100 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 71 + + + Get started + Haydi Başlayalım - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 150 + apps/client/src/app/components/header/header.component.html + 411 + + + Sign in + Giriş - apps/client/src/app/components/admin-tag/admin-tag.component.html - 44 + apps/client/src/app/app-routing.module.ts + 141 - apps/client/src/app/components/admin-users/admin-users.html - 134 + apps/client/src/app/components/header/header.component.ts + 229 + + + Oops! Incorrect Security Token. + Hay Allah! Güvenlik anahtarı yanlış. - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 221 + apps/client/src/app/components/header/header.component.ts + 243 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 331 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 154 + + + Manage Activities + İşlemleri Yönet - apps/client/src/app/pages/portfolio/activities/activities-page.html - 4 + apps/client/src/app/components/home-holdings/home-holdings.html + 32 - - Name - Ad + + Fear + Korku - apps/client/src/app/components/accounts-table/accounts-table.component.html - 34 + apps/client/src/app/components/home-market/home-market.component.ts + 25 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 38 + libs/ui/src/lib/i18n.ts + 71 + + + Greed + Açgözlülük - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 + apps/client/src/app/components/home-market/home-market.component.ts + 26 - apps/client/src/app/components/admin-platform/admin-platform.component.html - 30 + libs/ui/src/lib/i18n.ts + 72 + + + Last Days + Son Gün - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + apps/client/src/app/components/home-market/home-market.html + 6 + + + Welcome to Ghostfolio + Ghostfolio'ya Hoşgeldiniz. - apps/client/src/app/components/admin-tag/admin-tag.component.html - 30 + apps/client/src/app/components/home-overview/home-overview.html + 7 + + + Ready to take control of your personal finances? + Kişisel finansal yönetiminizi ele almaya hazır mısınız? - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + apps/client/src/app/components/home-overview/home-overview.html + 8 + + + Setup your accounts + Hesaplarınızı kurun - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + apps/client/src/app/components/home-overview/home-overview.html 15 + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + Banka ve yatırım hesaplarınızı ekleyerek kapsamlı finansal durumunuzu görün. - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 137 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 28 + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + Capture your activities + İşlemlerinizi kaydedin - libs/ui/src/lib/top-holdings/top-holdings.component.html - 11 + apps/client/src/app/components/home-overview/home-overview.html + 24 - - Total - Toplam + + Record your investment activities to keep your portfolio up to date. + Yatırım işlemlerinizi kaydederek portföyünüzü güncel tutun. - apps/client/src/app/components/accounts-table/accounts-table.component.html - 45 + apps/client/src/app/components/home-overview/home-overview.html + 26 - - Currency - Para Birimi + + Monitor and analyze your portfolio + Portföyünüzü izleyin ve analiz edin. - apps/client/src/app/components/accounts-table/accounts-table.component.html - 55 + apps/client/src/app/components/home-overview/home-overview.html + 33 + + + Track your progress in real-time with comprehensive analysis and insights. + Kapsamlı analiz ve içgörülerle ilerleme durumunuzu gerçek zamanlı olarak takip edin. - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 130 + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + Setup accounts + Hesaplarınızı kurunuz - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 233 + apps/client/src/app/components/home-overview/home-overview.html + 48 + + + Add activity + İşlem ekle. - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 25 + apps/client/src/app/components/home-overview/home-overview.html + 56 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + 8 + + + Summary + Özet - libs/ui/src/lib/activities-table/activities-table.component.html - 275 + apps/client/src/app/components/home-summary/home-summary.html + 2 - - Value - Değer + + Total Amount + Toplam Tutar - apps/client/src/app/components/accounts-table/accounts-table.component.html - 152 + apps/client/src/app/components/investment-chart/investment-chart.component.ts + 142 + + + Savings Rate + Tasarruf Oranı - apps/client/src/app/components/accounts-table/accounts-table.component.html - 187 + apps/client/src/app/components/investment-chart/investment-chart.component.ts + 214 + + + Security Token + Güvenlik Jetonu - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 11 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 250 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 10 + + + or + veya - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 31 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + apps/client/src/app/pages/landing/landing-page.html + 423 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 99 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + apps/client/src/app/pages/register/register-page.html + 29 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + apps/client/src/app/pages/webauthn/webauthn-page.html + 29 + + + Sign in with Internet Identity + İnternet Kimliği (Internet Identity) ile Oturum Aç - libs/ui/src/lib/account-balances/account-balances.component.html - 34 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 42 + + + Sign in with Google + Google ile Oturum Aç - libs/ui/src/lib/activities-table/activities-table.component.html - 256 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 52 + + + Stay signed in + Oturumu açık tut - libs/ui/src/lib/activities-table/activities-table.component.html - 292 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 61 + + + Time in Market + Yatırım Süresi - libs/ui/src/lib/holdings-table/holdings-table.component.html - 74 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 3 + + + Buy + Al - libs/ui/src/lib/top-holdings/top-holdings.component.html - 25 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 31 - - Edit - Düzenle + + Sell + Sat - apps/client/src/app/components/accounts-table/accounts-table.component.html - 254 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 43 + + + Investment + Yatırım - apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 165 - apps/client/src/app/components/admin-overview/admin-overview.html - 80 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 58 + + + Absolute Gross Performance + Toplam Brüt Performans - apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 70 + + + Gross Performance + Brüt Performans - apps/client/src/app/components/admin-tag/admin-tag.component.html - 71 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 85 + + + Absolute Net Performance + Toplam Net Performans - libs/ui/src/lib/activities-table/activities-table.component.html - 429 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 126 - - Delete - Sil + + Net Performance + Net Performans - apps/client/src/app/components/accounts-table/accounts-table.component.html - 264 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 141 + + + Total Assets + Toplam Varlıklar - apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 167 + + + Valuables + Yatırım Varlıkları - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 62 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 180 + + + Emergency Fund + Acil Durum Yedeği - apps/client/src/app/components/admin-overview/admin-overview.html - 90 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 192 - apps/client/src/app/components/admin-overview/admin-overview.html - 199 + apps/client/src/app/pages/features/features-page.html + 89 - apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 122 + + + Cash + Nakit - apps/client/src/app/components/admin-tag/admin-tag.component.html - 81 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 226 + + + Assets + Varlıklar - libs/ui/src/lib/account-balances/account-balances.component.html - 80 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 239 + + + Buying Power + Alım Limiti - libs/ui/src/lib/activities-table/activities-table.component.html - 455 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 252 - - Do you really want to delete this account? - Bu hesabı silmeyi gerçekten istiyor musunuz? + + Excluded from Analysis + Analize Dahil Edilmemiştir. - apps/client/src/app/components/accounts-table/accounts-table.component.ts - 101 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 264 - - Symbol - Sembol + + Liabilities + Yükümlülükler - apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 279 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 24 + apps/client/src/app/pages/features/features-page.html + 102 + + + Net Worth + Toplam Varlık - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 115 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 297 + + + Annualized Performance + Yıllıklandırılmış Performans - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 309 + + + Dividend + Temettü apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 301 + 177 - - - Data Source - Veri Kaynağı - apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 343 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + apps/client/src/app/pages/features/features-page.html + 63 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 125 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 192 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + 255 - - Attempts - Deneme + + Please enter the amount of your emergency fund: + Lütfen acil durum yedeği meblağını giriniz: - apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts + 58 - - Created - Oluşturuldu + + Change + Para Birimi - apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 63 - - - Finished - Tamamlandı - apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 - - Status - Durum + + Average Unit Price + Ortalama Birim Fiyat - apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 101 - - Delete Jobs - İşleri Sil + + Minimum Price + Asgari Fiyat - apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 128 - - Asset Profiles - Varlık Profili + + Maximum Price + Azami Fiyat - libs/ui/src/lib/assistant/assistant.html - 67 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 144 - - Historical Market Data - Tarihsel Piyasa Verisi + + Quantity + Miktar - apps/client/src/app/components/admin-jobs/admin-jobs.html - 37 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 154 - - - View Data - Veri Gör - apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 179 - - - View Stacktrace - Hata İzini Görüntüle - apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + libs/ui/src/lib/activities-table/activities-table.component.html + 185 - - Delete Job - İşleri Sil + + Fees + Komisyon - apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 199 - - - Details for - Detaylar - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 2 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 108 - - - Date - Tarih - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 6 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 161 + + + Report Data Glitch + Rapor Veri Sorunu - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 395 + + + Are you an ambitious investor who needs the full picture? + Tüm ayrıntılara hakim olmak isteyen iddialı bir yatırımcı mısınız? - libs/ui/src/lib/account-balances/account-balances.component.html + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 12 - - libs/ui/src/lib/activities-table/activities-table.component.html - 169 - - - Market Price - Piyasa Fiyatı - - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 26 - + + Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: + Bugün Ghostfolio Premium'a yükseltin ve yatırım deneyiminizi geliştirmek için ayrıcalıklı özelliklere erişim kazanın: - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 112 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 15 - - Cancel - İptal + + Portfolio Summary + Portföy Özeti - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 46 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 22 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 376 + apps/client/src/app/pages/pricing/pricing-page.html + 55 - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + apps/client/src/app/pages/pricing/pricing-page.html + 199 + + + Portfolio Allocations + Portföy Dağılımı - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 26 - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + apps/client/src/app/pages/features/features-page.html + 160 - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 58 + apps/client/src/app/pages/pricing/pricing-page.html + 59 - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 103 + apps/client/src/app/pages/pricing/pricing-page.html + 203 + + + Performance Benchmarks + Performans Ölçütleri - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 30 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + apps/client/src/app/pages/pricing/pricing-page.html + 63 - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 38 + apps/client/src/app/pages/pricing/pricing-page.html + 207 - - Save - Kaydet + + FIRE Calculator + FIRE Hesaplayıcı - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 48 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 34 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 383 + apps/client/src/app/pages/pricing/pricing-page.html + 67 - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + apps/client/src/app/pages/pricing/pricing-page.html + 211 + + + Professional Data Provider + Profesyonel Veri Sağlayıcı - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 38 - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + apps/client/src/app/pages/pricing/pricing-page.html + 226 + + + and more Features... + ve daha fazla Özellik... - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 65 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 42 - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 110 + apps/client/src/app/pages/pricing/pricing-page.html + 83 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + apps/client/src/app/pages/pricing/pricing-page.html + 231 - - Currencies - Para Birimleri + + Get the tools to effectively manage your finances and refine your personal investment strategy. + Mali durumunuzu etkili bir şekilde yönetecek ve kişisel yatırım stratejinizi geliştirecek Araçları edinin. - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 73 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 45 - - ETFs without Countries - Ülkesi Olmayan ETF'ler + + Skip + Geç - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 78 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 52 - - ETFs without Sectors - Sektörü Olmayan ETF'ler + + Upgrade Plan + Üyeliğinizi Yükseltin - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 83 + apps/client/src/app/components/header/header.component.html + 182 - - - Filter by... - Filtrele... - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 282 - - - - Asset Class - Varlık Sınıfı - apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 59 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 20 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 243 + apps/client/src/app/pages/pricing/pricing-page.html + 268 + + + Today + Bugün - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 228 + apps/client/src/app/components/toggle/toggle.component.ts + 22 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + libs/ui/src/lib/assistant/assistant.component.ts + 215 - - Asset Sub Class - Varlık Alt Sınıfı - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 - + + YTD + YTD - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 168 + apps/client/src/app/components/toggle/toggle.component.ts + 23 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 256 + libs/ui/src/lib/assistant/assistant.component.ts + 225 + + + 1Y + 1Y - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 237 + apps/client/src/app/components/toggle/toggle.component.ts + 24 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + libs/ui/src/lib/assistant/assistant.component.ts + 229 - - First Activity - İlk İşlem + + 5Y + 5Y - apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + apps/client/src/app/components/toggle/toggle.component.ts + 25 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 141 + libs/ui/src/lib/assistant/assistant.component.ts + 250 + + + Max + Maks. - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 209 + apps/client/src/app/components/toggle/toggle.component.ts + 26 - libs/ui/src/lib/holdings-table/holdings-table.component.html - 50 + libs/ui/src/lib/assistant/assistant.component.ts + 253 - - Activities Count - İşlem Sayısı + + This feature is currently unavailable. + Bu özellik şu an için mevcut değil. - apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + apps/client/src/app/core/http-response.interceptor.ts + 53 - - Historical Data - Tarihsel Veri + + Please try again later. + Daha sonra tekrar deneyiniz. - apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + apps/client/src/app/core/http-response.interceptor.ts + 55 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 82 + apps/client/src/app/core/http-response.interceptor.ts + 80 - - - Sectors Count - Sektör Sayısı - apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 138 - - Countries Count - Ülke Sayısı + + Oops! Something went wrong. + Hay Allah! Bir şeyler yanlış gitti. - apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + apps/client/src/app/core/http-response.interceptor.ts + 78 - - - Gather Recent Data - Son Veriyi Getir - apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 136 - - Gather All Data - Tüm Veriyi Getir + + Okay + Tamam - apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + apps/client/src/app/core/http-response.interceptor.ts + 81 - - - Gather Profile Data - Profil Verisini Getir - apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 139 + + + About + Hakkında - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 45 + apps/client/src/app/pages/about/about-page-routing.module.ts + 51 - - - Refresh - Yenile - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 22 + apps/client/src/app/pages/about/about-page.component.ts + 44 - - - Gather Historical Data - Tarihsel Veriyi Getir - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 32 + apps/client/src/app/pages/about/overview/about-overview-page-routing.module.ts + 13 - - Sector - Sektör + + Changelog + Değişiklik Günlüğü - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 185 + apps/client/src/app/pages/about/about-page.component.ts + 49 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 254 + apps/client/src/app/pages/about/changelog/changelog-page-routing.module.ts + 13 - - Country - Ülke - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 196 - + + License + Lisans - apps/client/src/app/components/admin-users/admin-users.html - 77 + apps/client/src/app/pages/about/about-page.component.ts + 54 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 264 + apps/client/src/app/pages/about/license/license-page-routing.module.ts + 13 - - Sectors - Sektörler + + Privacy Policy + Gizlilik Politikası - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 + apps/client/src/app/pages/about/about-page.component.ts + 62 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 327 + apps/client/src/app/pages/about/privacy-policy/privacy-policy-page-routing.module.ts + 13 + + + Our + Bizim - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 270 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + Discover other exciting Open Source Software projects + Diğer heyecan verici Açık Kaynak Yazılım projelerini keşfedin - apps/client/src/app/pages/public/public-page.html - 45 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 - - Countries - Ülkeler + + Visit + Ziyaret et - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 212 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + Accounts + Hesaplar - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 338 + apps/client/src/app/pages/accounts/accounts-page-routing.module.ts + 13 + + + Update account + Hesabı Güncelle - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 282 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 8 - - Symbol Mapping - Sembol Eşleştirme + + Add account + Hesap ekle - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 290 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 10 - - Scraper Configuration - Veri Toplayıcı Yapılandırması + + Account ID + Hesap Kimliği - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 302 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 96 - - Note - Not + + Admin Control + Yönetici Denetimleri - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 363 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 20 + + + Market Data + Piyasa Verileri - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 78 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 30 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + apps/client/src/app/pages/admin/admin-page.component.ts + 37 - - Add Asset Profile - Varlık Profili Ekle + + Settings + Ayarlar - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 7 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 35 - - - Name, symbol or ISIN - Ad, sembol ya da ISIN - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + apps/client/src/app/pages/admin/admin-page.component.ts + 32 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 18 - - - Please add a currency: - Lütfen bir para birimi giriniz: - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 122 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 35 - - Do you really want to delete this coupon? - Önbelleği temizlemeyi gerçekten istiyor musunuz? + + Users + Kullanıcılar - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 40 - - - Do you really want to delete this currency? - Bu para birimini silmeyi gerçekten istiyor musunuz? - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 153 + apps/client/src/app/pages/admin/admin-page.component.ts + 47 - - Do you really want to flush the cache? - Önbelleği temizlemeyi gerçekten istiyor musunuz + + Overview + Özet - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 183 + apps/client/src/app/pages/admin/admin-page.component.ts + 27 - - - Please set your system message: - Lütfen sistem mesajınızı belirleyin: - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 214 + apps/client/src/app/pages/home/home-page.component.ts + 37 + + + apps/client/src/app/pages/zen/zen-page-routing.module.ts + 19 + + + apps/client/src/app/pages/zen/zen-page.component.ts + 34 - - User Count - Kullanıcı Sayısı + + Blog + Blog - apps/client/src/app/components/admin-overview/admin-overview.html + apps/client/src/app/pages/blog/blog-page-routing.module.ts 13 - - Activity Count - İşlem Sayısı + + Discover the latest Ghostfolio updates and insights on personal finance + Son Ghostfolio güncellemelerini ve kişisel finans hakkındaki en son bilgileri keşfedin. - apps/client/src/app/components/admin-overview/admin-overview.html - 23 + apps/client/src/app/pages/blog/blog-page.html + 7 - - per User - Kullanıcı başına + + As you are already logged in, you cannot access the demo account. + Oturum açmış olduğunuz için demo hesabına erişemezsiniz. - apps/client/src/app/components/admin-overview/admin-overview.html - 32 + apps/client/src/app/pages/demo/demo-page.component.ts + 35 - - Exchange Rates - Döviz Kurları + + Frequently Asked Questions (FAQ) + Sıkça Sorulan Sorular (SSS) - apps/client/src/app/components/admin-overview/admin-overview.html - 37 + apps/client/src/app/pages/faq/faq-page-routing.module.ts + 34 - - - Add Currency - Para Birimi Ekle - apps/client/src/app/components/admin-overview/admin-overview.html - 104 + apps/client/src/app/pages/faq/overview/faq-overview-page-routing.module.ts + 13 - - Tags - Etiketler + + Frequently Asked Questions (FAQ) + Sıkça Sorulan Sorular (SSS) - apps/client/src/app/components/admin-settings/admin-settings.component.html - 10 + apps/client/src/app/pages/faq/overview/faq-overview-page.html + 4 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 377 + apps/client/src/app/pages/faq/saas/saas-page.html + 4 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 + apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html + 4 + + + Features + Özellikler - libs/ui/src/lib/assistant/assistant.html - 127 + apps/client/src/app/app-routing.module.ts + 65 - - User Signup - Kullanıcı Kaydı + + Check out the numerous features of Ghostfolio to manage your wealth + Varlıklarınızı yönetmek için Ghostfolio'nun özelliklerini keşfedin - apps/client/src/app/components/admin-overview/admin-overview.html - 110 + apps/client/src/app/pages/features/features-page.html + 6 - - Read-only Mode - Salt okunur mod + + Stocks + Hisse Senetleri - apps/client/src/app/components/admin-overview/admin-overview.html - 123 + apps/client/src/app/pages/features/features-page.html + 15 - - System Message - Sistem Mesajı + + ETFs + ETF'ler - apps/client/src/app/components/admin-overview/admin-overview.html - 145 + apps/client/src/app/pages/features/features-page.html + 25 - - Set Message - Mesaj Belirle + + Bonds + Tahviller - apps/client/src/app/components/admin-overview/admin-overview.html - 165 + apps/client/src/app/pages/features/features-page.html + 38 - - Coupons - Kupon + + Cryptocurrencies + Kripto paralar - apps/client/src/app/components/admin-overview/admin-overview.html - 173 + apps/client/src/app/pages/features/features-page.html + 51 - - Add - Ekle - - apps/client/src/app/components/admin-overview/admin-overview.html - 231 - - - libs/ui/src/lib/account-balances/account-balances.component.html - 93 - - - - Housekeeping - Genel Ayarlar - - apps/client/src/app/components/admin-overview/admin-overview.html - 238 - - - - Flush Cache - Önbelleği temizle - - apps/client/src/app/components/admin-overview/admin-overview.html - 242 - - - - Add Platform - Platform Ekle - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 11 - - - - Url - Url - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 350 - - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 - - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 - - - - Accounts - Hesaplar - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 - - - apps/client/src/app/components/admin-users/admin-users.html - 113 - - - apps/client/src/app/components/header/header.component.html - 54 - - - apps/client/src/app/components/header/header.component.html - 262 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 357 - - - apps/client/src/app/pages/accounts/accounts-page.html - 4 - - - libs/ui/src/lib/assistant/assistant.html - 107 - - - - Do you really want to delete this platform? - Bu platformu silmeyi gerçekten istiyor musunuz? - - apps/client/src/app/components/admin-platform/admin-platform.component.ts - 79 - - - - Update platform - Platformu Güncelle - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 - - - - Add platform - Platform Ekle - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 - - - - Platforms - Platformlar - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 4 - - - - Do you really want to delete this user? - Bu kullanıcıyı silmeyi gerçekten istiyor musunu? - - apps/client/src/app/components/admin-users/admin-users.component.ts - 113 - - - - User - Kullanıcı - - apps/client/src/app/components/header/header.component.html - 230 - - - - Registration - Kayıt - - apps/client/src/app/components/admin-users/admin-users.html - 96 - - - - Engagement per Day - Günlük etkileşim - - apps/client/src/app/components/admin-users/admin-users.html - 158 - - - - Last Request - Son Talep - - apps/client/src/app/components/admin-users/admin-users.html - 183 - - - - Impersonate User - Kullanıcıyı Taklit Et - - apps/client/src/app/components/admin-users/admin-users.html - 222 - - - - Delete User - Kullanıcıyı Sil - - apps/client/src/app/components/admin-users/admin-users.html - 232 - - - - Performance - Performans - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 6 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 89 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 142 - - - - Compare with... - Karşılaştır... - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 - - - - Manage Benchmarks - Karşılaştırma Ölçütlerini Yönet - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 - - - - Portfolio - Portföy - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 116 - - - apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 41 - - - - Benchmark - Karşılaştırma Ölçütü - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 128 - - - - Current Market Mood - Piyasa Psikolojisi - - apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html - 12 - - - - Overview - Genel Bakış - - apps/client/src/app/components/header/header.component.html - 28 - - - apps/client/src/app/components/header/header.component.html - 244 - - - - Portfolio - Portföy - - apps/client/src/app/components/header/header.component.html - 41 - - - apps/client/src/app/components/header/header.component.html - 254 - - - - Admin Control - Yönetici Kontrolü - - apps/client/src/app/components/header/header.component.html - 67 - - - apps/client/src/app/components/header/header.component.html - 278 - - - - Me - Ben - - apps/client/src/app/components/header/header.component.html - 211 - - - - My Ghostfolio - Ghostfolio'm - - apps/client/src/app/components/header/header.component.html - 269 - - - - About Ghostfolio - Ghostfolio Hakkında - - apps/client/src/app/components/header/header.component.html - 309 - - - apps/client/src/app/pages/about/overview/about-overview-page.html - 5 - - - - Sign in - Giriş - - apps/client/src/app/components/header/header.component.html - 399 - - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 71 - - - - Get started - Haydi Başlayalım - - apps/client/src/app/components/header/header.component.html - 411 - - - - Sign in - Giriş - - apps/client/src/app/app-routing.module.ts - 141 - - - apps/client/src/app/components/header/header.component.ts - 229 - - - - Oops! Incorrect Security Token. - Hay Allah! Güvenlik anahtarı yanlış. - - apps/client/src/app/components/header/header.component.ts - 243 - - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 154 - - - - Manage Activities - İşlemleri Yönet - - apps/client/src/app/components/home-holdings/home-holdings.html - 32 - - - - Fear - Korku - - apps/client/src/app/components/home-market/home-market.component.ts - 25 - - - libs/ui/src/lib/i18n.ts - 71 - - - - Greed - Açgözlülük - - apps/client/src/app/components/home-market/home-market.component.ts - 26 - - - libs/ui/src/lib/i18n.ts - 72 - - - - Last Days - Son Gün - - apps/client/src/app/components/home-market/home-market.html - 6 - - - - Welcome to Ghostfolio - Ghostfolio'ya Hoşgeldiniz. - - apps/client/src/app/components/home-overview/home-overview.html - 7 - - - - Ready to take control of your personal finances? - Kişisel finansal yönetiminizi ele almaya hazır mısınız? - - apps/client/src/app/components/home-overview/home-overview.html - 8 - - - - Setup your accounts - Hesaplarınızı kurun - - apps/client/src/app/components/home-overview/home-overview.html - 15 - - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - Banka ve yatırım hesaplarınızı ekleyerek kapsamlı finansal durumunuzu görün. - - apps/client/src/app/components/home-overview/home-overview.html - 17 - - - - Capture your activities - İşlemlerinizi kaydedin - - apps/client/src/app/components/home-overview/home-overview.html - 24 - - - - Record your investment activities to keep your portfolio up to date. - Yatırım işlemlerinizi kaydederek portföyünüzü güncel tutun. - - apps/client/src/app/components/home-overview/home-overview.html - 26 - - - - Monitor and analyze your portfolio - Portföyünüzü izleyin ve analiz edin. - - apps/client/src/app/components/home-overview/home-overview.html - 33 - - - - Track your progress in real-time with comprehensive analysis and insights. - Kapsamlı analiz ve içgörülerle ilerleme durumunuzu gerçek zamanlı olarak takip edin. - - apps/client/src/app/components/home-overview/home-overview.html - 35 - - - - Setup accounts - Hesaplarınızı kurunuz - - apps/client/src/app/components/home-overview/home-overview.html - 48 - - - - Add activity - İşlem ekle. - - apps/client/src/app/components/home-overview/home-overview.html - 56 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 - - - - This feature requires a subscription. - Bu özellik için abonelik gereklidir. - - apps/client/src/app/components/home-summary/home-summary.component.ts - 113 - - - apps/client/src/app/core/http-response.interceptor.ts - 69 - - - - Upgrade Plan - Aboneliğinizi Yükseltiniz - - apps/client/src/app/components/home-summary/home-summary.component.ts - 115 - - - apps/client/src/app/core/http-response.interceptor.ts - 72 - - - - Summary - Özet - - apps/client/src/app/components/home-summary/home-summary.html - 2 - - - - Total Amount - Toplam Tutar - - apps/client/src/app/components/investment-chart/investment-chart.component.ts - 142 - - - - Savings Rate - Tasarruf Oranı - - apps/client/src/app/components/investment-chart/investment-chart.component.ts - 214 - - - - Security Token - Güvenlik Jetonu - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 11 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 - - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 10 - - - - or - veya - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 31 - - - apps/client/src/app/pages/landing/landing-page.html - 423 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 - - - apps/client/src/app/pages/register/register-page.html - 29 - - - apps/client/src/app/pages/webauthn/webauthn-page.html - 29 - - - - Sign in with Internet Identity - İnternet Kimliği (Internet Identity) ile Oturum Aç - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 42 - - - - Sign in with Google - Google ile Oturum Aç - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 52 - - - - Stay signed in - Oturumu açık tut - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 61 - - - - Time in Market - Yatırım Süresi - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 3 - - - - Buy - Al - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 31 - - - - Sell - Sat - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 43 - - - - Investment - Yatırım - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 165 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 58 - - - - Absolute Gross Performance - Toplam Brüt Performans - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 70 - - - - Gross Performance - Brüt Performans - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 85 - - - - Absolute Net Performance - Toplam Net Performans - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 124 - - - - Net Performance - Net Performans - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 139 - - - - Total Assets - Toplam Varlıklar - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 165 - - - - Valuables - Yatırım Varlıkları - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 178 - - - - Emergency Fund - Acil Durum Yedeği - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 - - - apps/client/src/app/pages/features/features-page.html - 89 - - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 122 - - - - Cash - Nakit - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 211 - - - - Assets - Varlıklar - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 224 - - - - Buying Power - Alım Limiti - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 237 - - - - Excluded from Analysis - Analize Dahil Edilmemiştir. - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 249 - - - - Liabilities - Yükümlülükler - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 264 - - - apps/client/src/app/pages/features/features-page.html - 102 - - - - Net Worth - Toplam Varlık - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 284 - - - - Annualized Performance - Yıllıklandırılmış Performans - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 296 - - - - Dividend - Temettü - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 177 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 330 - - - apps/client/src/app/pages/features/features-page.html - 63 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 - - - - Please enter the amount of your emergency fund: - Lütfen acil durum yedeği meblağını giriniz: - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 57 - - - - Change - Para Birimi - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 63 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 - - - - Average Unit Price - Ortalama Birim Fiyat - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 101 - - - - Minimum Price - Asgari Fiyat - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 128 - - - - Maximum Price - Azami Fiyat - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 144 - - - - Quantity - Miktar - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 154 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 185 - - - - Fees - Komisyon - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 199 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 108 - - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 - - - - Report Data Glitch - Rapor Veri Sorunu - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 395 - - - - Are you an ambitious investor who needs the full picture? - Tüm ayrıntılara hakim olmak isteyen iddialı bir yatırımcı mısınız? - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 12 - - - - Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: - Bugün Ghostfolio Premium'a yükseltin ve yatırım deneyiminizi geliştirmek için ayrıcalıklı özelliklere erişim kazanın: - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15 - - - - Portfolio Summary - Portföy Özeti - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 22 - - - apps/client/src/app/pages/pricing/pricing-page.html - 55 - - - apps/client/src/app/pages/pricing/pricing-page.html - 199 - - - - Portfolio Allocations - Portföy Dağılımı - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 26 - - - apps/client/src/app/pages/features/features-page.html - 160 - - - apps/client/src/app/pages/pricing/pricing-page.html - 59 - - - apps/client/src/app/pages/pricing/pricing-page.html - 203 - - - - Performance Benchmarks - Performans Ölçütleri - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 30 - - - apps/client/src/app/pages/pricing/pricing-page.html - 63 - - - apps/client/src/app/pages/pricing/pricing-page.html - 207 - - - - FIRE Calculator - FIRE Hesaplayıcı - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 34 - - - apps/client/src/app/pages/pricing/pricing-page.html - 67 - - - apps/client/src/app/pages/pricing/pricing-page.html - 211 - - - - Professional Data Provider - Profesyonel Veri Sağlayıcı - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 38 - - - apps/client/src/app/pages/pricing/pricing-page.html - 226 - - - - and more Features... - ve daha fazla Özellik... - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 42 - - - apps/client/src/app/pages/pricing/pricing-page.html - 83 - - - apps/client/src/app/pages/pricing/pricing-page.html - 231 - - - - Get the tools to effectively manage your finances and refine your personal investment strategy. - Mali durumunuzu etkili bir şekilde yönetecek ve kişisel yatırım stratejinizi geliştirecek Araçları edinin. - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 45 - - - - Skip - Geç - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 52 - - - - Upgrade Plan - Üyeliğinizi Yükseltin - - apps/client/src/app/components/header/header.component.html - 182 - - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 59 - - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 - - - apps/client/src/app/pages/pricing/pricing-page.html - 268 - - - - Today - Bugün - - apps/client/src/app/components/toggle/toggle.component.ts - 22 - - - libs/ui/src/lib/assistant/assistant.component.ts - 215 - - - - YTD - YTD - - apps/client/src/app/components/toggle/toggle.component.ts - 23 - - - libs/ui/src/lib/assistant/assistant.component.ts - 225 - - - - 1Y - 1Y - - apps/client/src/app/components/toggle/toggle.component.ts - 24 - - - libs/ui/src/lib/assistant/assistant.component.ts - 229 - - - - 5Y - 5Y - - apps/client/src/app/components/toggle/toggle.component.ts - 25 - - - libs/ui/src/lib/assistant/assistant.component.ts - 250 - - - - Max - Maks. - - apps/client/src/app/components/toggle/toggle.component.ts - 26 - - - libs/ui/src/lib/assistant/assistant.component.ts - 253 - - - - This feature is currently unavailable. - Bu özellik şu an için mevcut değil. - - apps/client/src/app/core/http-response.interceptor.ts - 60 - - - - Please try again later. - Daha sonra tekrar deneyiniz. - - apps/client/src/app/core/http-response.interceptor.ts - 62 - - - apps/client/src/app/core/http-response.interceptor.ts - 91 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 138 - - - - Oops! Something went wrong. - Hay Allah! Bir şeyler yanlış gitti. - - apps/client/src/app/core/http-response.interceptor.ts - 89 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 136 - - - - Okay - Tamam - - apps/client/src/app/core/http-response.interceptor.ts - 92 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 139 - - - - About - Hakkında - - apps/client/src/app/pages/about/about-page-routing.module.ts - 51 - - - apps/client/src/app/pages/about/about-page.component.ts - 44 - - - apps/client/src/app/pages/about/overview/about-overview-page-routing.module.ts - 13 - - - - Changelog - Değişiklik Günlüğü - - apps/client/src/app/pages/about/about-page.component.ts - 49 - - - apps/client/src/app/pages/about/changelog/changelog-page-routing.module.ts - 13 - - - - License - Lisans - - apps/client/src/app/pages/about/about-page.component.ts - 54 - - - apps/client/src/app/pages/about/license/license-page-routing.module.ts - 13 - - - - Privacy Policy - Gizlilik Politikası - - apps/client/src/app/pages/about/about-page.component.ts - 62 - - - apps/client/src/app/pages/about/privacy-policy/privacy-policy-page-routing.module.ts - 13 - - - - Our - Bizim - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 - - - - Discover other exciting Open Source Software projects - Diğer heyecan verici Açık Kaynak Yazılım projelerini keşfedin - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 - - - - Visit - Ziyaret et - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 - - - - Accounts - Hesaplar - - apps/client/src/app/pages/accounts/accounts-page-routing.module.ts - 13 - - - - Update account - Hesabı Güncelle - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 8 - - - - Add account - Hesap ekle - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 10 - - - - Account ID - Hesap Kimliği - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 96 - - - - Admin Control - Yönetici Denetimleri - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 20 - - - - Market Data - Piyasa Verileri - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 30 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 37 - - - - Settings - Ayarlar - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 35 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 32 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 18 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 35 - - - - Users - Kullanıcılar - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 40 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 47 - - - - Overview - Özet - - apps/client/src/app/pages/admin/admin-page.component.ts - 27 - - - apps/client/src/app/pages/home/home-page.component.ts - 37 - - - apps/client/src/app/pages/zen/zen-page-routing.module.ts - 19 - - - apps/client/src/app/pages/zen/zen-page.component.ts - 34 - - - - Blog - Blog - - apps/client/src/app/pages/blog/blog-page-routing.module.ts - 13 - - - - Discover the latest Ghostfolio updates and insights on personal finance - Son Ghostfolio güncellemelerini ve kişisel finans hakkındaki en son bilgileri keşfedin. - - apps/client/src/app/pages/blog/blog-page.html - 7 - - - - As you are already logged in, you cannot access the demo account. - Oturum açmış olduğunuz için demo hesabına erişemezsiniz. - - apps/client/src/app/pages/demo/demo-page.component.ts - 35 - - - - Frequently Asked Questions (FAQ) - Sıkça Sorulan Sorular (SSS) - - apps/client/src/app/pages/faq/faq-page-routing.module.ts - 34 - - - apps/client/src/app/pages/faq/overview/faq-overview-page-routing.module.ts - 13 - - - - Frequently Asked Questions (FAQ) - Sıkça Sorulan Sorular (SSS) - - apps/client/src/app/pages/faq/overview/faq-overview-page.html - 4 - - - apps/client/src/app/pages/faq/saas/saas-page.html - 4 - - - apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html - 4 - - - - Features - Özellikler - - apps/client/src/app/app-routing.module.ts - 65 - - - - Check out the numerous features of Ghostfolio to manage your wealth - Varlıklarınızı yönetmek için Ghostfolio'nun özelliklerini keşfedin - - apps/client/src/app/pages/features/features-page.html - 6 - - - - Stocks - Hisse Senetleri - - apps/client/src/app/pages/features/features-page.html - 15 - - - - ETFs - ETF'ler - - apps/client/src/app/pages/features/features-page.html - 25 - - - - Bonds - Tahviller - - apps/client/src/app/pages/features/features-page.html - 38 - - - - Cryptocurrencies - Kripto paralar - - apps/client/src/app/pages/features/features-page.html - 51 - - - - Wealth Items - Varlık Kalemleri - - apps/client/src/app/pages/features/features-page.html - 76 - - - - Import and Export - İçe Aktar / Dışa Aktar - - apps/client/src/app/pages/features/features-page.html - 115 - - - - Multi-Accounts - Çoklu Hesaplar - - apps/client/src/app/pages/features/features-page.html - 127 - - - - Portfolio Calculations - Portföy Hesaplama - - apps/client/src/app/pages/features/features-page.html - 141 - - - - Dark Mode - Karanlık Mod - - apps/client/src/app/pages/features/features-page.html - 177 - - - - Zen Mode - Zen Modu - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 - - - apps/client/src/app/pages/features/features-page.html - 190 - - - - Market Mood - Piyasa Modu - - apps/client/src/app/pages/features/features-page.html - 205 - - - - Static Analysis - Statik Analiz - - apps/client/src/app/pages/features/features-page.html - 224 - - - - Multi-Language - Çoklu Dil - - apps/client/src/app/pages/features/features-page.html - 241 - - - - Open Source Software - Açık Kaynak Yazılım - - apps/client/src/app/pages/features/features-page.html - 275 - - - - Get Started - Başla - - apps/client/src/app/pages/features/features-page.html - 300 - - - apps/client/src/app/pages/public/public-page.html - 153 - - - - Holdings - Varlıklar - - apps/client/src/app/pages/home/home-page-routing.module.ts - 23 - - - apps/client/src/app/pages/home/home-page-routing.module.ts - 28 - - - apps/client/src/app/pages/home/home-page.component.ts - 42 - - - apps/client/src/app/pages/zen/zen-page.component.ts - 39 - - - - Summary - Özet - - apps/client/src/app/pages/home/home-page-routing.module.ts - 33 - - - apps/client/src/app/pages/home/home-page.component.ts - 47 - - - - Markets - Piyasalar - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 52 - - - apps/client/src/app/pages/markets/markets-page-routing.module.ts - 13 - - - - Manage your wealth like a boss - Varlıklarınızı bir patron gibi yönetin - - apps/client/src/app/pages/landing/landing-page.html - 5 - - - - 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, mali durumunuz için gizlilik odaklı, açık kaynaklı bir kontrol panelidir. Varlık dağılımınızı analiz edin, net değerinizi öğrenin ve sağlam, veriye dayalı yatırım kararları alın. - - apps/client/src/app/pages/landing/landing-page.html - 9 - - - - Get Started - Başla - - apps/client/src/app/pages/landing/landing-page.html - 41 - - - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - veya - - apps/client/src/app/pages/landing/landing-page.html - 46 - - - - Live Demo - Canlı Deneme - - apps/client/src/app/pages/landing/landing-page.html - 49 - - - apps/client/src/app/pages/landing/landing-page.html - 424 - - - - Monthly Active Users - Aylık Aktif Kullanıcılar - - apps/client/src/app/pages/landing/landing-page.html - 69 - - - - Stars on GitHub - GitHub'daki Beğeniler - - apps/client/src/app/pages/landing/landing-page.html - 87 - - - apps/client/src/app/pages/open/open-page.html - 103 - - - - Pulls on Docker Hub - Docker Hub'ta Çekmeler - - apps/client/src/app/pages/landing/landing-page.html - 105 - - - apps/client/src/app/pages/open/open-page.html - 117 - - - - As seen in - Şurada görüldüğü gibi - - apps/client/src/app/pages/landing/landing-page.html - 113 - - - - Protect your assets. Refine your personal investment strategy. - varlıklarınızı koruyun. Kişisel yatırım stratejinizi geliştirin. - - apps/client/src/app/pages/landing/landing-page.html - 215 - - - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio, takip edilmeden hisse senetleri, ETF'ler veya kripto paraları izlemek isteyen yoğun insanlara güç verir. - - apps/client/src/app/pages/landing/landing-page.html - 219 - - - - 360° View - 360° Görünüm - - apps/client/src/app/pages/landing/landing-page.html - 230 - - - - Get the full picture of your personal finances across multiple platforms. - Kişisel finansınızın tam resmini birden fazla platformda edinin. - - apps/client/src/app/pages/landing/landing-page.html - 232 - - - - Web3 Ready - Web3 Hazır - - apps/client/src/app/pages/landing/landing-page.html - 241 - - - - Use Ghostfolio anonymously and own your financial data. - Ghostfolio'yu anonim olarak kullanın ve finansal verilerinize sahip çıkın. - - apps/client/src/app/pages/landing/landing-page.html - 243 - - - - Open Source - Açık Kaynak - - apps/client/src/app/pages/landing/landing-page.html - 251 - - - - Benefit from continuous improvements through a strong community. - Güçlü bir topluluk aracılığıyla sürekli gelişmelerden faydalanın. - - apps/client/src/app/pages/landing/landing-page.html - 253 - - - - Why Ghostfolio? - Neden Ghostfolio? - - apps/client/src/app/pages/landing/landing-page.html - 262 - - - - Ghostfolio is for you if you are... - Ghostfolio tam size göre, - - apps/client/src/app/pages/landing/landing-page.html - 263 - - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - Birden fazla platformda hisse senedi, ETF veya kripto para ticareti yapıyorsanız, - - apps/client/src/app/pages/landing/landing-page.html - 270 - - - - pursuing a buy & hold strategy - al ve tut stratejisi izliyorsanız, - - apps/client/src/app/pages/landing/landing-page.html - 276 - - - - interested in getting insights of your portfolio composition - Portföy bileşimine dair içgörüleri edinmek istiyorsanız, - - apps/client/src/app/pages/landing/landing-page.html - 281 - - - - valuing privacy and data ownership - Gizliliğe ve verilerinize sahip çıkmayı önemsiyorsanız - - apps/client/src/app/pages/landing/landing-page.html - 286 - - - - into minimalism - minimalizme ilgi duyuyorsanız - - apps/client/src/app/pages/landing/landing-page.html - 289 - - - - caring about diversifying your financial resources - finansal kaynaklarınızı çeşitlendirmeye önem veriyorsanız - - apps/client/src/app/pages/landing/landing-page.html - 293 - - - - interested in financial independence - finansal özgürlük peşindeyseniz - - apps/client/src/app/pages/landing/landing-page.html - 297 - - - - saying no to spreadsheets in - elektronik tablo uygulamalarına hayır diyorsanız - - apps/client/src/app/pages/landing/landing-page.html - 301 - - - - still reading this list - bu listeyi hala okuyorsanız - - apps/client/src/app/pages/landing/landing-page.html - 304 - - - - Learn more about Ghostfolio - Ghostfolio hakkında daha fazla bilgi edinin - - apps/client/src/app/pages/landing/landing-page.html - 309 - - - - What our users are saying - What our users are saying - - apps/client/src/app/pages/landing/landing-page.html - 317 - - - - Members from around the globe are using Ghostfolio Premium - Dünyanın dört bir yanındaki kullanıcılar Ghostfolio Premium kullanıyorlar. - - apps/client/src/app/pages/landing/landing-page.html - 349 - - - - How does Ghostfolio work? - How does Ghostfolio work? - - apps/client/src/app/pages/landing/landing-page.html - 361 - - - - Get started in only 3 steps - Sadece 3 adımda başlayın - - apps/client/src/app/pages/landing/landing-page.html - 364 - - - - Sign up anonymously* - Anonim olarak kaydolun* - - apps/client/src/app/pages/landing/landing-page.html - 370 - - - - * no e-mail address nor credit card required - * e-posta adresi veya kredi kartı gerekmez - - apps/client/src/app/pages/landing/landing-page.html - 372 - - - - Add any of your historical transactions - Herhangi bir geçmiş işleminizi ekleyin - - apps/client/src/app/pages/landing/landing-page.html - 383 - - - - Get valuable insights of your portfolio composition - Portföy bileşiminizle ilgili değerli bilgiler edinin - - apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 - - - - Join now or check out the example account - Şİmdi katılın ya da örnek hesabı inceleyin - - apps/client/src/app/pages/landing/landing-page.html - 408 - - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Ghostfolio'da şeffaflık, değerlerimizin temelinde yer alır. Kaynak kodunu açık kaynak yazılım (OSS) olarak AGPL-3.0 lisansı altında yayınlıyoruz ve platformun işletme durumunun toplu anahtar metriklerini açıkça paylaşıyoruz. - - apps/client/src/app/pages/open/open-page.html - 6 - - - - Active Users - Aktif Kullanıcılar - - apps/client/src/app/pages/open/open-page.html - 40 - - - apps/client/src/app/pages/open/open-page.html - 62 - - - - New Users - Yeni Kullanıcılar - - apps/client/src/app/pages/open/open-page.html - 51 - - - - Users in Slack community - Slack topluluğundaki kullanıcılar - - apps/client/src/app/pages/open/open-page.html - 75 - - - - Contributors on GitHub - GitHub'da Katkıda Bulunanlar - - apps/client/src/app/pages/open/open-page.html - 89 - - - - Uptime - Çalışma Süresi - - apps/client/src/app/pages/open/open-page.html - 132 - - - - Activities - İşlemler - - apps/client/src/app/pages/portfolio/activities/activities-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 - - - - Do you really want to delete these activities? - Tüm işlemlerinizi silmeyi gerçekten istiyor musunuz? - - libs/ui/src/lib/activities-table/activities-table.component.ts - 216 - - - - Update activity - İşlemi Güncelle - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 - - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - Hisse senetleri, ETF'ler, tahviller, kripto paralar, emtialar - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 - - - - Mortgages, personal loans, credit cards - Mortgage, kişisel krediler, kredi kartları - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 - - - - Luxury items, real estate, private companies - Lüks eşyalar, gayrimenkuller, özel şirketler - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 - - - - Account - Hesap - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 307 - - - - Update Cash Balance - Nakit Bakiyesini Güncelle - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 - - - - Unit Price - Birim Fiyat - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 209 - - - - Oops! Could not get the historical exchange rate from - Hay Allah! Geçmiş döviz kuru alınamadı: - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 - - - - Fee - Komisyon - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 233 - - - - Import Activities - İşlemleri İçe Aktar - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 44 - - - - Import Dividends - Temettüleri İçe Aktar - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 86 - - - - Importing data... - Veri içe aktarılıyor... - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 120 - - - - Import has been completed - İçe aktarma tamamlandı - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 128 - - - - Validating data... - Veri doğrulanıyor... - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 233 - - - - Select Holding - Varlık Seç - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 20 - - - - Select File - Dosya Seç - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 - - - - Holding - Varlık - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 - - - - Load Dividends - Temettü Yükle - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 - - - - The following file formats are supported: - Aşağıdaki dosya formatları desteklenmektedir: - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 - - - - Select Dividends - Temettü Seç - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 - - - - Select Activities - İşlemleri Seç - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 - - - - Back - Geri - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 - - - - Import - İçe Aktar - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 108 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 - - - - Allocations - Dağılımlar - - apps/client/src/app/pages/portfolio/allocations/allocations-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 - - - - Allocations - Dağılımlar - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 4 - - - - Proportion of Net Worth - Net Değer Oranı - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 12 - - - - By Platform - Platforma Göre - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 44 - - - - By Currency - Para Birimine Göre - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 63 - - - - By Asset Class - Varlık Sınıfına Göre - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 86 - - - - By Holding - Varlığa Göre - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 109 - - - - By Sector - Sektöre Göre - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 132 - - - - By Continent - Kıtaya Göre - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 156 - - - - By Market - Piyasaya Göre - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 179 - - - - Regions - Bölgeler - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 203 - - - apps/client/src/app/pages/public/public-page.html - 76 - - - - Developed Markets - Gelişmiş Piyasalar - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 228 - - - apps/client/src/app/pages/public/public-page.html - 93 - - - - Emerging Markets - Gelişmekte Olan Piyasalar - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 237 - - - apps/client/src/app/pages/public/public-page.html - 102 - - - - Other Markets - Diğer Piyasalar - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 246 - - - apps/client/src/app/pages/public/public-page.html - 111 - - - - No data available - Veri mevcut değil - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 258 - - - apps/client/src/app/pages/public/public-page.html - 123 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 86 - - - - By Account - Hesaba Göre - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 294 - - - - By ETF Provider - ETF Sağlayıcısına Göre - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 314 - - - - By Country - Ülkeye Göre - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 271 - - - - Analysis - Analiz - - apps/client/src/app/pages/portfolio/analysis/analysis-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 34 - - - - Dividend - Temettü - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 38 - - - libs/ui/src/lib/i18n.ts - 32 - - - - Deposit - Para Yatırma - - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 357 - - - - Monthly - Aylık - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 50 - - - - Yearly - Yıllık - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 51 - - - - Analysis - Analiz - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 2 - - - - Top - Üst - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 - - - - Bottom - Alt - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 - - - - Portfolio Evolution - Portföyün Gelişimi - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 - - - - Investment Timeline - Yatırım Zaman Çizelgesi - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 - - - - Current Streak - Güncel Seri - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 - - - - Longest Streak - En Uzun Seri - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 - - - - Dividend Timeline - Temettü Zaman Çizelgesi - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 - - - - FIRE - FIRE - - apps/client/src/app/pages/portfolio/fire/fire-page-routing.module.ts - 13 - - - - FIRE - Finansal Özgürlük ve Erken Emeklilik (FIRE) - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 4 - - - - Calculator - Hesap Makinesi - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 7 - - - - 4% Rule - %4 Kuralı - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 - - - - Holdings - Varlıklar - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 77 - - - apps/client/src/app/components/home-holdings/home-holdings.html - 4 - - - apps/client/src/app/pages/public/public-page.html - 14 - - - libs/ui/src/lib/assistant/assistant.html - 46 - - - - Pricing - Fiyatlandırma - - apps/client/src/app/pages/pricing/pricing-page-routing.module.ts - 13 - - - - Pricing Plans - Fiyatlandırma Planları - - apps/client/src/app/pages/pricing/pricing-page.html - 4 - - - - Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. - Resmi Ghostfolio Premium bulut teklifimiz bir başlangıç yapmanın en kolay yoludur. Zaman tasarrufu sağladığı için çoğu insan için en iyi seçenek olacaktır. Gelir, barındırma altyapısının maliyetlerini karşılamak ve süregiden geliştirme işlerini finanse etmek için kullanılmaktadır. - - apps/client/src/app/pages/pricing/pricing-page.html - 6 - - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - Ghostfolio'yu kendi altyapınızda çalıştırmayı tercih ederseniz, lütfen kaynak kodunu ve daha fazla talimatı GitHub adresinde bulun. - - apps/client/src/app/pages/pricing/pricing-page.html - 24 - - - - For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. - Kendi altyapılarında Ghostfolio'yu çalıştırmayı tercih eden teknolojiye hakim yatırımcılar için. - - apps/client/src/app/pages/pricing/pricing-page.html - 36 - - - - Unlimited Transactions - Sınırsız İşlem - - apps/client/src/app/pages/pricing/pricing-page.html - 43 - - - apps/client/src/app/pages/pricing/pricing-page.html - 126 - - - apps/client/src/app/pages/pricing/pricing-page.html - 187 - - - - Unlimited Accounts - Kısıtsız Hesaplar - - apps/client/src/app/pages/pricing/pricing-page.html - 47 - - - apps/client/src/app/pages/pricing/pricing-page.html - 130 - - - apps/client/src/app/pages/pricing/pricing-page.html - 191 - - - - Portfolio Performance - Portföy Performansı - - apps/client/src/app/pages/pricing/pricing-page.html - 51 - - - apps/client/src/app/pages/pricing/pricing-page.html - 134 - - - apps/client/src/app/pages/pricing/pricing-page.html - 195 - - - - Data Import and Export - Veri İçe Aktarma ve Dışa Aktarma - - apps/client/src/app/pages/pricing/pricing-page.html - 71 - - - apps/client/src/app/pages/pricing/pricing-page.html - 138 - - - apps/client/src/app/pages/pricing/pricing-page.html - 215 - - - - Community Support - Topluluk Desteği - - apps/client/src/app/pages/pricing/pricing-page.html - 88 - - - - Self-hosted, update manually. - Tarafınızca barındırılıyor, elle güncelleyiniz. - - apps/client/src/app/pages/pricing/pricing-page.html - 92 - - - - Free - Ücretsiz - - apps/client/src/app/pages/pricing/pricing-page.html - 93 - - - apps/client/src/app/pages/pricing/pricing-page.html - 150 - - - - For new investors who are just getting started with trading. - Alım satıma henüz başlamış yeni yatırımcılar için. - - apps/client/src/app/pages/pricing/pricing-page.html - 120 - - - - Fully managed Ghostfolio cloud offering. - Eksiksiz yönetilen Ghostfolio bulut teklifi. - - apps/client/src/app/pages/pricing/pricing-page.html - 149 - - - apps/client/src/app/pages/pricing/pricing-page.html - 240 - - - - For ambitious investors who need the full picture of their financial assets. - Finansal varlıklarının tamamını görmeye ihtiyaç duyan hırslı yatırımcılar için. - - apps/client/src/app/pages/pricing/pricing-page.html - 180 - - - - Email and Chat Support - E-posta ve Sohbet Desteği - - apps/client/src/app/pages/pricing/pricing-page.html - 236 - - - - Renew Plan - Aboneliği Yenile - - apps/client/src/app/components/header/header.component.html - 190 - - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 - - - apps/client/src/app/pages/pricing/pricing-page.html - 276 - - - - One-time payment, no auto-renewal. - Tek seferlik ödeme, otomatik yenileme yok. - - apps/client/src/app/pages/pricing/pricing-page.html - 280 - - - - Get Started - Başla - - apps/client/src/app/pages/pricing/pricing-page.html - 291 - - - - It’s free. - Ücretsiz. - - apps/client/src/app/pages/pricing/pricing-page.html - 294 - - - - Hello, has shared a Portfolio with you! - Merhaba, size bir Portföy paylaştı! - - apps/client/src/app/pages/public/public-page.html - 4 - - - - Currencies - Para birimleri - - apps/client/src/app/pages/public/public-page.html - 30 - - - - Continents - Kıtalar - - apps/client/src/app/pages/public/public-page.html - 60 - - - - Ghostfolio empowers you to keep track of your wealth. - Ghostfolio, varlıklarınızı takip etmenizi sağlar. - - apps/client/src/app/pages/public/public-page.html - 148 - - - - Registration - Kayıt - - apps/client/src/app/pages/register/register-page-routing.module.ts - 13 - - - - Create Account - Hesap Oluştur - - apps/client/src/app/app.component.html - 18 - - - apps/client/src/app/pages/register/register-page.html - 26 - - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 2 - - - - Continue with Internet Identity - İnternet Kimliği ile Devam Et - - apps/client/src/app/pages/register/register-page.html - 41 - - - - Continue with Google - Google ile Devam Et - - apps/client/src/app/pages/register/register-page.html - 51 - - - - Copy to clipboard - Panoya Kopyala - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 26 - - - - I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. - I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 32 - - - - Agree and continue - Kabul et ve devam et - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 45 - - - - Personal Finance Tools - Kişisel Finans Araçları - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 14 - - - - open-source-alternative-to - Açık kaynak alternatif - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 23 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 - - - - 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 - 26 - - - - Discover Open Source Alternatives for Personal Finance Tools - Açık Kaynak Kişisel Finans Seçeneklerini Keşfet - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4 - - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - Bu genel bakış sayfası, diğer kişisel finans araçlarının seçilmiş bir koleksiyonunun açık kaynak alternatifiGhostfolio ile karşılaştırmasını sunmaktadır.. Şeffaflığa, veri gizliliğine ve topluluk işbirliğine değer veriyorsanız Ghostfolio, finansal yönetiminizin kontrolünü ele almak için mükemmel Şeffaflığa, veri gizliliğine ve topluluk işbirliğine değer veriyorsanız Ghostfolio, finansal yönetiminizin kontrolünü ele almak için mükemmel bir fırsat sunuyor. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8 - - - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Aşağıdaki bağlantıları keşfedin, çeşitli kişisel finans araçlarını Ghostfolio ile karşılaştırın. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16 - - - - Open Source Alternative to - için Açık Kaynak Alternatifi - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 38 - - - - The Open Source Alternative to - Açık Kaynak Alternatifi - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - ? yerine Açık Kaynak Kodlu bir alternatif mi arıyorsunuz? Ghostfolio,kullanıcılara yatırımlarını izlemek, analiz ve optimize etmek için kapsamlı bir platform sunan güçlü bir portföy yönetim aracıdır. Deneyimli bir yatırımcı da olsanuz henüz başlamış da olsanız, Ghostfolio sezgileri güçlü bir kullanıcı arayüzü ile geniş spektrumlu bir fonksiyon seti sunarak bilgiye dayalı kararlar vermenizi ve finansal geleceğinizin kontrolünü elinize almanızı sağlar. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio, karşısında açık kaynak kodlu maliyet etkin bir seçenek sunmaktadır. gibi kısıtlı bütçeye sahip, finansal özgürlük ve erken emeklilik (FIRE) amaçlayan kulanıcılar için özellikle uygundur. Ghostfolio, topluluk içindeki geliştiricilerin ve kişisel finans meraklılarının kolektif çabası sayesinde yeteneklerini, güvenliğini ve kullanıcı deneyimini sürekli olarak geliştirmektedir. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Ghostfolio ve arasındaki ayrıntılı karşılaştırmanın yer aldığı aşağıdaki tabloya daha yakından bakarak Ghostfolio'nun karşısında kendisini nasıl konumlandırdığını kapsamlı bir şekilde değerlendirelim. Bu kapsamda özellikler, veri güvenliği, fiyat vb. hususları inceleyerek kişisel gereksinimleriniz için bilgiye dayalı bir seçim yapmanızı sağlayabileceği. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - - Founded - Kuruluş - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - - Origin - Köken - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - - Region - Bölge - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - - Available in - Mevcut - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - - ✅ Yes - ✅ Evet - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - - ❌ No - ❌ Hayır - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 176 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - - ❌ No - ❌ Hayır - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 118 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118 - - - - Self-Hosting - Tarafınızca Barındırma - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - - Use anonymously - Anonim olarak kullan - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 150 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 - - - - Free Plan - Ücretsiz Plan - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - - Notes - Notlar - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Lütfen dikkat, Ghostfolio ve arasındaki karşılaştırmanın yer aldığı tablodaki bilgiler bağımsız araştırmalarımıza dayanmaktadır. Websitemizin ile ya da bu karşılaştırmada adı geçen herhangi bir ürün ve hizmet ile ilişkisi bulunmamaktadır. Kişisel finans araçlarının kapsamı geliştikçe, belirli ayrıntıların veya değişikliklerin doğrudan ilgili ürün sayfasından doğrulanması önemlidir. Verilerin yenilenmesi mi gerekiyor? Doğru verileri sağlamamıza yardımcı olmak için sayfamızı ziyaret edin. GitHub. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 - - - - Ready to take your investments to the next level? - Ready to take your investments to the next level? - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 - - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Ghostfolio ile varlıklarınızı kolaylıkla takip edin, analiz edin ve görselleştirin. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 - - - - Get Started - Başlayın - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 - - - - Personal Finance Tools - Kişisel Finans Araçları - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 - - - - Switzerland - İsviçre - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 80 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 590 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 650 - - - - Global - Küresel - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 81 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 360 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 502 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 651 - - - - United States - Amerika Birleşik Devletleri - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 101 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 167 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 218 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 240 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 302 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 324 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 335 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 371 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 469 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 479 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 489 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 578 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 601 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 639 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 661 - - - - Belgium - Belçika - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 187 - - - - Germany - Almanya - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 198 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 292 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 313 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 358 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 415 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 532 - - - - Austria - Avusturya - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 270 - - - - Italy - İtalya - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 - - - - Netherlands - Hollanda - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 436 - - - - Thailand - Tayland - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 458 - - - - New Zealand - Yeni Zelanda - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 500 - - - - Czech Republic - Çekya - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 511 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 568 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 611 - - - - Resources - Kaynaklar - - apps/client/src/app/pages/resources/resources-page-routing.module.ts - 13 - - - - Guides - Kılavuzlar - - apps/client/src/app/pages/resources/resources-page.html - 22 - - - - Glossary - Sözlük - - apps/client/src/app/pages/resources/resources-page.html - 92 - - - - Grant access - Erişim izni ver - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 7 - - - - Public - Halka açık - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 25 - - - - My Ghostfolio - Benim Ghostfolio'm - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 33 - - - - Auto - Otomatik - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 35 - - - - Please enter your coupon code: - Lütfen kupon kodunuzu girin: - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 111 - - - - Could not redeem coupon code - Kupon kodu kullanılamadı - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 121 - - - - Coupon code has been redeemed - Kupon kodu kullanıldı - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 133 - - - - Reload - Yeniden Yükle - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 134 - - - - Do you really want to remove this sign in method? - Bu giriş yöntemini kaldırmayı gerçekten istiyor musunuz? - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 230 - - - - Membership - Üyelik - - libs/ui/src/lib/membership-card/membership-card.component.html - 18 - - - - Valid until - Geçerli tarih - - libs/ui/src/lib/membership-card/membership-card.component.html - 23 - - - - per year - yıllık - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 - - - apps/client/src/app/pages/pricing/pricing-page.html - 254 - - - - Try Premium - Premium'u Deneyin - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 - - - - Redeem Coupon - Kupon Kullan - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 - - - - Presenter View - Sunum Görünümü - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 7 - - - - Protection for sensitive information like absolute performances and quantity values - Gerçek performans ve miktar değerleri gibi hassas bilgilerin saklanması için - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 8 - - - - Base Currency - Temel Para Birimi - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 27 - - - - Language - Dil - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 - - - - Locale - Yerel Ayarlar - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 - - - - Date and number format - Tarih ve Sayı Formatları - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 - - - - Appearance - Görünüm - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 - - - - Auto - Otomatik - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 - - - - Light - Açık - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 - - - - Dark - Koyu - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 - - - - Distraction-free experience for turbulent times - Çalkantılı zamanlar için dikkat dağıtmayan bir deneyim - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 - - - - Biometric Authentication - Biyometrik Kimlik Doğrulama + + Wealth Items + Varlık Kalemleri - apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 + apps/client/src/app/pages/features/features-page.html + 76 - - Sign in with fingerprint - Parmak iziyle oturum aç + + Import and Export + İçe Aktar / Dışa Aktar - apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 + apps/client/src/app/pages/features/features-page.html + 115 - - Experimental Features - Deneysel Özellikler + + Multi-Accounts + Çoklu Hesaplar - apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 + apps/client/src/app/pages/features/features-page.html + 127 - - Sneak peek at upcoming functionality - Gelecek özelliklere göz atın + + Portfolio Calculations + Portföy Hesaplama - apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 + apps/client/src/app/pages/features/features-page.html + 141 - - User ID - Kullanıcı Kimliği - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 45 - + + Dark Mode + Karanlık Mod - apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 + apps/client/src/app/pages/features/features-page.html + 177 - - Export Data - Verileri Dışa Aktar + + Zen Mode + Zen Modu apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 - - - - Granted Access - xErişim İzni Verildi - - apps/client/src/app/components/user-account-access/user-account-access.html - 5 - - - - Oops, authentication has failed. - Hay Allah, kimlik doğrulaması başarısız oldu. - - apps/client/src/app/pages/webauthn/webauthn-page.html - 19 - - - - Try again - Yeniden dene - - apps/client/src/app/pages/webauthn/webauthn-page.html - 27 - - - - Go back to Home Page - Ana Sayfaya Geri Dön - - apps/client/src/app/pages/webauthn/webauthn-page.html - 31 - - - - Import Activities - İşlemleri İçe Aktar - - libs/ui/src/lib/activities-table/activities-table.component.html - 9 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 370 - - - - Import Dividends - Temettüleri İçe Aktar - - libs/ui/src/lib/activities-table/activities-table.component.html - 29 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 382 - - - - Export Activities - İşlemleri Dışa Aktar - - libs/ui/src/lib/activities-table/activities-table.component.html - 41 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 395 - - - - Export Drafts as ICS - Taslakları ICS Olarak Dışa Aktar - - libs/ui/src/lib/activities-table/activities-table.component.html - 54 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 408 - - - - Draft - Taslak - - libs/ui/src/lib/activities-table/activities-table.component.html - 144 - - - - Clone - Klonla - - libs/ui/src/lib/activities-table/activities-table.component.html - 435 - - - - Export Draft as ICS - Taslakları ICS Olarak Dışa Aktar - - libs/ui/src/lib/activities-table/activities-table.component.html - 445 - - - - Do you really want to delete this activity? - TBu işlemi silmeyi gerçekten istiyor musunuz? - - libs/ui/src/lib/activities-table/activities-table.component.ts - 226 + 171 - - - Index - Endeks - libs/ui/src/lib/benchmark/benchmark.component.html - 3 + apps/client/src/app/pages/features/features-page.html + 190 - - Change from All Time High - Tüm Zamanların En Yüksek Seviyesinden (ATH) Değişim + + Market Mood + Piyasa Modu - libs/ui/src/lib/benchmark/benchmark.component.html - 81 + apps/client/src/app/pages/features/features-page.html + 205 - - from ATH - Tüm Zamanların En Yüksek Seviyesinden + + Static Analysis + Statik Analiz - libs/ui/src/lib/benchmark/benchmark.component.html - 83 + apps/client/src/app/pages/features/features-page.html + 224 - - Market data provided by - Piyasa verileri tarafından sağlanmıştır + + Multi-Language + Çoklu Dil - libs/ui/src/lib/data-provider-credits/data-provider-credits.component.html - 2 + apps/client/src/app/pages/features/features-page.html + 241 - - Savings Rate per Month - Aylık Tasarruf Oranı + + Open Source Software + Açık Kaynak Yazılım - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 10 + apps/client/src/app/pages/features/features-page.html + 275 - - Annual Interest Rate - Yıllık Faiz Oranı + + Get Started + Başla - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 21 + apps/client/src/app/pages/features/features-page.html + 300 - - - Retirement Date - Emeklilik Tarihi - - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 32 + + apps/client/src/app/pages/public/public-page.html + 153 - - Projected Total Amount - Hesaplanan Toplam Tutar + + Holdings + Varlıklar - libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 57 + apps/client/src/app/pages/home/home-page-routing.module.ts + 23 - - - Interest - Faiz - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 367 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - libs/ui/src/lib/i18n.ts - 34 + apps/client/src/app/pages/home/home-page.component.ts + 42 - - - Savings - Tasarruflar - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 377 + apps/client/src/app/pages/zen/zen-page.component.ts + 39 - - Allocation - Dağılım + + Summary + Özet - libs/ui/src/lib/holdings-table/holdings-table.component.html - 98 + apps/client/src/app/pages/home/home-page-routing.module.ts + 33 - libs/ui/src/lib/top-holdings/top-holdings.component.html - 45 + apps/client/src/app/pages/home/home-page.component.ts + 47 - - Show all - Tümünü göster + + Markets + Piyasalar - libs/ui/src/lib/holdings-table/holdings-table.component.html - 197 + apps/client/src/app/pages/home/home-page-routing.module.ts + 38 - libs/ui/src/lib/top-holdings/top-holdings.component.html - 79 + apps/client/src/app/pages/home/home-page.component.ts + 52 - - - Account - Hesap - libs/ui/src/lib/i18n.ts - 4 + apps/client/src/app/pages/markets/markets-page-routing.module.ts + 13 - - Asia-Pacific - Asya Pasifik + + Manage your wealth like a boss + Varlıklarınızı bir patron gibi yönetin - libs/ui/src/lib/i18n.ts + apps/client/src/app/pages/landing/landing-page.html 5 - - Asset Class - Varlık Sınıfı + + 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, mali durumunuz için gizlilik odaklı, açık kaynaklı bir kontrol panelidir. Varlık dağılımınızı analiz edin, net değerinizi öğrenin ve sağlam, veriye dayalı yatırım kararları alın. - libs/ui/src/lib/i18n.ts - 6 + apps/client/src/app/pages/landing/landing-page.html + 9 - - Asset Sub Class - Asset Sub Class + + Get Started + Başla - libs/ui/src/lib/i18n.ts - 7 + apps/client/src/app/pages/landing/landing-page.html + 41 - - - Core - Core - libs/ui/src/lib/i18n.ts - 9 + apps/client/src/app/pages/landing/landing-page.html + 419 - - Switch to Ghostfolio Premium or Ghostfolio Open Source easily - Switch to Ghostfolio Premium or Ghostfolio Open Source easily + + or + veya - libs/ui/src/lib/i18n.ts - 10 + apps/client/src/app/pages/landing/landing-page.html + 46 - - Switch to Ghostfolio Premium easily - Switch to Ghostfolio Premium easily + + Live Demo + Canlı Deneme - libs/ui/src/lib/i18n.ts - 11 + apps/client/src/app/pages/landing/landing-page.html + 49 - - - Switch to Ghostfolio Open Source or Ghostfolio Basic easily - Switch to Ghostfolio Open Source or Ghostfolio Basic easily - libs/ui/src/lib/i18n.ts - 12 + apps/client/src/app/pages/landing/landing-page.html + 424 - - Emergency Fund - Emergency Fund + + Monthly Active Users + Aylık Aktif Kullanıcılar - libs/ui/src/lib/i18n.ts - 13 + apps/client/src/app/pages/landing/landing-page.html + 69 - - Grant - Grant + + Stars on GitHub + GitHub'daki Beğeniler - libs/ui/src/lib/i18n.ts - 14 + apps/client/src/app/pages/landing/landing-page.html + 87 + + + apps/client/src/app/pages/open/open-page.html + 103 - - Higher Risk - Higher Risk + + Pulls on Docker Hub + Docker Hub'ta Çekmeler - libs/ui/src/lib/i18n.ts - 15 + apps/client/src/app/pages/landing/landing-page.html + 105 + + + apps/client/src/app/pages/open/open-page.html + 117 - - This activity already exists. - This activity already exists. + + As seen in + Şurada görüldüğü gibi - libs/ui/src/lib/i18n.ts - 16 + apps/client/src/app/pages/landing/landing-page.html + 113 - - Japan - Japan + + Protect your assets. Refine your personal investment strategy. + varlıklarınızı koruyun. Kişisel yatırım stratejinizi geliştirin. - libs/ui/src/lib/i18n.ts - 17 + apps/client/src/app/pages/landing/landing-page.html + 215 - - Lower Risk - Lower Risk + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio, takip edilmeden hisse senetleri, ETF'ler veya kripto paraları izlemek isteyen yoğun insanlara güç verir. - libs/ui/src/lib/i18n.ts - 18 + apps/client/src/app/pages/landing/landing-page.html + 219 - - Month - Month + + 360° View + 360° Görünüm - libs/ui/src/lib/i18n.ts - 19 + apps/client/src/app/pages/landing/landing-page.html + 230 - - Months - Months + + Get the full picture of your personal finances across multiple platforms. + Kişisel finansınızın tam resmini birden fazla platformda edinin. - libs/ui/src/lib/i18n.ts - 20 + apps/client/src/app/pages/landing/landing-page.html + 232 - - Other - Other + + Web3 Ready + Web3 Hazır - libs/ui/src/lib/i18n.ts - 21 + apps/client/src/app/pages/landing/landing-page.html + 241 + + + Use Ghostfolio anonymously and own your financial data. + Ghostfolio'yu anonim olarak kullanın ve finansal verilerinize sahip çıkın. - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 389 + apps/client/src/app/pages/landing/landing-page.html + 243 - - Preset - Preset + + Open Source + Açık Kaynak - libs/ui/src/lib/i18n.ts - 22 + apps/client/src/app/pages/landing/landing-page.html + 251 - - Retirement Provision - Retirement Provision + + Benefit from continuous improvements through a strong community. + Güçlü bir topluluk aracılığıyla sürekli gelişmelerden faydalanın. - libs/ui/src/lib/i18n.ts - 23 + apps/client/src/app/pages/landing/landing-page.html + 253 - - Satellite - Satellite + + Why Ghostfolio? + Neden Ghostfolio? - libs/ui/src/lib/i18n.ts - 24 + apps/client/src/app/pages/landing/landing-page.html + 262 - - Symbol - Sembol + + Ghostfolio is for you if you are... + Ghostfolio tam size göre, - libs/ui/src/lib/i18n.ts - 25 + apps/client/src/app/pages/landing/landing-page.html + 263 - - Tag - Etiket + + trading stocks, ETFs or cryptocurrencies on multiple platforms + Birden fazla platformda hisse senedi, ETF veya kripto para ticareti yapıyorsanız, - libs/ui/src/lib/i18n.ts - 26 + apps/client/src/app/pages/landing/landing-page.html + 270 - - Year - Yıl + + pursuing a buy & hold strategy + al ve tut stratejisi izliyorsanız, - libs/ui/src/lib/i18n.ts - 27 + apps/client/src/app/pages/landing/landing-page.html + 276 - - Years - Yıl + + interested in getting insights of your portfolio composition + Portföy bileşimine dair içgörüleri edinmek istiyorsanız, - libs/ui/src/lib/i18n.ts - 28 + apps/client/src/app/pages/landing/landing-page.html + 281 - - Buy - Al + + valuing privacy and data ownership + Gizliliğe ve verilerinize sahip çıkmayı önemsiyorsanız - libs/ui/src/lib/i18n.ts - 31 + apps/client/src/app/pages/landing/landing-page.html + 286 - - Valuable - Kıymet + + into minimalism + minimalizme ilgi duyuyorsanız - libs/ui/src/lib/i18n.ts - 35 + apps/client/src/app/pages/landing/landing-page.html + 289 - - Liability - Yükümlülük + + caring about diversifying your financial resources + finansal kaynaklarınızı çeşitlendirmeye önem veriyorsanız - libs/ui/src/lib/i18n.ts - 36 + apps/client/src/app/pages/landing/landing-page.html + 293 - - Sell - Sat + + interested in financial independence + finansal özgürlük peşindeyseniz - libs/ui/src/lib/i18n.ts - 37 + apps/client/src/app/pages/landing/landing-page.html + 297 - - Cash - Nakit + + saying no to spreadsheets in + elektronik tablo uygulamalarına hayır diyorsanız - libs/ui/src/lib/i18n.ts - 40 + apps/client/src/app/pages/landing/landing-page.html + 301 - - Commodity - Emtia + + still reading this list + bu listeyi hala okuyorsanız - libs/ui/src/lib/i18n.ts - 41 + apps/client/src/app/pages/landing/landing-page.html + 304 - - Equity - Menkul Kıymet + + Learn more about Ghostfolio + Ghostfolio hakkında daha fazla bilgi edinin - libs/ui/src/lib/i18n.ts - 42 + apps/client/src/app/pages/landing/landing-page.html + 309 - - Fixed Income - Sabit Gelir + + What our users are saying + What our users are saying - libs/ui/src/lib/i18n.ts - 43 + apps/client/src/app/pages/landing/landing-page.html + 317 - - Real Estate - Gayrimenkul + + Members from around the globe are using Ghostfolio Premium + Dünyanın dört bir yanındaki kullanıcılar Ghostfolio Premium kullanıyorlar. - libs/ui/src/lib/i18n.ts - 45 + apps/client/src/app/pages/landing/landing-page.html + 349 - - Bond - Bono + + How does Ghostfolio work? + How does Ghostfolio work? - libs/ui/src/lib/i18n.ts - 48 + apps/client/src/app/pages/landing/landing-page.html + 361 - - Cryptocurrency - Kriptopara + + Get started in only 3 steps + Sadece 3 adımda başlayın - libs/ui/src/lib/i18n.ts - 49 + apps/client/src/app/pages/landing/landing-page.html + 364 - - ETF - Borsada İşlem Gören Fonlar (ETF) + + Sign up anonymously* + Anonim olarak kaydolun* - libs/ui/src/lib/i18n.ts - 50 + apps/client/src/app/pages/landing/landing-page.html + 370 - - Mutual Fund - Borsada İşlem Görmeyen Fonlar (Mutual Fund) + + * no e-mail address nor credit card required + * e-posta adresi veya kredi kartı gerekmez - libs/ui/src/lib/i18n.ts - 51 + apps/client/src/app/pages/landing/landing-page.html + 372 - - Precious Metal - Kıymetli Metaller + + Add any of your historical transactions + Herhangi bir geçmiş işleminizi ekleyin - libs/ui/src/lib/i18n.ts - 52 + apps/client/src/app/pages/landing/landing-page.html + 383 - - Private Equity - Özel Menkul Kıymetler + + Get valuable insights of your portfolio composition + Portföy bileşiminizle ilgili değerli bilgiler edinin - libs/ui/src/lib/i18n.ts - 53 + apps/client/src/app/pages/landing/landing-page.html + 395 - - Stock - Hisse Senetleri + + Are you ready? + Are you ready? - libs/ui/src/lib/i18n.ts - 54 + apps/client/src/app/pages/landing/landing-page.html + 407 - - Africa - Afrika + + Join now or check out the example account + Şİmdi katılın ya da örnek hesabı inceleyin - libs/ui/src/lib/i18n.ts - 61 + apps/client/src/app/pages/landing/landing-page.html + 408 - - Asia - Asya + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Ghostfolio'da şeffaflık, değerlerimizin temelinde yer alır. Kaynak kodunu açık kaynak yazılım (OSS) olarak AGPL-3.0 lisansı altında yayınlıyoruz ve platformun işletme durumunun toplu anahtar metriklerini açıkça paylaşıyoruz. - libs/ui/src/lib/i18n.ts - 62 + apps/client/src/app/pages/open/open-page.html + 6 - - Europe - Avrupa + + Active Users + Aktif Kullanıcılar - libs/ui/src/lib/i18n.ts - 63 + apps/client/src/app/pages/open/open-page.html + 40 + + + apps/client/src/app/pages/open/open-page.html + 62 - - North America - Kuzey Amerika + + New Users + Yeni Kullanıcılar - libs/ui/src/lib/i18n.ts - 64 + apps/client/src/app/pages/open/open-page.html + 51 - - Oceania - Okyanusya + + Users in Slack community + Slack topluluğundaki kullanıcılar - libs/ui/src/lib/i18n.ts - 65 + apps/client/src/app/pages/open/open-page.html + 75 - - South America - Güney Amerika + + Contributors on GitHub + GitHub'da Katkıda Bulunanlar - libs/ui/src/lib/i18n.ts - 66 + apps/client/src/app/pages/open/open-page.html + 89 - - Time to add your first activity. - İlk işleminizi girmanin tam zamanı. + + Uptime + Çalışma Süresi - libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html - 12 + apps/client/src/app/pages/open/open-page.html + 132 - - No data available - Veri mevcut değil + + Activities + İşlemler - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 391 + apps/client/src/app/pages/portfolio/activities/activities-page-routing.module.ts + 13 - libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts - 404 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 39 - - You are using the Live Demo. - Canlı demoyu kullanmaktasınız. + + Do you really want to delete these activities? + Tüm işlemlerinizi silmeyi gerçekten istiyor musunuz? - apps/client/src/app/app.component.html - 17 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 - - Interest - Faiz + + Update activity + İşlemi Güncelle - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 318 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 7 - - (Last 24 hours) - (Son 24 saat) + + Stocks, ETFs, bonds, cryptocurrencies, commodities + Hisse senetleri, ETF'ler, tahviller, kripto paralar, emtialar - apps/client/src/app/pages/open/open-page.html - 37 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 22 - - - (Last 30 days) - (Son 30 gün) - apps/client/src/app/pages/open/open-page.html - 48 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 62 + + + Mortgages, personal loans, credit cards + Mortgage, kişisel krediler, kredi kartları - apps/client/src/app/pages/open/open-page.html - 59 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 54 - - (Last 90 days) - (Son 90 gün) + + Luxury items, real estate, private companies + Lüks eşyalar, gayrimenkuller, özel şirketler - apps/client/src/app/pages/open/open-page.html - 127 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 70 - - One-time fee, annual account fees - Tek seferlik ücret, yıllık hesap ücreti + + Account + Hesap apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 + 82 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 307 - - Distribution of corporate earnings - Şirket gelirinin dağıtımı + + Update Cash Balance + Nakit Bakiyesini Güncelle apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 + 108 - - Revenue for lending out money - Borç verme getirisi + + Unit Price + Birim Fiyat apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 + 199 - - - Oops! Could not get the historical exchange rate from - Hay Allah! Tarihsel kur verisi elde edilemedi apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 + 261 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 209 - - Choose or drop a file here - Dosya seçin ya da sürükleyin + + Oops! Could not get the historical exchange rate from + Hay Allah! Geçmiş döviz kuru alınamadı: - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 292 - + Fee - Ücret + Komisyon - libs/ui/src/lib/i18n.ts - 33 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 280 - - - Add Tag - Etiket Ekleyiniz - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 302 - - - Do you really want to delete this tag? - Bu etiketi silmeyi gerçekten istiyor musunuz? - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 79 + libs/ui/src/lib/activities-table/activities-table.component.html + 233 - - Update tag - Etiketi güncelle + + Import Activities + İşlemleri İçe Aktar - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 44 - - Add tag - Etiket ekle + + Import Dividends + Temettüleri İçe Aktar - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 86 - - France - Fransa + + Importing data... + Veri içe aktarılıyor... - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 120 + + + Import has been completed + İçe aktarma tamamlandı - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 522 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 128 + + + Validating data... + Veri doğrulanıyor... - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 547 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 233 - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray, portföyünüzdeki potansiyel sorunlar ve riskleri belirlemek için statik analiz yöntemleri uygulamaktadır. + + Select Holding + Varlık Seç - apps/client/src/app/pages/portfolio/fire/fire-page.html - 111 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 20 - - Currency Cluster Risks - Kur Kümelenme Riskleri (Currency Cluster Risks) + + Select File + Dosya Seç - apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 23 - - Account Cluster Risks - Hesap Kümelenme Riski (Account Cluster Risks) + + Holding + Varlık - apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 33 - - Transfer Cash Balance - Nakit Bakiyesini Transfer Et + + Load Dividends + Temettü Yükle - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 70 + + + The following file formats are supported: + Aşağıdaki dosya formatları desteklenmektedir: - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 92 - - Benchmark - Kıyaslama + + Select Dividends + Temettü Seç - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 284 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 115 - - Version - Versiyon + + Select Activities + İşlemleri Seç - apps/client/src/app/components/admin-overview/admin-overview.html - 7 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 118 - - Settings - Ayarlar + + Back + Geri - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 146 - - - From - Başlangıç - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 182 - - To - Bitiş + + Import + İçe Aktar - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 108 - - - Transfer - Transfer - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 155 - - - Finland - Finlandiya - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 539 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 190 - - Membership - Üyelik + + Allocations + Dağılımlar - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 23 + apps/client/src/app/pages/portfolio/allocations/allocations-page-routing.module.ts + 13 - apps/client/src/app/pages/user-account/user-account-page.component.ts - 40 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 44 - - Access - Erişim + + Allocations + Dağılımlar - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 28 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 4 + + + Proportion of Net Worth + Net Değer Oranı - apps/client/src/app/pages/user-account/user-account-page.component.ts - 46 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 12 - - Find holding... - Sahip olunan varlıkları bul... + + By Platform + Platforma Göre - libs/ui/src/lib/assistant/assistant.component.ts - 138 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 44 - - No entries... - Girdi yok... + + By Currency + Para Birimine Göre - libs/ui/src/lib/assistant/assistant.html + apps/client/src/app/pages/portfolio/allocations/allocations-page.html 63 + + + By Asset Class + Varlık Sınıfına Göre - libs/ui/src/lib/assistant/assistant.html - 84 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 85 - - Asset Profile - Varlık Profili + + By Holding + Varlığa Göre - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 107 - - Do you really want to delete this asset profile? - Bu varlık profilini silmeyi gerçekten istiyor musunuz? + + By Sector + Sektöre Göre - apps/client/src/app/components/admin-market-data/admin-market-data.service.ts - 13 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 130 - - Search - Arama + + By Continent + Kıtaya Göre - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 153 - - Add Manually - Elle Giriş + + By Market + Piyasaya Göre - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 175 - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio, hisse senetleri, ETF’ler veya kriptopara birimleri gibi varlıklarınızı birden fazla platformda takip etmenizi sağlayan bir kişisel finans kontrol panelidir. + + Regions + Bölgeler - apps/client/src/app/pages/i18n/i18n-page.html - 4 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 198 - - - Last All Time High - Son, ATH - libs/ui/src/lib/benchmark/benchmark.component.html - 65 + apps/client/src/app/pages/public/public-page.html + 76 - - User - Kullanıcı + + Developed Markets + Gelişmiş Piyasalar - apps/client/src/app/components/admin-users/admin-users.html - 29 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 222 + + + apps/client/src/app/pages/public/public-page.html + 93 - - Ghostfolio vs comparison table - Ghostfolio ve karşılatırma tablosu + + Emerging Markets + Gelişmekte Olan Piyasalar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 231 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/public/public-page.html + 102 + + + Other Markets + Diğer Piyasalar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 240 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/public/public-page.html + 111 + + + No data available + Veri mevcut değil - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/public/public-page.html + 123 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 88 + + + By Account + Hesaba Göre - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 286 + + + By ETF Provider + ETF Sağlayıcısına Göre - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 306 + + + + By Country + Ülkeye Göre + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 264 + + + Analysis + Analiz - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 34 + + + Dividend + Temettü - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + libs/ui/src/lib/i18n.ts + 32 + + + Deposit + Para Yatırma - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 361 + + + Monthly + Aylık - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 50 + + + Yearly + Yıllık - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 51 + + + Analysis + Analiz - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 2 + + + Top + Üst - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 168 + + + Bottom + Alt - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 214 + + + Portfolio Evolution + Portföyün Gelişimi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 264 + + + Investment Timeline + Yatırım Zaman Çizelgesi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 294 + + + Current Streak + Güncel Seri - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 315 + + + Longest Streak + En Uzun Seri - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 324 + + + Dividend Timeline + Temettü Zaman Çizelgesi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 352 + + + FIRE + FIRE - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/fire/fire-page-routing.module.ts + 13 + + + FIRE + Finansal Özgürlük ve Erken Emeklilik (FIRE) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 4 + + + Calculator + Hesap Makinesi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 7 + + + 4% Rule + %4 Kuralı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 41 + + + Holdings + Varlıklar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/components/home-holdings/home-holdings.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/public/public-page.html + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + libs/ui/src/lib/assistant/assistant.html + 46 + + + Pricing + Fiyatlandırma - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page-routing.module.ts + 13 + + + Pricing Plans + Fiyatlandırma Planları - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 4 + + + Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. + Resmi Ghostfolio Premium bulut teklifimiz bir başlangıç yapmanın en kolay yoludur. Zaman tasarrufu sağladığı için çoğu insan için en iyi seçenek olacaktır. Gelir, barındırma altyapısının maliyetlerini karşılamak ve süregiden geliştirme işlerini finanse etmek için kullanılmaktadır. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 6 + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + Ghostfolio'yu kendi altyapınızda çalıştırmayı tercih ederseniz, lütfen kaynak kodunu ve daha fazla talimatı GitHub adresinde bulun. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. + Kendi altyapılarında Ghostfolio'yu çalıştırmayı tercih eden teknolojiye hakim yatırımcılar için. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 36 + + + Unlimited Transactions + Sınırsız İşlem - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 43 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 126 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 187 + + + Unlimited Accounts + Kısıtsız Hesaplar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 47 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 191 + + + Portfolio Performance + Portföy Performansı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 51 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 195 + + + Data Import and Export + Veri İçe Aktarma ve Dışa Aktarma - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 138 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 215 + + + Community Support + Topluluk Desteği - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 88 + + + Self-hosted, update manually. + Tarafınızca barındırılıyor, elle güncelleyiniz. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 92 + + + Free + Ücretsiz - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 93 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 150 + + + For new investors who are just getting started with trading. + Alım satıma henüz başlamış yeni yatırımcılar için. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 120 + + + Fully managed Ghostfolio cloud offering. + Eksiksiz yönetilen Ghostfolio bulut teklifi. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 149 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 + apps/client/src/app/pages/pricing/pricing-page.html + 240 - - Canada - Kanada + + For ambitious investors who need the full picture of their financial assets. + Finansal varlıklarının tamamını görmeye ihtiyaç duyan hırslı yatırımcılar için. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 631 + apps/client/src/app/pages/pricing/pricing-page.html + 180 - - Open Source Wealth Management Software - Açık Kaynak Varlık Yönetim Yazılımı + + Email and Chat Support + E-posta ve Sohbet Desteği - apps/client/src/app/pages/i18n/i18n-page.html - 14 + apps/client/src/app/pages/pricing/pricing-page.html + 236 - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - app, varlık, kriptopara, kontrol paneli, etf, finans, yönetim, performans, portföy, yazılım, hisse, alım satım, varlık, web3 + + Renew Plan + Aboneliği Yenile - apps/client/src/app/pages/i18n/i18n-page.html - 9 + apps/client/src/app/components/header/header.component.html + 190 - - - Oops, cash balance transfer has failed. - Hay Allah, Nakit bakiyesi tranferi başarısız oldu. - apps/client/src/app/pages/accounts/accounts-page.component.ts - 304 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 28 - - - Poland - Polonya - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 139 + apps/client/src/app/pages/pricing/pricing-page.html + 276 - - South Africa - Güney Afrika + + One-time payment, no auto-renewal. + Tek seferlik ödeme, otomatik yenileme yok. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 259 + apps/client/src/app/pages/pricing/pricing-page.html + 280 - - Extreme Fear - Aşırı Korku + + Get Started + Başla - libs/ui/src/lib/i18n.ts - 69 + apps/client/src/app/pages/pricing/pricing-page.html + 291 - - Extreme Greed - Aşırı Açgözlülük + + It’s free. + Ücretsiz. - libs/ui/src/lib/i18n.ts - 70 + apps/client/src/app/pages/pricing/pricing-page.html + 294 - - Neutral - Nötr + + Hello, has shared a Portfolio with you! + Merhaba, size bir Portföy paylaştı! - libs/ui/src/lib/i18n.ts - 73 + apps/client/src/app/pages/public/public-page.html + 4 - - Oops! Could not parse historical data. - Hay Allah! Geçmiş veriler ayrıştırılamadı. + + Currencies + Para birimleri - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 232 + apps/client/src/app/pages/public/public-page.html + 30 - - Do you really want to delete this system message? - Bu sistem mesajını silmeyi gerçekten istiyor musunuz? + + Continents + Kıtalar - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 166 + apps/client/src/app/pages/public/public-page.html + 60 - - 50-Day Trend - 50 Günlük Trend + + Ghostfolio empowers you to keep track of your wealth. + Ghostfolio, varlıklarınızı takip etmenizi sağlar. - libs/ui/src/lib/benchmark/benchmark.component.html - 15 + apps/client/src/app/pages/public/public-page.html + 148 - - 200-Day Trend - 200 Günlük Trend + + Registration + Kayıt - libs/ui/src/lib/benchmark/benchmark.component.html - 40 + apps/client/src/app/pages/register/register-page-routing.module.ts + 13 - - Cash Balances - Nakit Bakiyeleri + + Create Account + Hesap Oluştur - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 115 + apps/client/src/app/app.component.html + 18 - - - Starting from - Başlangıç - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/register/register-page.html + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 2 + + + Continue with Internet Identity + İnternet Kimliği ile Devam Et - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/register/register-page.html + 41 + + + Continue with Google + Google ile Devam Et - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/register/register-page.html + 51 + + + Copy to clipboard + Panoya Kopyala - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 26 + + + I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. + I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 32 + + + Agree and continue + Kabul et ve devam et - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 45 + + + Personal Finance Tools + Kişisel Finans Araçları - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 14 + + + open-source-alternative-to + Açık kaynak alternatif - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 + + + Open Source Alternative to + için Açık Kaynak Alternatif - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 27 + + + Discover Open Source Alternatives for Personal Finance Tools + Açık Kaynak Kişisel Finans Seçeneklerini Keşfet - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 4 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + Bu genel bakış sayfası, diğer kişisel finans araçlarının seçilmiş bir koleksiyonunun açık kaynak alternatifiGhostfolio ile karşılaştırmasını sunmaktadır.. Şeffaflığa, veri gizliliğine ve topluluk işbirliğine değer veriyorsanız Ghostfolio, finansal yönetiminizin kontrolünü ele almak için mükemmel Şeffaflığa, veri gizliliğine ve topluluk işbirliğine değer veriyorsanız Ghostfolio, finansal yönetiminizin kontrolünü ele almak için mükemmel bir fırsat sunuyor. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 + + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Aşağıdaki bağlantıları keşfedin, çeşitli kişisel finans araçlarını Ghostfolio ile karşılaştırın. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to + için Açık Kaynak Alternatifi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 42 + + + The Open Source Alternative to + Açık Kaynak Alternatifi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + ? yerine Açık Kaynak Kodlu bir alternatif mi arıyorsunuz? Ghostfolio,kullanıcılara yatırımlarını izlemek, analiz ve optimize etmek için kapsamlı bir platform sunan güçlü bir portföy yönetim aracıdır. Deneyimli bir yatırımcı da olsanuz henüz başlamış da olsanız, Ghostfolio sezgileri güçlü bir kullanıcı arayüzü ile geniş spektrumlu bir fonksiyon seti sunarak bilgiye dayalı kararlar vermenizi ve finansal geleceğinizin kontrolünü elinize almanızı sağlar. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio, karşısında açık kaynak kodlu maliyet etkin bir seçenek sunmaktadır. gibi kısıtlı bütçeye sahip, finansal özgürlük ve erken emeklilik (FIRE) amaçlayan kulanıcılar için özellikle uygundur. Ghostfolio, topluluk içindeki geliştiricilerin ve kişisel finans meraklılarının kolektif çabası sayesinde yeteneklerini, güvenliğini ve kullanıcı deneyimini sürekli olarak geliştirmektedir. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 27 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Ghostfolio ve arasındaki ayrıntılı karşılaştırmanın yer aldığı aşağıdaki tabloya daha yakından bakarak Ghostfolio'nun karşısında kendisini nasıl konumlandırdığını kapsamlı bir şekilde değerlendirelim. Bu kapsamda özellikler, veri güvenliği, fiyat vb. hususları inceleyerek kişisel gereksinimleriniz için bilgiye dayalı bir seçim yapmanızı sağlayabileceği. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 38 + + + Founded + Kuruluş - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 72 + + + Origin + Köken - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 77 + + + Region + Bölge - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 82 + + + Available in + Mevcut - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 87 + + + ✅ Yes + ✅ Evet - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 109 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 116 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 162 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 174 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 181 + + + ❌ No + ❌ Hayır - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 145 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 157 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 164 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 176 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 183 + + + ❌ No + ❌ Hayır - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 118 + + + Self-Hosting + Tarafınızca Barındırma - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 123 + + + Use anonymously + Anonim olarak kullan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 150 + + + Free Plan + Ücretsiz Plan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 169 + + + Notes + Notlar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 202 + + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Lütfen dikkat, Ghostfolio ve arasındaki karşılaştırmanın yer aldığı tablodaki bilgiler bağımsız araştırmalarımıza dayanmaktadır. Websitemizin ile ya da bu karşılaştırmada adı geçen herhangi bir ürün ve hizmet ile ilişkisi bulunmamaktadır. Kişisel finans araçlarının kapsamı geliştikçe, belirli ayrıntıların veya değişikliklerin doğrudan ilgili ürün sayfasından doğrulanması önemlidir. Verilerin yenilenmesi mi gerekiyor? Doğru verileri sağlamamıza yardımcı olmak için sayfamızı ziyaret edin. GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 210 + + + Ready to take your investments to the next level? + Ready to take your investments to the next level? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 223 + + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Ghostfolio ile varlıklarınızı kolaylıkla takip edin, analiz edin ve görselleştirin. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 227 + + + Get Started + Başlayın - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 232 + + + Personal Finance Tools + Kişisel Finans Araçları - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 308 + + + Switzerland + İsviçre - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 58 + + + Global + Küresel - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 59 + + + Resources + Kaynaklar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/resources-page-routing.module.ts + 13 + + + Guides + Kılavuzlar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/resources-page.html + 22 + + + Glossary + Sözlük - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/resources/resources-page.html + 92 + + + Grant access + Erişim izni ver - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 7 + + + Public + Halka açık - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 25 + + + My Ghostfolio + Benim Ghostfolio'm - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 33 + + + Auto + Otomatik - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 35 + + + Please enter your coupon code: + Lütfen kupon kodunuzu girin: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 111 + + + Could not redeem coupon code + Kupon kodu kullanılamadı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 121 + + + Coupon code has been redeemed + Kupon kodu kullanıldı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 133 + + + Reload + Yeniden Yükle - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 134 + + + Do you really want to remove this sign in method? + Bu giriş yöntemini kaldırmayı gerçekten istiyor musunuz? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 230 + + + Membership + Üyelik - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/membership-card/membership-card.component.html + 18 + + + Valid until + Geçerli tarih - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/membership-card/membership-card.component.html + 23 + + + per year + yıllık - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/pricing/pricing-page.html + 254 + + + Try Premium + Premium'u Deneyin - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 50 + + + Redeem Coupon + Kupon Kullan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 63 + + + Presenter View + Sunum Görünümü - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 7 + + + Protection for sensitive information like absolute performances and quantity values + Gerçek performans ve miktar değerleri gibi hassas bilgilerin saklanması için - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 8 + + + Base Currency + Temel Para Birimi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 27 + + + Language + Dil - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 50 + + + Locale + Yerel Ayarlar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 121 + + + Date and number format + Tarih ve Sayı Formatları - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 123 + + + Appearance + Görünüm - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 146 + + + Auto + Otomatik - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 160 + + + Light + Açık - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 161 + + + Dark + Koyu - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 162 + + + Distraction-free experience for turbulent times + Çalkantılı zamanlar için dikkat dağıtmayan bir deneyim - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 172 + + + Biometric Authentication + Biyometrik Kimlik Doğrulama - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 188 + + + Sign in with fingerprint + Parmak iziyle oturum aç - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 189 + + + Experimental Features + Deneysel Özellikler - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 206 + + + Sneak peek at upcoming functionality + Gelecek özelliklere göz atın - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 207 + + + User ID + Kullanıcı Kimliği - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 223 + + + Export Data + Verileri Dışa Aktar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 231 + + + Granted Access + xErişim İzni Verildi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/user-account-access/user-account-access.html + 5 + + + Oops, authentication has failed. + Hay Allah, kimlik doğrulaması başarısız oldu. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/webauthn/webauthn-page.html + 19 + + + Try again + Yeniden dene - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/webauthn/webauthn-page.html + 27 + + + Go back to Home Page + Ana Sayfaya Geri Dön - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/webauthn/webauthn-page.html + 31 + + + Import Activities + İşlemleri İçe Aktar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.html + 370 + + + Import Dividends + Temettüleri İçe Aktar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.html + 29 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.html + 382 + + + Export Activities + İşlemleri Dışa Aktar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.html + 395 + + + Export Drafts as ICS + Taslakları ICS Olarak Dışa Aktar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.html + 54 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.html + 408 + + + Draft + Taslak - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.html + 144 + + + Clone + Klonla - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.html + 435 + + + Export Draft as ICS + Taslakları ICS Olarak Dışa Aktar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.html + 445 + + + Do you really want to delete this activity? + TBu işlemi silmeyi gerçekten istiyor musunuz? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/activities-table/activities-table.component.ts + 226 + + + Index + Endeks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/benchmark/benchmark.component.html + 3 + + + Change from All Time High + Tüm Zamanların En Yüksek Seviyesinden (ATH) Değişim - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/benchmark/benchmark.component.html + 81 + + + from ATH + Tüm Zamanların En Yüksek Seviyesinden - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/benchmark/benchmark.component.html + 83 + + + Market data provided by + Piyasa verileri tarafından sağlanmıştır - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/data-provider-credits/data-provider-credits.component.html + 2 + + + Savings Rate per Month + Aylık Tasarruf Oranı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 10 + + + Annual Interest Rate + Yıllık Faiz Oranı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 21 + + + Retirement Date + Emeklilik Tarihi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 32 + + + Projected Total Amount + Hesaplanan Toplam Tutar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 57 + + + Interest + Faiz - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 371 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/i18n.ts + 34 - - year - Yıl + + Savings + Tasarruflar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 381 + + + Allocation + Dağılım - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 98 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 46 + + + Show all + Tümünü göster - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 197 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 81 + + + Account + Hesap - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 4 + + + Asia-Pacific + Asya Pasifik - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 5 + + + Asset Class + Varlık Sınıfı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 6 + + + Asset Sub Class + Asset Sub Class - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 7 + + + Core + Core - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 9 + + + Switch to Ghostfolio Premium or Ghostfolio Open Source easily + Switch to Ghostfolio Premium or Ghostfolio Open Source easily - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 10 + + + Switch to Ghostfolio Premium easily + Switch to Ghostfolio Premium easily - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 11 + + + Switch to Ghostfolio Open Source or Ghostfolio Basic easily + Switch to Ghostfolio Open Source or Ghostfolio Basic easily - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 12 + + + Emergency Fund + Emergency Fund - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 13 + + + Grant + Grant - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 14 + + + Higher Risk + Higher Risk - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 15 + + + This activity already exists. + This activity already exists. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 16 + + + Japan + Japan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 17 + + + Lower Risk + Lower Risk - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 18 + + + Month + Month - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 19 + + + Months + Months - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 20 + + + Other + Other - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 21 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 389 + + + Preset + Preset - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 22 + + + Retirement Provision + Retirement Provision - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 23 + + + Satellite + Satellite - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 24 + + + Symbol + Sembol - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 25 + + + Tag + Etiket - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 26 + + + Year + Yıl - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 27 + + + Years + Yıl - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 28 + + + Buy + Al - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 31 + + + Valuable + Kıymet - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 35 + + + Liability + Yükümlülük - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 36 + + + Sell + Sat - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 37 + + + Cash + Nakit - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 40 + + + Commodity + Emtia - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 41 + + + Equity + Menkul Kıymet - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 42 + + + Fixed Income + Sabit Gelir - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 43 + + + Real Estate + Gayrimenkul - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 45 + + + Bond + Bono - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 48 + + + Cryptocurrency + Kriptopara - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 49 + + + ETF + Borsada İşlem Gören Fonlar (ETF) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 50 + + + Mutual Fund + Borsada İşlem Görmeyen Fonlar (Mutual Fund) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 51 + + + Precious Metal + Kıymetli Metaller - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 52 + + + Private Equity + Özel Menkul Kıymetler - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 53 + + + Stock + Hisse Senetleri - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 54 + + + Africa + Afrika - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 61 + + + Asia + Asya - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 62 + + + Europe + Avrupa - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 63 + + + North America + Kuzey Amerika - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 64 + + + Oceania + Okyanusya - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 65 + + + South America + Güney Amerika - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 66 + + + Time to add your first activity. + İlk işleminizi girmanin tam zamanı. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/no-transactions-info/no-transactions-info.component.html + 12 + + + No data available + Veri mevcut değil - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 391 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 404 + + + You are using the Live Demo. + Canlı demoyu kullanmaktasınız. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app.component.html + 17 + + + Interest + Faiz - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 331 + + + (Last 24 hours) + (Son 24 saat) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 37 + + + (Last 30 days) + (Son 30 gün) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 59 + + + (Last 90 days) + (Son 90 gün) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/open/open-page.html + 127 + + + One-time fee, annual account fees + Tek seferlik ücret, yıllık hesap ücreti - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 30 + + + Distribution of corporate earnings + Şirket gelirinin dağıtımı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 38 + + + Revenue for lending out money + Borç verme getirisi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 46 + + + Oops! Could not get the historical exchange rate from + Hay Allah! Tarihsel kur verisi elde edilemedi - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 226 + + + Choose or drop a file here + Dosya seçin ya da sürükleyin - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 86 + + + Fee + Ücret - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 33 + + + Add Tag + Etiket Ekleyiniz - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? + Bu etiketi silmeyi gerçekten istiyor musunuz? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 79 + + + Update tag + Etiketi güncelle - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 7 + + + Add tag + Etiket ekle - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 8 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray, portföyünüzdeki potansiyel sorunlar ve riskleri belirlemek için statik analiz yöntemleri uygulamaktadır. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 111 + + + Currency Cluster Risks + Kur Kümelenme Riskleri (Currency Cluster Risks) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 135 + + + Account Cluster Risks + Hesap Kümelenme Riski (Account Cluster Risks) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 148 + + + Transfer Cash Balance + Nakit Bakiyesini Transfer Et - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Benchmark + Kıyaslama - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 284 + + + Version + Versiyon - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + Settings + Ayarlar - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + From + Başlangıç - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + Bitiş - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 28 + + + Transfer + Transfer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 64 + + + Membership + Üyelik - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 40 + + + Access + Erişim - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 46 + + + Find holding... + Sahip olunan varlıkları bul... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.component.ts + 138 + + + No entries... + Girdi yok... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/assistant/assistant.html + 84 + + + Asset Profile + Varlık Profili - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + Do you really want to delete this asset profile? + Bu varlık profilini silmeyi gerçekten istiyor musunuz? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/admin-market-data.service.ts + 13 + + + Search + Arama - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + Add Manually + Elle Giriş - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio, hisse senetleri, ETF’ler veya kriptopara birimleri gibi varlıklarınızı birden fazla platformda takip etmenizi sağlayan bir kişisel finans kontrol panelidir. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + Last All Time High + Son, ATH - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 65 + + + User + Kullanıcı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Ghostfolio vs comparison table + Ghostfolio ve karşılatırma tablosu - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 49 + + + Open Source Wealth Management Software + Açık Kaynak Varlık Yönetim Yazılımı - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + app, varlık, kriptopara, kontrol paneli, etf, finans, yönetim, performans, portföy, yazılım, hisse, alım satım, varlık, web3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/i18n/i18n-page.html + 9 + + + Oops, cash balance transfer has failed. + Hay Allah, Nakit bakiyesi tranferi başarısız oldu. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 304 + + + Extreme Fear + Aşırı Korku - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 69 + + + Extreme Greed + Aşırı Açgözlülük - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 70 + + + Neutral + Nötr - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/i18n.ts + 73 + + + Oops! Could not parse historical data. + Hay Allah! Geçmiş veriler ayrıştırılamadı. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 232 + + + Do you really want to delete this system message? + Bu sistem mesajını silmeyi gerçekten istiyor musunuz? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 166 + + + 50-Day Trend + 50 Günlük Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 15 + + + 200-Day Trend + 200 Günlük Trend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + libs/ui/src/lib/benchmark/benchmark.component.html + 40 + + + Cash Balances + Nakit Bakiyeleri - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 115 + + + Starting from + Başlangıç - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 195 + + + year + Yıl - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 191 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 197 @@ -15698,7 +6166,7 @@ Permission apps/client/src/app/components/access-table/access-table.component.html - 17 + 18 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15710,7 +6178,7 @@ Restricted view apps/client/src/app/components/access-table/access-table.component.html - 25 + 26 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15858,7 +6326,7 @@ View apps/client/src/app/components/access-table/access-table.component.html - 22 + 23 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15986,7 +6454,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 - 107 + 96 @@ -16050,7 +6518,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 70 + 61 @@ -16133,36 +6601,20 @@ 278 - - Australia - Australia - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 403 - - - - Bulgaria - Bulgaria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 558 - - By ETF Holding By ETF Holding apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 342 + 333 - - Approximation based on the Top 15 holdings per ETF - Approximation based on the Top 15 holdings per ETF + + Approximation based on the top holdings of each ETF + Approximation based on the top holdings of each ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 350 + 340 diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index deaf94503..c001e4a3c 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -78,14330 +78,4814 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 18 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 23 + + + faq - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + apps/client/src/app/app.component.ts + 66 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 3 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + features - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + apps/client/src/app/app.component.ts + 67 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 83 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 4 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 26 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 24 + + + license - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 5 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 55 + + + markets - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + apps/client/src/app/app.component.ts + 68 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 84 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 6 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 26 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 14 + + + pricing - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + apps/client/src/app/app.component.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 85 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + apps/client/src/app/core/http-response.interceptor.ts + 72 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 7 - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 26 + libs/ui/src/lib/membership-card/membership-card.component.ts + 25 + + + privacy-policy - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 26 + apps/client/src/app/app.component.ts + 64 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 8 - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 63 + + + register - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + apps/client/src/app/app.component.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 86 - - - faq - apps/client/src/app/app.component.ts - 66 + apps/client/src/app/core/auth.guard.ts + 55 apps/client/src/app/core/paths.ts - 3 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 + 9 - apps/client/src/app/pages/faq/faq-page.component.ts - 37 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 16 - apps/client/src/app/pages/faq/faq-page.component.ts - 42 + apps/client/src/app/pages/features/features-page.component.ts + 31 - apps/client/src/app/pages/faq/faq-page.component.ts - 48 + apps/client/src/app/pages/landing/landing-page.component.ts + 27 - apps/client/src/app/pages/resources/resources-page.component.ts - 17 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 36 - - features + + resources apps/client/src/app/app.component.ts - 67 + 71 apps/client/src/app/components/header/header.component.ts - 78 + 81 apps/client/src/app/components/header/header.component.ts - 83 + 87 apps/client/src/app/core/paths.ts - 4 + 10 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts 13 apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 + 14 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 + apps/client/src/app/pages/features/features-page.component.ts + 32 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 26 - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 14 - - - apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts - 14 + apps/client/src/app/pages/resources/resources-page.component.ts + 19 + + + You are using the Live Demo. - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 + apps/client/src/app/app.component.html + 17 + + + Create Account - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 27 + apps/client/src/app/app.component.html + 18 - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 27 + apps/client/src/app/pages/register/register-page.html + 26 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 27 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 2 + + + Personal Finance - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 27 + apps/client/src/app/app.component.html + 55 + + + Markets - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 27 + apps/client/src/app/app.component.html + 58 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 386 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 27 + apps/client/src/app/components/home-market/home-market.html + 2 - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 27 + apps/client/src/app/pages/resources/resources-page.html + 56 + + + Resources - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 27 + apps/client/src/app/app.component.html + 60 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 289 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 27 + apps/client/src/app/pages/resources/resources-page.html + 4 + + + About - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 27 + apps/client/src/app/app.component.html + 66 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 357 + + + Blog - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 27 + apps/client/src/app/app.component.html + 68 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 27 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html + 204 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 27 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/07/ghostfolio-meets-internet-identity/ghostfolio-meets-internet-identity-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html + 209 - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html + 195 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/10/hacktoberfest-2022/hacktoberfest-2022-page.html + 181 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/12/the-importance-of-tracking-your-personal-finances/the-importance-of-tracking-your-personal-finances-page.html + 168 - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/01/ghostfolio-auf-sackgeld-vorgestellt/ghostfolio-auf-sackgeld-vorgestellt-page.html + 178 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/02/ghostfolio-meets-umbrel/ghostfolio-meets-umbrel-page.html + 202 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html + 252 - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html + 233 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.html + 243 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.html + 154 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.html + 273 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html + 181 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.html + 148 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.html + 270 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 27 + apps/client/src/app/pages/blog/blog-page.html + 5 + + + Changelog - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 27 + apps/client/src/app/app.component.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 27 + apps/client/src/app/pages/about/changelog/changelog-page.html + 4 + + + Features - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 27 + apps/client/src/app/app.component.html + 73 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 344 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 27 + apps/client/src/app/pages/features/features-page.html + 5 + + + Frequently Asked Questions (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 27 + apps/client/src/app/app.component.html + 76 - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 27 + apps/client/src/app/pages/about/overview/about-overview-page.html + 146 + + + License - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 27 + apps/client/src/app/app.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 27 + apps/client/src/app/pages/about/license/license-page.html + 4 + + + Pricing - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 27 + apps/client/src/app/app.component.html + 86 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 98 - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 301 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 370 - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 188 + + + Privacy Policy - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 27 + apps/client/src/app/app.component.html + 90 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 27 + apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html + 4 + + + Community - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 27 + apps/client/src/app/app.component.html + 105 - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 81 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 86 - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 90 - - - license - apps/client/src/app/app.component.ts - 61 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 94 - apps/client/src/app/core/paths.ts - 5 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 98 - apps/client/src/app/pages/about/about-page.component.ts - 55 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 103 - - - markets - apps/client/src/app/app.component.ts - 68 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 108 - apps/client/src/app/components/header/header.component.ts - 79 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 112 - apps/client/src/app/components/header/header.component.ts - 84 + apps/client/src/app/pages/features/features-page.html + 256 + + + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. - apps/client/src/app/core/paths.ts - 6 + apps/client/src/app/app.component.html + 182 - - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 + + + Alias + + apps/client/src/app/components/access-table/access-table.component.html + 4 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 11 + + + Grantee - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 14 + apps/client/src/app/components/access-table/access-table.component.html + 11 - - pricing + + Type - apps/client/src/app/app.component.ts - 69 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 28 - apps/client/src/app/components/header/header.component.ts - 80 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 22 - apps/client/src/app/components/header/header.component.ts - 85 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 12 - apps/client/src/app/components/home-summary/home-summary.component.ts - 125 + libs/ui/src/lib/activities-table/activities-table.component.html + 160 + + + Details - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 + apps/client/src/app/components/access-table/access-table.component.html + 33 + + + Revoke - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 38 + apps/client/src/app/components/access-table/access-table.component.html + 63 + + + Do you really want to revoke this granted access? - apps/client/src/app/core/http-response.interceptor.ts - 83 + apps/client/src/app/components/access-table/access-table.component.ts + 50 + + + Cash Balance - apps/client/src/app/core/paths.ts - 7 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 45 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 130 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 34 + + + Equity - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 56 + + + Activities - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 61 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 16 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 90 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 113 - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 16 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 150 - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 15 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 44 - libs/ui/src/lib/membership-card/membership-card.component.ts - 25 + apps/client/src/app/components/admin-users/admin-users.html + 134 - - - privacy-policy - apps/client/src/app/app.component.ts - 64 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 221 - apps/client/src/app/core/paths.ts - 8 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 331 - apps/client/src/app/pages/about/about-page.component.ts - 63 + apps/client/src/app/pages/portfolio/activities/activities-page.html + 4 - - register + + Platform - apps/client/src/app/app.component.ts - 70 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 65 - apps/client/src/app/components/header/header.component.ts - 86 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 81 - apps/client/src/app/core/auth.guard.ts - 55 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 48 + + + Cash Balances - apps/client/src/app/core/paths.ts - 9 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 115 + + + Transfer Cash Balance - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 16 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/features/features-page.component.ts - 31 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 + + + Name - apps/client/src/app/pages/landing/landing-page.component.ts - 27 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 39 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 36 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 - - - resources - apps/client/src/app/app.component.ts - 71 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 226 - apps/client/src/app/components/header/header.component.ts - 81 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 30 - apps/client/src/app/components/header/header.component.ts - 87 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 12 - apps/client/src/app/core/paths.ts - 10 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 30 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 12 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 15 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts - 13 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 134 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 + libs/ui/src/lib/activities-table/activities-table.component.html + 137 - apps/client/src/app/pages/features/features-page.component.ts - 32 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 28 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 12 + + + Total - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 50 + + + Currency - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 60 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 233 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 29 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 140 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 275 + + + Value - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 165 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 200 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 29 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 194 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 195 - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 197 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 257 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 258 - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 259 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 260 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 29 + libs/ui/src/lib/account-balances/account-balances.component.html + 34 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 256 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 292 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 29 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 74 - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 29 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 26 + + + Edit - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 271 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 175 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 29 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 91 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 29 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 429 + + + Delete - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 281 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 194 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 62 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 90 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 199 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 29 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 101 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 29 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 81 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 29 + libs/ui/src/lib/account-balances/account-balances.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 455 + + + Do you really want to delete this account? - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.ts + 101 + + + Asset Profile - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + Historical Market Data - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 37 + + + Symbol - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 24 - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 115 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 34 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 29 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 301 + + + Data Source - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 54 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 51 - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 125 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 150 + + + Attempts - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 82 + + + Created - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 91 + + + Finished - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 100 + + + Status - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 109 + + + Delete Jobs - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 158 + + + View Data - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 173 + + + View Stacktrace - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 180 + + + Delete Job - apps/client/src/app/pages/resources/resources-page.component.ts - 19 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 186 - - You are using the Live Demo. + + Details for - apps/client/src/app/app.component.html - 17 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 2 - - Create Account + + Date - apps/client/src/app/app.component.html - 18 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 6 - apps/client/src/app/pages/register/register-page.html - 26 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 156 - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 2 + libs/ui/src/lib/account-balances/account-balances.component.html + 12 - - - Personal Finance - apps/client/src/app/app.component.html - 55 + libs/ui/src/lib/activities-table/activities-table.component.html + 169 - - Markets + + Market Price - apps/client/src/app/app.component.html - 58 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 26 - apps/client/src/app/components/header/header.component.html - 386 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 112 + + + Cancel - apps/client/src/app/components/home-market/home-market.html - 2 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 46 - apps/client/src/app/pages/resources/resources-page.html - 56 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 376 - - - Resources - apps/client/src/app/app.component.html - 60 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 40 - apps/client/src/app/components/header/header.component.html - 80 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 39 - apps/client/src/app/components/header/header.component.html - 289 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 22 - apps/client/src/app/pages/resources/resources-page.html - 4 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 58 - - - About - apps/client/src/app/app.component.html - 66 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 103 - apps/client/src/app/components/header/header.component.html - 111 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 57 - apps/client/src/app/components/header/header.component.html - 357 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 399 + + + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 38 - - Blog + + Save - apps/client/src/app/app.component.html - 68 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 48 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 204 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 383 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html - 183 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 47 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.html - 183 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 46 - apps/client/src/app/pages/blog/2022/07/ghostfolio-meets-internet-identity/ghostfolio-meets-internet-identity-page.html - 183 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 29 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html - 209 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 65 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html - 195 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 110 - apps/client/src/app/pages/blog/2022/10/hacktoberfest-2022/hacktoberfest-2022-page.html - 181 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 406 + + + Currencies - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html - 141 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 73 + + + ETFs without Countries - apps/client/src/app/pages/blog/2022/12/the-importance-of-tracking-your-personal-finances/the-importance-of-tracking-your-personal-finances-page.html - 168 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 78 + + + ETFs without Sectors - apps/client/src/app/pages/blog/2023/01/ghostfolio-auf-sackgeld-vorgestellt/ghostfolio-auf-sackgeld-vorgestellt-page.html - 178 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 83 + + + Do you really want to delete this asset profile? - apps/client/src/app/pages/blog/2023/02/ghostfolio-meets-umbrel/ghostfolio-meets-umbrel-page.html - 202 + apps/client/src/app/components/admin-market-data/admin-market-data.service.ts + 13 + + + Filter by... - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html - 252 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 282 + + + Asset Class - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html - 233 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 60 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.html - 243 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 159 - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.html - 154 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 243 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.html - 273 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 228 - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html - 181 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 326 + + + Asset Sub Class - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.html - 148 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 69 - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.html - 270 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 168 - apps/client/src/app/pages/blog/blog-page.html - 5 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 256 - - - Changelog - apps/client/src/app/app.component.html - 71 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 237 - apps/client/src/app/pages/about/changelog/changelog-page.html - 4 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 342 - - Features + + First Activity - apps/client/src/app/app.component.html - 73 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 78 - apps/client/src/app/components/header/header.component.html - 344 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 141 - apps/client/src/app/pages/features/features-page.html - 5 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 209 - - - Frequently Asked Questions (FAQ) - apps/client/src/app/app.component.html - 76 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 50 + + + Activities Count - apps/client/src/app/pages/about/overview/about-overview-page.html - 146 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 87 - - License + + Historical Data - apps/client/src/app/app.component.html - 80 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 96 - apps/client/src/app/pages/about/license/license-page.html - 4 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 82 - - Pricing + + Sectors Count - apps/client/src/app/app.component.html - 86 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 105 + + + Countries Count - apps/client/src/app/components/header/header.component.html - 98 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 114 + + + Gather Recent Data - apps/client/src/app/components/header/header.component.html - 301 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 144 + + + Gather All Data - apps/client/src/app/components/header/header.component.html - 370 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 147 + + + Gather Profile Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 150 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 45 + + + Oops! Could not parse historical data. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 232 + + + Refresh - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 22 + + + Gather Historical Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 32 + + + Import - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 108 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 190 + + + Sector - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 185 - 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 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 254 + + + Country - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 196 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-users/admin-users.html + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 264 + + + Sectors - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 202 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 327 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/public/public-page.html + 45 + + + Countries - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 212 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 338 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 282 + + + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 284 + + + Symbol Mapping - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 290 + + + Scraper Configuration - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 302 + + + Note - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 363 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 311 + + + Add Asset Profile - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 7 + + + Search - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + Add Manually - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + Name, symbol or ISIN - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 25 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 120 + + + Please add a currency: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 122 + + + is an invalid currency! - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 129 + + + Do you really want to delete this coupon? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 140 + + + Do you really want to delete this currency? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 153 + + + Do you really want to delete this system message? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 166 + + + Do you really want to flush the cache? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 183 + + + Please set your system message: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 214 + + + Version - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + User Count - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 13 + + + Activity Count - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 23 + + + per User - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 32 + + + Exchange Rates - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 37 + + + Add Currency - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 104 + + + User Signup - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 110 + + + Read-only Mode - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 123 + + + System Message - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 145 + + + Set Message - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 165 + + + Coupons - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 173 + + + Add - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 231 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + libs/ui/src/lib/account-balances/account-balances.component.html + 93 + + + Housekeeping - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 238 + + + Flush Cache - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 242 + + + Add Platform - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 11 + + + Url - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 350 - - - Privacy Policy - apps/client/src/app/app.component.html - 90 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 50 - apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html - 4 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 22 - - Community + + Accounts - apps/client/src/app/app.component.html - 105 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 86 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 90 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 94 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 108 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 - - - apps/client/src/app/pages/features/features-page.html - 256 - - - - The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. - - apps/client/src/app/app.component.html - 182 - - - - Alias - - apps/client/src/app/components/access-table/access-table.component.html - 3 - - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 11 - - - - Grantee - - apps/client/src/app/components/access-table/access-table.component.html - 10 - - - - Type - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 - - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 22 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 160 - - - - Details - - apps/client/src/app/components/access-table/access-table.component.html - 32 - - - - Revoke - - apps/client/src/app/components/access-table/access-table.component.html - 59 - - - - Do you really want to revoke this granted access? - - apps/client/src/app/components/access-table/access-table.component.ts - 50 - - - - Cash Balance - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 45 - - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 117 - - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 34 - - - - Equity - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 56 - - - - Activities - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 61 - - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 90 - - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 100 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 150 - - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 44 - - - apps/client/src/app/components/admin-users/admin-users.html - 134 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 221 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 331 - - - apps/client/src/app/pages/portfolio/activities/activities-page.html - 4 - - - - Platform - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 65 - - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 72 - - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 48 - - - - Cash Balances - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 115 - - - - Transfer Cash Balance - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 - - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 - - - - Name - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 34 - - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 38 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 - - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 30 - - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 - - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 30 - - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 - - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 15 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 137 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 28 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 11 - - - - Total - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 45 - - - - Currency - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 55 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 130 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 233 - - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 25 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 275 - - - - Value - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 152 - - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 187 - - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 - - - libs/ui/src/lib/account-balances/account-balances.component.html - 34 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 256 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 292 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 74 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 25 - - - - Edit - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 254 - - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 - - - apps/client/src/app/components/admin-overview/admin-overview.html - 80 - - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 - - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 71 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 429 - - - - Delete - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 264 - - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 62 - - - apps/client/src/app/components/admin-overview/admin-overview.html - 90 - - - apps/client/src/app/components/admin-overview/admin-overview.html - 199 - - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 - - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 81 - - - libs/ui/src/lib/account-balances/account-balances.component.html - 80 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 455 - - - - Do you really want to delete this account? - - apps/client/src/app/components/accounts-table/accounts-table.component.ts - 101 - - - - Asset Profile - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 - - - - Historical Market Data - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 37 - - - - Symbol - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 - - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 24 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 115 - - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 301 - - - - Data Source - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 - - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 125 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 - - - - Attempts - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 - - - - Created - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 - - - - Finished - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 - - - - Status - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 - - - - Delete Jobs - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 - - - - View Data - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 - - - - View Stacktrace - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 - - - - Delete Job - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 - - - - Details for - - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 2 - - - - Date - - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 6 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 - - - libs/ui/src/lib/account-balances/account-balances.component.html - 12 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 169 - - - - Market Price - - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 26 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 112 - - - - Cancel - - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 46 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 376 - - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 - - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 - - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 - - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 58 - - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 103 - - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 - - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 38 - - - - Save - - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 48 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 383 - - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 - - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 - - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 - - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 65 - - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 110 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 - - - - Currencies - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 73 - - - - ETFs without Countries - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 78 - - - - ETFs without Sectors - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 83 - - - - Do you really want to delete this asset profile? - - apps/client/src/app/components/admin-market-data/admin-market-data.service.ts - 13 - - - - Filter by... - - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 282 - - - - Asset Class - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 243 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 228 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 - - - - Asset Sub Class - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 168 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 256 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 237 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 - - - - First Activity - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 141 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 209 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 50 - - - - Activities Count - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 - - - - Historical Data - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 82 - - - - Sectors Count - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 - - - - Countries Count - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 - - - - Gather Recent Data - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 - - - - Gather All Data - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 - - - - Gather Profile Data - - apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 45 - - - - Oops! Could not parse historical data. - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 232 - - - - Refresh - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 22 - - - - Gather Historical Data - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 32 - - - - Import - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 108 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 - - - - Sector - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 185 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 254 - - - - Country - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 196 - - - apps/client/src/app/components/admin-users/admin-users.html - 77 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 264 - - - - Sectors - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 327 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 270 - - - apps/client/src/app/pages/public/public-page.html - 45 - - - - Countries - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 212 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 338 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 282 - - - - Benchmark - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 284 - - - - Symbol Mapping - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 290 - - - - Scraper Configuration - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 302 - - - - Note - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 363 - - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 78 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 - - - - Add Asset Profile - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 7 - - - - Search - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 - - - - Add Manually - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 - - - - Name, symbol or ISIN - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 - - - - Please add a currency: - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 122 - - - - is an invalid currency! - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 129 - - - - Do you really want to delete this coupon? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 - - - - Do you really want to delete this currency? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 153 - - - - Do you really want to delete this system message? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 166 - - - - Do you really want to flush the cache? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 183 - - - - Please set your system message: - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 214 - - - - Version - - apps/client/src/app/components/admin-overview/admin-overview.html - 7 - - - - User Count - - apps/client/src/app/components/admin-overview/admin-overview.html - 13 - - - - Activity Count - - apps/client/src/app/components/admin-overview/admin-overview.html - 23 - - - - per User - - apps/client/src/app/components/admin-overview/admin-overview.html - 32 - - - - Exchange Rates - - apps/client/src/app/components/admin-overview/admin-overview.html - 37 - - - - Add Currency - - apps/client/src/app/components/admin-overview/admin-overview.html - 104 - - - - User Signup - - apps/client/src/app/components/admin-overview/admin-overview.html - 110 - - - - Read-only Mode - - apps/client/src/app/components/admin-overview/admin-overview.html - 123 - - - - System Message - - apps/client/src/app/components/admin-overview/admin-overview.html - 145 - - - - Set Message - - apps/client/src/app/components/admin-overview/admin-overview.html - 165 - - - - Coupons - - apps/client/src/app/components/admin-overview/admin-overview.html - 173 - - - - Add - - apps/client/src/app/components/admin-overview/admin-overview.html - 231 - - - libs/ui/src/lib/account-balances/account-balances.component.html - 93 - - - - Housekeeping - - apps/client/src/app/components/admin-overview/admin-overview.html - 238 - - - - Flush Cache - - apps/client/src/app/components/admin-overview/admin-overview.html - 242 - - - - Add Platform - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 11 - - - - Url - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 350 - - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 - - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 - - - - Accounts - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 - - - apps/client/src/app/components/admin-users/admin-users.html - 113 - - - apps/client/src/app/components/header/header.component.html - 54 - - - apps/client/src/app/components/header/header.component.html - 262 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 357 - - - apps/client/src/app/pages/accounts/accounts-page.html - 4 - - - libs/ui/src/lib/assistant/assistant.html - 107 - - - - Do you really want to delete this platform? - - apps/client/src/app/components/admin-platform/admin-platform.component.ts - 79 - - - - Update platform - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 - - - - Add platform - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 - - - - Platforms - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 4 - - - - Tags - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 10 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 377 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 - - - libs/ui/src/lib/assistant/assistant.html - 127 - - - - Add Tag - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 - - - - Do you really want to delete this tag? - - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 79 - - - - Update tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 - - - - Add tag - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 - - - - Do you really want to delete this user? - - apps/client/src/app/components/admin-users/admin-users.component.ts - 113 - - - - User - - apps/client/src/app/components/admin-users/admin-users.html - 29 - - - - Registration - - apps/client/src/app/components/admin-users/admin-users.html - 96 - - - - Engagement per Day - - apps/client/src/app/components/admin-users/admin-users.html - 158 - - - - Last Request - - apps/client/src/app/components/admin-users/admin-users.html - 183 - - - - Impersonate User - - apps/client/src/app/components/admin-users/admin-users.html - 222 - - - - Delete User - - apps/client/src/app/components/admin-users/admin-users.html - 232 - - - - Performance - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 6 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 89 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 142 - - - - Compare with... - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 - - - - Manage Benchmarks - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 - - - - Portfolio - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 116 - - - apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 41 - - - - Benchmark - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 128 - - - - Current Market Mood - - apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html - 12 - - - - Overview - - apps/client/src/app/components/header/header.component.html - 28 - - - apps/client/src/app/components/header/header.component.html - 244 - - - - Portfolio - - apps/client/src/app/components/header/header.component.html - 41 - - - apps/client/src/app/components/header/header.component.html - 254 - - - - Admin Control - - apps/client/src/app/components/header/header.component.html - 67 - - - apps/client/src/app/components/header/header.component.html - 278 - - - - Me - - apps/client/src/app/components/header/header.component.html - 211 - - - - User - - apps/client/src/app/components/header/header.component.html - 230 - - - - My Ghostfolio - - apps/client/src/app/components/header/header.component.html - 269 - - - - About Ghostfolio - - apps/client/src/app/components/header/header.component.html - 309 - - - apps/client/src/app/pages/about/overview/about-overview-page.html - 5 - - - - Sign in - - apps/client/src/app/components/header/header.component.html - 399 - - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 71 - - - - Get started - - apps/client/src/app/components/header/header.component.html - 411 - - - - Sign in - - apps/client/src/app/app-routing.module.ts - 141 - - - apps/client/src/app/components/header/header.component.ts - 229 - - - - Oops! Incorrect Security Token. - - apps/client/src/app/components/header/header.component.ts - 243 - - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 154 - - - - Manage Activities - - apps/client/src/app/components/home-holdings/home-holdings.html - 32 - - - - Fear - - apps/client/src/app/components/home-market/home-market.component.ts - 25 - - - libs/ui/src/lib/i18n.ts - 71 - - - - Greed - - apps/client/src/app/components/home-market/home-market.component.ts - 26 - - - libs/ui/src/lib/i18n.ts - 72 - - - - Last Days - - apps/client/src/app/components/home-market/home-market.html - 6 - - - - Welcome to Ghostfolio - - apps/client/src/app/components/home-overview/home-overview.html - 7 - - - - Ready to take control of your personal finances? - - apps/client/src/app/components/home-overview/home-overview.html - 8 - - - - Setup your accounts - - apps/client/src/app/components/home-overview/home-overview.html - 15 - - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - - apps/client/src/app/components/home-overview/home-overview.html - 17 - - - - Capture your activities - - apps/client/src/app/components/home-overview/home-overview.html - 24 - - - - Record your investment activities to keep your portfolio up to date. - - apps/client/src/app/components/home-overview/home-overview.html - 26 - - - - Monitor and analyze your portfolio - - apps/client/src/app/components/home-overview/home-overview.html - 33 - - - - Track your progress in real-time with comprehensive analysis and insights. - - apps/client/src/app/components/home-overview/home-overview.html - 35 - - - - Setup accounts - - apps/client/src/app/components/home-overview/home-overview.html - 48 - - - - Add activity - - apps/client/src/app/components/home-overview/home-overview.html - 56 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 - - - - This feature requires a subscription. - - apps/client/src/app/components/home-summary/home-summary.component.ts - 113 - - - apps/client/src/app/core/http-response.interceptor.ts - 69 - - - - Upgrade Plan - - apps/client/src/app/components/home-summary/home-summary.component.ts - 115 - - - apps/client/src/app/core/http-response.interceptor.ts - 72 - - - - Summary - - apps/client/src/app/components/home-summary/home-summary.html - 2 - - - - Total Amount - - apps/client/src/app/components/investment-chart/investment-chart.component.ts - 142 - - - - Savings Rate - - apps/client/src/app/components/investment-chart/investment-chart.component.ts - 214 - - - - Security Token - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 11 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 - - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 10 - - - - or - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 31 - - - apps/client/src/app/pages/landing/landing-page.html - 423 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 - - - apps/client/src/app/pages/register/register-page.html - 29 - - - apps/client/src/app/pages/webauthn/webauthn-page.html - 29 - - - - Sign in with Internet Identity - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 42 - - - - Sign in with Google - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 52 - - - - Stay signed in - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 61 - - - - Time in Market - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 3 - - - - Buy - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 31 - - - - Sell - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 43 - - - - Investment - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 165 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 58 - - - - Absolute Gross Performance - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 70 - - - - Gross Performance - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 85 - - - - Fees - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 199 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 108 - - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 - - - - Absolute Net Performance - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 124 - - - - Net Performance - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 139 - - - - Total Assets - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 165 - - - - Valuables - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 178 - - - - Emergency Fund - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 - - - apps/client/src/app/pages/features/features-page.html - 89 - - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 122 - - - - Cash - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 211 - - - - Assets - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 224 - - - - Buying Power - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 237 - - - - Excluded from Analysis - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 249 - - - - Liabilities - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 264 - - - apps/client/src/app/pages/features/features-page.html - 102 - - - - Net Worth - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 284 - - - - Annualized Performance - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 296 - - - - Interest - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 318 - - - - Dividend - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 177 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 330 - - - apps/client/src/app/pages/features/features-page.html - 63 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 - - - - Please enter the amount of your emergency fund: - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 57 - - - - Change - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 63 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 - - - - Average Unit Price - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 101 - - - - Minimum Price - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 128 - - - - Maximum Price - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 144 - - - - Quantity - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 154 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 185 - - - - Report Data Glitch - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 395 - - - - Are you an ambitious investor who needs the full picture? - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 12 - - - - Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15 - - - - Portfolio Summary - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 22 - - - apps/client/src/app/pages/pricing/pricing-page.html - 55 - - - apps/client/src/app/pages/pricing/pricing-page.html - 199 - - - - Portfolio Allocations - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 26 - - - apps/client/src/app/pages/features/features-page.html - 160 - - - apps/client/src/app/pages/pricing/pricing-page.html - 59 - - - apps/client/src/app/pages/pricing/pricing-page.html - 203 - - - - Performance Benchmarks - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 30 - - - apps/client/src/app/pages/pricing/pricing-page.html - 63 - - - apps/client/src/app/pages/pricing/pricing-page.html - 207 - - - - FIRE Calculator - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 34 - - - apps/client/src/app/pages/pricing/pricing-page.html - 67 - - - apps/client/src/app/pages/pricing/pricing-page.html - 211 - - - - Professional Data Provider - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 38 - - - apps/client/src/app/pages/pricing/pricing-page.html - 226 - - - - and more Features... - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 42 - - - apps/client/src/app/pages/pricing/pricing-page.html - 83 - - - apps/client/src/app/pages/pricing/pricing-page.html - 231 - - - - Get the tools to effectively manage your finances and refine your personal investment strategy. - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 45 - - - - Skip - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 52 - - - - Upgrade Plan - - apps/client/src/app/components/header/header.component.html - 182 - - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 59 - - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 - - - apps/client/src/app/pages/pricing/pricing-page.html - 268 - - - - Today - - apps/client/src/app/components/toggle/toggle.component.ts - 22 - - - libs/ui/src/lib/assistant/assistant.component.ts - 215 - - - - YTD - - apps/client/src/app/components/toggle/toggle.component.ts - 23 - - - libs/ui/src/lib/assistant/assistant.component.ts - 225 - - - - 1Y - - apps/client/src/app/components/toggle/toggle.component.ts - 24 - - - libs/ui/src/lib/assistant/assistant.component.ts - 229 - - - - 5Y - - apps/client/src/app/components/toggle/toggle.component.ts - 25 - - - libs/ui/src/lib/assistant/assistant.component.ts - 250 - - - - Max - - apps/client/src/app/components/toggle/toggle.component.ts - 26 - - - libs/ui/src/lib/assistant/assistant.component.ts - 253 - - - - Grant access - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 7 - - - - Public - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 25 - - - - Granted Access - - apps/client/src/app/components/user-account-access/user-account-access.html - 5 - - - - Please enter your coupon code: - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 111 - - - - Could not redeem coupon code - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 121 - - - - Coupon code has been redeemed - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 133 - - - - Reload - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 134 - - - - per year - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 - - - apps/client/src/app/pages/pricing/pricing-page.html - 254 - - - - Try Premium - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 - - - - Redeem Coupon - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 - - - - Auto - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 35 - - - - Do you really want to remove this sign in method? - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 230 - - - - Settings - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 - - - - Presenter View - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 7 - - - - Protection for sensitive information like absolute performances and quantity values - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 8 - - - - Base Currency - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 27 - - - - Language - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 - - - - Locale - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 - - - - Date and number format - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 - - - - Appearance - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 - - - - Auto - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 - - - - Light - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 - - - - Dark - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 - - - - Zen Mode - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 - - - apps/client/src/app/pages/features/features-page.html - 190 - - - - Distraction-free experience for turbulent times - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 - - - - Biometric Authentication - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 - - - - Sign in with fingerprint - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 - - - - Experimental Features - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 - - - - Sneak peek at upcoming functionality - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 - - - - User ID - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 45 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 - - - - Export Data - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 - - - - This feature is currently unavailable. - - apps/client/src/app/core/http-response.interceptor.ts - 60 - - - - Please try again later. - - apps/client/src/app/core/http-response.interceptor.ts - 62 - - - apps/client/src/app/core/http-response.interceptor.ts - 91 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 138 - - - - Oops! Something went wrong. - - apps/client/src/app/core/http-response.interceptor.ts - 89 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 136 - - - - Okay - - apps/client/src/app/core/http-response.interceptor.ts - 92 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 139 - - - - About - - apps/client/src/app/pages/about/about-page-routing.module.ts - 51 - - - apps/client/src/app/pages/about/about-page.component.ts - 44 - - - apps/client/src/app/pages/about/overview/about-overview-page-routing.module.ts - 13 - - - - Changelog - - apps/client/src/app/pages/about/about-page.component.ts - 49 - - - apps/client/src/app/pages/about/changelog/changelog-page-routing.module.ts - 13 - - - - License - - apps/client/src/app/pages/about/about-page.component.ts - 54 - - - apps/client/src/app/pages/about/license/license-page-routing.module.ts - 13 - - - - Privacy Policy - - apps/client/src/app/pages/about/about-page.component.ts - 62 - - - apps/client/src/app/pages/about/privacy-policy/privacy-policy-page-routing.module.ts - 13 - - - - Our - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 - - - - Discover other exciting Open Source Software projects - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 - - - - Visit - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 - - - - Accounts - - apps/client/src/app/pages/accounts/accounts-page-routing.module.ts - 13 - - - - Oops, cash balance transfer has failed. - - apps/client/src/app/pages/accounts/accounts-page.component.ts - 304 - - - - Update account - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 8 - - - - Add account - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 10 - - - - Account ID - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 96 - - - - From - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 - - - - To - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 - - - - Transfer - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 - - - - Admin Control - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 20 - - - - Market Data - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 30 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 37 - - - - Settings - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 35 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 32 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 18 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 35 - - - - Users - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 40 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 47 - - - - Overview - - apps/client/src/app/pages/admin/admin-page.component.ts - 27 - - - apps/client/src/app/pages/home/home-page.component.ts - 37 - - - apps/client/src/app/pages/zen/zen-page-routing.module.ts - 19 - - - apps/client/src/app/pages/zen/zen-page.component.ts - 34 - - - - Blog - - apps/client/src/app/pages/blog/blog-page-routing.module.ts - 13 - - - - Discover the latest Ghostfolio updates and insights on personal finance - - apps/client/src/app/pages/blog/blog-page.html - 7 - - - - As you are already logged in, you cannot access the demo account. - - apps/client/src/app/pages/demo/demo-page.component.ts - 35 - - - - Frequently Asked Questions (FAQ) - - apps/client/src/app/pages/faq/faq-page-routing.module.ts - 34 - - - apps/client/src/app/pages/faq/overview/faq-overview-page-routing.module.ts - 13 - - - - Frequently Asked Questions (FAQ) - - apps/client/src/app/pages/faq/overview/faq-overview-page.html - 4 - - - apps/client/src/app/pages/faq/saas/saas-page.html - 4 - - - apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html - 4 - - - - Features - - apps/client/src/app/app-routing.module.ts - 65 - - - - Check out the numerous features of Ghostfolio to manage your wealth - - apps/client/src/app/pages/features/features-page.html - 6 - - - - Stocks - - apps/client/src/app/pages/features/features-page.html - 15 - - - - ETFs - - apps/client/src/app/pages/features/features-page.html - 25 - - - - Bonds - - apps/client/src/app/pages/features/features-page.html - 38 - - - - Cryptocurrencies - - apps/client/src/app/pages/features/features-page.html - 51 - - - - Wealth Items - - apps/client/src/app/pages/features/features-page.html - 76 - - - - Import and Export - - apps/client/src/app/pages/features/features-page.html - 115 - - - - Multi-Accounts - - apps/client/src/app/pages/features/features-page.html - 127 - - - - Portfolio Calculations - - apps/client/src/app/pages/features/features-page.html - 141 - - - - Dark Mode - - apps/client/src/app/pages/features/features-page.html - 177 - - - - Market Mood - - apps/client/src/app/pages/features/features-page.html - 205 - - - - Static Analysis - - apps/client/src/app/pages/features/features-page.html - 224 - - - - Multi-Language - - apps/client/src/app/pages/features/features-page.html - 241 - - - - Open Source Software - - apps/client/src/app/pages/features/features-page.html - 275 - - - - Get Started - - apps/client/src/app/pages/features/features-page.html - 300 - - - apps/client/src/app/pages/public/public-page.html - 153 - - - - Holdings - - apps/client/src/app/pages/home/home-page-routing.module.ts - 23 - - - apps/client/src/app/pages/home/home-page-routing.module.ts - 28 - - - apps/client/src/app/pages/home/home-page.component.ts - 42 - - - apps/client/src/app/pages/zen/zen-page.component.ts - 39 - - - - Summary - - apps/client/src/app/pages/home/home-page-routing.module.ts - 33 - - - apps/client/src/app/pages/home/home-page.component.ts - 47 - - - - Markets - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 52 - - - apps/client/src/app/pages/markets/markets-page-routing.module.ts - 13 - - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - - apps/client/src/app/pages/i18n/i18n-page.html - 4 - - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - - apps/client/src/app/pages/i18n/i18n-page.html - 9 - - - - Open Source Wealth Management Software - - apps/client/src/app/pages/i18n/i18n-page.html - 14 - - - - Manage your wealth like a boss - - apps/client/src/app/pages/landing/landing-page.html - 5 - - - - 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. - - apps/client/src/app/pages/landing/landing-page.html - 9 - - - - Get Started - - apps/client/src/app/pages/landing/landing-page.html - 41 - - - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - - apps/client/src/app/pages/landing/landing-page.html - 46 - - - - Live Demo - - apps/client/src/app/pages/landing/landing-page.html - 49 - - - apps/client/src/app/pages/landing/landing-page.html - 424 - - - - Monthly Active Users - - apps/client/src/app/pages/landing/landing-page.html - 69 - - - - Stars on GitHub - - apps/client/src/app/pages/landing/landing-page.html - 87 - - - apps/client/src/app/pages/open/open-page.html - 103 - - - - Pulls on Docker Hub - - apps/client/src/app/pages/landing/landing-page.html - 105 - - - apps/client/src/app/pages/open/open-page.html - 117 - - - - As seen in - - apps/client/src/app/pages/landing/landing-page.html - 113 - - - - Protect your assets. Refine your personal investment strategy. - - apps/client/src/app/pages/landing/landing-page.html - 215 - - - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - - apps/client/src/app/pages/landing/landing-page.html - 219 - - - - 360° View - - apps/client/src/app/pages/landing/landing-page.html - 230 - - - - Get the full picture of your personal finances across multiple platforms. - - apps/client/src/app/pages/landing/landing-page.html - 232 - - - - Web3 Ready - - apps/client/src/app/pages/landing/landing-page.html - 241 - - - - Use Ghostfolio anonymously and own your financial data. - - apps/client/src/app/pages/landing/landing-page.html - 243 - - - - Open Source - - apps/client/src/app/pages/landing/landing-page.html - 251 - - - - Benefit from continuous improvements through a strong community. - - apps/client/src/app/pages/landing/landing-page.html - 253 - - - - Why Ghostfolio? - - apps/client/src/app/pages/landing/landing-page.html - 262 - - - - Ghostfolio is for you if you are... - - apps/client/src/app/pages/landing/landing-page.html - 263 - - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - - apps/client/src/app/pages/landing/landing-page.html - 270 - - - - pursuing a buy & hold strategy - - apps/client/src/app/pages/landing/landing-page.html - 276 - - - - interested in getting insights of your portfolio composition - - apps/client/src/app/pages/landing/landing-page.html - 281 - - - - valuing privacy and data ownership - - apps/client/src/app/pages/landing/landing-page.html - 286 - - - - into minimalism - - apps/client/src/app/pages/landing/landing-page.html - 289 - - - - caring about diversifying your financial resources - - apps/client/src/app/pages/landing/landing-page.html - 293 - - - - interested in financial independence - - apps/client/src/app/pages/landing/landing-page.html - 297 - - - - saying no to spreadsheets in - - apps/client/src/app/pages/landing/landing-page.html - 301 - - - - still reading this list - - apps/client/src/app/pages/landing/landing-page.html - 304 - - - - Learn more about Ghostfolio - - apps/client/src/app/pages/landing/landing-page.html - 309 - - - - What our users are saying - - apps/client/src/app/pages/landing/landing-page.html - 317 - - - - Members from around the globe are using Ghostfolio Premium - - apps/client/src/app/pages/landing/landing-page.html - 349 - - - - How does Ghostfolio work? - - apps/client/src/app/pages/landing/landing-page.html - 361 - - - - Get started in only 3 steps - - apps/client/src/app/pages/landing/landing-page.html - 364 - - - - Sign up anonymously* - - apps/client/src/app/pages/landing/landing-page.html - 370 - - - - * no e-mail address nor credit card required - - apps/client/src/app/pages/landing/landing-page.html - 372 - - - - Add any of your historical transactions - - apps/client/src/app/pages/landing/landing-page.html - 383 - - - - Get valuable insights of your portfolio composition - - apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 - - - - Join now or check out the example account - - apps/client/src/app/pages/landing/landing-page.html - 408 - - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - - apps/client/src/app/pages/open/open-page.html - 6 - - - - (Last 24 hours) - - apps/client/src/app/pages/open/open-page.html - 37 - - - - Active Users - - apps/client/src/app/pages/open/open-page.html - 40 - - - apps/client/src/app/pages/open/open-page.html - 62 - - - - (Last 30 days) - - apps/client/src/app/pages/open/open-page.html - 48 - - - apps/client/src/app/pages/open/open-page.html - 59 - - - - New Users - - apps/client/src/app/pages/open/open-page.html - 51 - - - - Users in Slack community - - apps/client/src/app/pages/open/open-page.html - 75 - - - - Contributors on GitHub - - apps/client/src/app/pages/open/open-page.html - 89 - - - - (Last 90 days) - - apps/client/src/app/pages/open/open-page.html - 127 - - - - Uptime - - apps/client/src/app/pages/open/open-page.html - 132 - - - - Activities - - apps/client/src/app/pages/portfolio/activities/activities-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 - - - - Do you really want to delete these activities? - - libs/ui/src/lib/activities-table/activities-table.component.ts - 216 - - - - Update activity - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 - - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 - - - - One-time fee, annual account fees - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 - - - - Distribution of corporate earnings - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 - - - - Revenue for lending out money - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 - - - - Mortgages, personal loans, credit cards - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 - - - - Luxury items, real estate, private companies - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 - - - - Account - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 307 - - - - Update Cash Balance - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 - - - - Unit Price - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 209 - - - - Oops! Could not get the historical exchange rate from - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 - - - - Fee - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 233 - - - - Oops! Could not get the historical exchange rate from - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 - - - - Import Activities - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 44 - - - - Import Dividends - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 86 - - - - Importing data... - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 120 - - - - Import has been completed - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 128 - - - - Validating data... - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 233 - - - - Select Holding - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 20 - - - - Select File - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 - - - - Holding - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 - - - - Load Dividends - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 - - - - Choose or drop a file here - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 - - - - The following file formats are supported: - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 - - - - Select Dividends - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 - - - - Select Activities - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 - - - - Back - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 - - - - Allocations - - apps/client/src/app/pages/portfolio/allocations/allocations-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 - - - - Allocations - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 4 - - - - Proportion of Net Worth - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 12 - - - - By Platform - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 44 - - - - By Currency - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 63 - - - - By Asset Class - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 86 - - - - By Holding - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 109 - - - - By Sector - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 132 - - - - By Continent - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 156 - - - - By Market - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 179 - - - - Regions - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 203 - - - apps/client/src/app/pages/public/public-page.html - 76 - - - - Developed Markets - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 228 - - - apps/client/src/app/pages/public/public-page.html - 93 - - - - Emerging Markets - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 237 - - - apps/client/src/app/pages/public/public-page.html - 102 - - - - Other Markets - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 246 - - - apps/client/src/app/pages/public/public-page.html - 111 - - - - No data available - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 258 - - - apps/client/src/app/pages/public/public-page.html - 123 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 86 - - - - By Account - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 294 - - - - By ETF Provider - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 314 - - - - By Country - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 271 - - - - Analysis - - apps/client/src/app/pages/portfolio/analysis/analysis-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 34 - - - - Dividend - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 38 - - - libs/ui/src/lib/i18n.ts - 32 - - - - Deposit - - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 357 - - - - Monthly - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 50 - - - - Yearly - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 51 - - - - Analysis - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 2 - - - - Top - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 - - - - Bottom - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 - - - - Portfolio Evolution - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 - - - - Investment Timeline - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 - - - - Current Streak - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 - - - - Longest Streak - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 - - - - Dividend Timeline - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 - - - - FIRE - - apps/client/src/app/pages/portfolio/fire/fire-page-routing.module.ts - 13 - - - - FIRE - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 4 - - - - Calculator - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 7 - - - - 4% Rule - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 - - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 111 - - - - Currency Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 - - - - Account Cluster Risks - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 - - - - Holdings - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 77 - - - apps/client/src/app/components/home-holdings/home-holdings.html - 4 - - - apps/client/src/app/pages/public/public-page.html - 14 - - - libs/ui/src/lib/assistant/assistant.html - 46 - - - - Pricing - - apps/client/src/app/pages/pricing/pricing-page-routing.module.ts - 13 - - - - Pricing Plans - - apps/client/src/app/pages/pricing/pricing-page.html - 4 - - - - Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. - - apps/client/src/app/pages/pricing/pricing-page.html - 6 - - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - - apps/client/src/app/pages/pricing/pricing-page.html - 24 - - - - For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. - - apps/client/src/app/pages/pricing/pricing-page.html - 36 - - - - Unlimited Transactions - - apps/client/src/app/pages/pricing/pricing-page.html - 43 - - - apps/client/src/app/pages/pricing/pricing-page.html - 126 - - - apps/client/src/app/pages/pricing/pricing-page.html - 187 - - - - Unlimited Accounts - - apps/client/src/app/pages/pricing/pricing-page.html - 47 - - - apps/client/src/app/pages/pricing/pricing-page.html - 130 - - - apps/client/src/app/pages/pricing/pricing-page.html - 191 - - - - Portfolio Performance - - apps/client/src/app/pages/pricing/pricing-page.html - 51 - - - apps/client/src/app/pages/pricing/pricing-page.html - 134 - - - apps/client/src/app/pages/pricing/pricing-page.html - 195 - - - - Data Import and Export - - apps/client/src/app/pages/pricing/pricing-page.html - 71 - - - apps/client/src/app/pages/pricing/pricing-page.html - 138 - - - apps/client/src/app/pages/pricing/pricing-page.html - 215 - - - - Community Support - - apps/client/src/app/pages/pricing/pricing-page.html - 88 - - - - Self-hosted, update manually. - - apps/client/src/app/pages/pricing/pricing-page.html - 92 - - - - Free - - apps/client/src/app/pages/pricing/pricing-page.html - 93 - - - apps/client/src/app/pages/pricing/pricing-page.html - 150 - - - - For new investors who are just getting started with trading. - - apps/client/src/app/pages/pricing/pricing-page.html - 120 - - - - Fully managed Ghostfolio cloud offering. - - apps/client/src/app/pages/pricing/pricing-page.html - 149 - - - apps/client/src/app/pages/pricing/pricing-page.html - 240 - - - - For ambitious investors who need the full picture of their financial assets. - - apps/client/src/app/pages/pricing/pricing-page.html - 180 - - - - Email and Chat Support - - apps/client/src/app/pages/pricing/pricing-page.html - 236 - - - - Renew Plan - - apps/client/src/app/components/header/header.component.html - 190 - - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 - - - apps/client/src/app/pages/pricing/pricing-page.html - 276 - - - - One-time payment, no auto-renewal. - - apps/client/src/app/pages/pricing/pricing-page.html - 280 - - - - Get Started - - apps/client/src/app/pages/pricing/pricing-page.html - 291 - - - - It’s free. - - apps/client/src/app/pages/pricing/pricing-page.html - 294 - - - - Hello, has shared a Portfolio with you! - - apps/client/src/app/pages/public/public-page.html - 4 - - - - Currencies - - apps/client/src/app/pages/public/public-page.html - 30 - - - - Continents - - apps/client/src/app/pages/public/public-page.html - 60 - - - - Ghostfolio empowers you to keep track of your wealth. - - apps/client/src/app/pages/public/public-page.html - 148 - - - - Registration - - apps/client/src/app/pages/register/register-page-routing.module.ts - 13 - - - - Continue with Internet Identity - - apps/client/src/app/pages/register/register-page.html - 41 - - - - Continue with Google - - apps/client/src/app/pages/register/register-page.html - 51 - - - - Copy to clipboard - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 26 - - - - I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 32 - - - - Agree and continue - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 45 - - - - Personal Finance Tools - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 14 - - - - open-source-alternative-to - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 23 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 - - - - Open Source Alternative to - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 26 - - - - Discover Open Source Alternatives for Personal Finance Tools - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4 - - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8 - - - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16 - - - - Open Source Alternative to - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 38 - - - - The Open Source Alternative to - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - - Ghostfolio vs comparison table - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - - Founded - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - - Origin - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - - Region - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - - Available in - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - - ✅ Yes - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - - ❌ No - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 176 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - - ❌ No - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 118 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118 - - - - Self-Hosting - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - - Use anonymously - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 150 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 - - - - Free Plan - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - - Starting from - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 64 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/admin-users/admin-users.html + 113 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.html + 54 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/header/header.component.html + 262 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 357 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + apps/client/src/app/pages/accounts/accounts-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 + libs/ui/src/lib/assistant/assistant.html + 107 - - year - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - + + Do you really want to delete this platform? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-platform/admin-platform.component.ts + 79 + + + Update platform - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 7 + + + Add platform - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 8 + + + Platforms - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 4 + + + Tags - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 10 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 377 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 355 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/assistant/assistant.html + 127 + + + Add Tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 + + + Do you really want to delete this tag? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 79 + + + Update tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 7 + + + Add tag - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 8 + + + Do you really want to delete this user? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-users/admin-users.component.ts + 113 + + + User - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + Registration - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-users/admin-users.html + 96 + + + Engagement per Day - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-users/admin-users.html + 158 + + + Last Request - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-users/admin-users.html + 183 + + + Impersonate User - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-users/admin-users.html + 222 + + + Delete User - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/admin-users/admin-users.html + 232 + + + Performance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 6 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 89 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 142 + + + Compare with... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 19 + + + Manage Benchmarks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 38 + + + Portfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts + 116 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts + 41 + + + Benchmark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts + 128 + + + Current Market Mood - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html + 12 + + + Overview - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 244 + + + Portfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 254 + + + Admin Control - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 67 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 278 + + + Me - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 211 + + + User - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 230 + + + My Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 269 + + + About Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 309 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/pages/about/overview/about-overview-page.html + 5 + + + Sign in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 399 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 71 + + + Get started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.html + 411 + + + Sign in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/app-routing.module.ts + 141 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 229 + + + Oops! Incorrect Security Token. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/header/header.component.ts + 243 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 154 + + + Manage Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/home-holdings/home-holdings.html + 32 + + + Fear - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/home-market/home-market.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 71 + + + Greed - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/home-market/home-market.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + libs/ui/src/lib/i18n.ts + 72 + + + Last Days - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/home-market/home-market.html + 6 + + + Welcome to Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 + apps/client/src/app/components/home-overview/home-overview.html + 7 + + + Ready to take control of your personal finances? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/home-overview/home-overview.html + 8 + + + Setup your accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/home-overview/home-overview.html + 15 + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + Capture your activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/home-overview/home-overview.html + 24 + + + Record your investment activities to keep your portfolio up to date. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + Monitor and analyze your portfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/home-overview/home-overview.html + 33 + + + Track your progress in real-time with comprehensive analysis and insights. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + Setup accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/home-overview/home-overview.html + 48 + + + Add activity - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/home-overview/home-overview.html + 56 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 8 + + + Summary - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/home-summary/home-summary.html + 2 + + + Total Amount - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/investment-chart/investment-chart.component.ts + 142 + + + Savings Rate - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/investment-chart/investment-chart.component.ts + 214 + + + Security Token - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 11 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 10 + + + or - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 31 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/landing/landing-page.html + 423 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 99 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/register/register-page.html + 29 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/webauthn/webauthn-page.html + 29 + + + Sign in with Internet Identity - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 42 + + + Sign in with Google - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 52 + + + Stay signed in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 61 + + + Time in Market - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 3 + + + Buy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 31 + + + Sell - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 43 + + + Investment - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 165 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 58 + + + Absolute Gross Performance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 70 + + + Gross Performance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 85 + + + Fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 199 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 108 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 161 + + + Absolute Net Performance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 126 + + + Net Performance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 141 + + + Total Assets - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 167 + + + Valuables - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 180 + + + Emergency Fund - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 192 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/features/features-page.html + 89 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 122 + + + Cash - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 226 + + + Assets - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 239 + + + Buying Power - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 252 + + + Excluded from Analysis - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 264 + + + Liabilities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 279 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/features/features-page.html + 102 + + + Net Worth - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 297 + + + Annualized Performance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 309 + + + Interest - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 331 + + + Dividend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 177 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 343 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/features/features-page.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 192 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 255 + + + Please enter the amount of your emergency fund: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts + 58 - - Notes + + Change - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + + + Average Unit Price - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 101 + + + Minimum Price - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 128 + + + Maximum Price - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 144 + + + Quantity - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 154 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 179 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + libs/ui/src/lib/activities-table/activities-table.component.html + 185 + + + Report Data Glitch - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 395 + + + Are you an ambitious investor who needs the full picture? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 12 + + + Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 15 + + + Portfolio Summary - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 22 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 199 + + + Portfolio Allocations - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/features/features-page.html + 160 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 59 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 203 + + + Performance Benchmarks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 30 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 63 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 207 + + + FIRE Calculator - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 34 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 67 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 211 + + + Professional Data Provider - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 226 + + + and more Features... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 42 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 83 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 231 + + + Get the tools to effectively manage your finances and refine your personal investment strategy. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 45 + + + Skip - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 52 + + + Upgrade Plan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/header/header.component.html + 182 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 59 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 20 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 268 + + + Today - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/toggle/toggle.component.ts + 22 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + libs/ui/src/lib/assistant/assistant.component.ts + 215 + + + YTD - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/toggle/toggle.component.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + libs/ui/src/lib/assistant/assistant.component.ts + 225 + + + 1Y - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/toggle/toggle.component.ts + 24 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + libs/ui/src/lib/assistant/assistant.component.ts + 229 + + + 5Y - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/toggle/toggle.component.ts + 25 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + libs/ui/src/lib/assistant/assistant.component.ts + 250 + + + Max - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/toggle/toggle.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + libs/ui/src/lib/assistant/assistant.component.ts + 253 + + + Grant access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 7 + + + Public - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 25 + + + Granted Access - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-access/user-account-access.html + 5 + + + Please enter your coupon code: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 111 + + + Could not redeem coupon code - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 121 + + + Coupon code has been redeemed - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 133 + + + Reload - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 134 + + + per year - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 254 + + + Try Premium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 50 + + + Redeem Coupon - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 63 - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + + Auto - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 35 + + + Do you really want to remove this sign in method? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 230 + + + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + Presenter View - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 7 + + + Protection for sensitive information like absolute performances and quantity values - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 8 + + + Base Currency - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 27 + + + Language - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 50 + + + Locale - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 121 + + + Date and number format - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 123 + + + Appearance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 146 + + + Auto - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 160 + + + Light - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 161 + + + Dark - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 162 + + + Zen Mode - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 171 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/features/features-page.html + 190 + + + Distraction-free experience for turbulent times - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 172 + + + Biometric Authentication - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 188 + + + Sign in with fingerprint - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 189 + + + Experimental Features - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 206 + + + Sneak peek at upcoming functionality - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 207 + + + User ID - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 223 + + + Export Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 231 + + + This feature is currently unavailable. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/core/http-response.interceptor.ts + 53 + + + Please try again later. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/core/http-response.interceptor.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/core/http-response.interceptor.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 138 + + + Oops! Something went wrong. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/core/http-response.interceptor.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 136 + + + Okay - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/core/http-response.interceptor.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 139 + + + About - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/about-page-routing.module.ts + 51 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/about-page.component.ts + 44 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/overview/about-overview-page-routing.module.ts + 13 + + + Changelog - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/about-page.component.ts + 49 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/changelog/changelog-page-routing.module.ts + 13 + + + License - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/about-page.component.ts + 54 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/license/license-page-routing.module.ts + 13 + + + Privacy Policy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/about-page.component.ts + 62 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/privacy-policy/privacy-policy-page-routing.module.ts + 13 + + + Our - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + Discover other exciting Open Source Software projects - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + Visit - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + Accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/accounts-page-routing.module.ts + 13 + + + Oops, cash balance transfer has failed. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 304 + + + Update account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 8 + + + Add account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 10 + + + Account ID - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 96 + + + From - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 28 + + + Transfer - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 64 + + + Admin Control - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 20 + + + Market Data - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 30 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + Settings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page.component.ts + 32 - - - Ready to take your investments to the next level? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 18 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 35 + + + Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 40 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/admin/admin-page.component.ts + 47 + + + Overview - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/admin/admin-page.component.ts + 27 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/zen/zen-page-routing.module.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/zen/zen-page.component.ts + 34 + + + Blog - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/blog/blog-page-routing.module.ts + 13 + + + Discover the latest Ghostfolio updates and insights on personal finance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/blog/blog-page.html + 7 + + + As you are already logged in, you cannot access the demo account. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/demo/demo-page.component.ts + 35 + + + Frequently Asked Questions (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/faq/faq-page-routing.module.ts + 34 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/faq/overview/faq-overview-page-routing.module.ts + 13 + + + Frequently Asked Questions (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/faq/overview/faq-overview-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/faq/saas/saas-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html + 4 + + + Features - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/app-routing.module.ts + 65 + + + Check out the numerous features of Ghostfolio to manage your wealth - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 6 + + + Stocks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 15 + + + ETFs - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 25 + + + Bonds - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 38 + + + Cryptocurrencies - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 51 + + + Wealth Items - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 76 + + + Import and Export - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 115 + + + Multi-Accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 127 + + + Portfolio Calculations - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 141 + + + Dark Mode - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 177 + + + Market Mood - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 205 + + + Static Analysis - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 224 + + + Multi-Language - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 241 + + + Open Source Software - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 275 + + + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 300 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/public/public-page.html + 153 + + + Holdings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page-routing.module.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/zen/zen-page.component.ts + 39 + + + Summary - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page-routing.module.ts + 33 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page.component.ts + 47 + + + Markets - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page-routing.module.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page.component.ts + 52 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/markets/markets-page-routing.module.ts + 13 + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/i18n/i18n-page.html + 9 + + + Open Source Wealth Management Software - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + Manage your wealth like a boss - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 5 + + + 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. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 9 + + + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 419 + + + or - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 46 + + + Live Demo - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 49 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 424 + + + Monthly Active Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 69 + + + Stars on GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/open/open-page.html + 103 + + + Pulls on Docker Hub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 105 - - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 117 + + + As seen in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 113 + + + Protect your assets. Refine your personal investment strategy. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 215 + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 219 + + + 360° View - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 230 + + + Get the full picture of your personal finances across multiple platforms. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 232 + + + Web3 Ready - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 241 + + + Use Ghostfolio anonymously and own your financial data. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 243 + + + Open Source - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 251 + + + Benefit from continuous improvements through a strong community. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 253 + + + Why Ghostfolio? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 262 + + + Ghostfolio is for you if you are... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 263 + + + trading stocks, ETFs or cryptocurrencies on multiple platforms - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 270 + + + pursuing a buy & hold strategy - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 276 + + + interested in getting insights of your portfolio composition - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 281 + + + valuing privacy and data ownership - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 286 + + + into minimalism - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 289 + + + caring about diversifying your financial resources - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 293 + + + interested in financial independence - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 297 + + + saying no to spreadsheets in - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 301 + + + still reading this list - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 304 + + + Learn more about Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 309 + + + What our users are saying - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 317 + + + Members from around the globe are using Ghostfolio Premium - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 349 + + + How does Ghostfolio work? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 361 + + + Get started in only 3 steps - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 364 + + + Sign up anonymously* - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 370 + + + * no e-mail address nor credit card required - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 372 + + + Add any of your historical transactions - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 383 + + + Get valuable insights of your portfolio composition - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 395 + + + Are you ready? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 407 + + + Join now or check out the example account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 408 + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 6 + + + (Last 24 hours) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 37 + + + Active Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 40 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 62 + + + (Last 30 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 59 + + + New Users - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 51 + + + Users in Slack community - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 75 + + + Contributors on GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 89 + + + (Last 90 days) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 127 + + + Uptime - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 132 + + + Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/activities-page-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 39 + + + Do you really want to delete these activities? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 + + + Update activity - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 7 + + + Stocks, ETFs, bonds, cryptocurrencies, commodities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 22 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 62 + + + One-time fee, annual account fees - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 30 + + + Distribution of corporate earnings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 38 + + + Revenue for lending out money - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 46 + + + Mortgages, personal loans, credit cards - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 54 + + + Luxury items, real estate, private companies - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 70 + + + Account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 82 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + libs/ui/src/lib/activities-table/activities-table.component.html + 307 - - Get Started + + Update Cash Balance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 108 + + + Unit Price - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 199 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 261 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + libs/ui/src/lib/activities-table/activities-table.component.html + 209 + + + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 226 + + + Fee - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 280 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 302 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + libs/ui/src/lib/activities-table/activities-table.component.html + 233 + + + Oops! Could not get the historical exchange rate from - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 292 + + + Import Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 44 + + + Import Dividends - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 86 + + + Importing data... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 120 + + + Import has been completed - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 128 + + + Validating data... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 233 + + + Select Holding - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 20 + + + Select File - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 23 + + + Holding - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 33 + + + Load Dividends - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 70 + + + Choose or drop a file here - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 86 + + + The following file formats are supported: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 92 + + + Select Dividends - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 115 + + + Select Activities - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 118 + + + Back - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 146 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 182 + + + Allocations - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 44 + + + Allocations - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 4 + + + Proportion of Net Worth - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 12 + + + By Platform - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 44 + + + By Currency - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 63 + + + By Asset Class - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 85 + + + By Holding - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 107 + + + By Sector - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 130 + + + By Continent - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 153 + + + By Market - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 175 + + + Regions - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 198 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/public/public-page.html + 76 + + + Developed Markets - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 222 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/public/public-page.html + 93 + + + Emerging Markets - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 231 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/public/public-page.html + 102 + + + Other Markets - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 240 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/public/public-page.html + 111 + + + No data available - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/public/public-page.html + 123 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 88 + + + By Account - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 286 + + + By ETF Provider - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 306 + + + By Country - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 264 + + + Analysis - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 34 + + + Dividend - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + libs/ui/src/lib/i18n.ts + 32 + + + Deposit - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 361 + + + Monthly - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 50 + + + Yearly - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 51 - - Personal Finance Tools + + Analysis - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 2 + + + Top - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 168 + + + Bottom - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 214 + + + Portfolio Evolution - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 264 + + + Investment Timeline - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 294 + + + Current Streak - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 315 + + + Longest Streak - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 324 + + + Dividend Timeline - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 352 + + + FIRE - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page-routing.module.ts + 13 + + + FIRE - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 4 + + + Calculator - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 7 + + + 4% Rule - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 41 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 111 + + + Currency Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 135 + + + Account Cluster Risks - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 148 + + + Holdings - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/home-holdings/home-holdings.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/public/public-page.html + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + libs/ui/src/lib/assistant/assistant.html + 46 + + + Pricing - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page-routing.module.ts + 13 + + + Pricing Plans - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 4 + + + Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 6 + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 36 + + + Unlimited Transactions - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 43 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 126 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 187 + + + Unlimited Accounts - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 47 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 191 + + + Portfolio Performance - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 51 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 195 + + + Data Import and Export - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 138 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 215 + + + Community Support - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 88 + + + Self-hosted, update manually. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 92 + + + Free - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 93 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 150 + + + For new investors who are just getting started with trading. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 120 + + + Fully managed Ghostfolio cloud offering. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 149 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 240 + + + For ambitious investors who need the full picture of their financial assets. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 180 + + + Email and Chat Support - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 236 + + + Renew Plan - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/header/header.component.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 276 + + + One-time payment, no auto-renewal. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 280 + + + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 291 + + + It’s free. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 294 + + + Hello, has shared a Portfolio with you! - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/public/public-page.html + 4 + + + Currencies - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/public/public-page.html + 30 + + + Continents - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/public/public-page.html + 60 + + + Ghostfolio empowers you to keep track of your wealth. - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/public/public-page.html + 148 + + + Registration - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/register/register-page-routing.module.ts + 13 - - Switzerland + + Continue with Internet Identity - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 80 + apps/client/src/app/pages/register/register-page.html + 41 + + + Continue with Google - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + apps/client/src/app/pages/register/register-page.html + 51 + + + Copy to clipboard - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 590 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 26 + + + I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 650 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 32 - - Global + + Agree and continue - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 81 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 45 + + + Personal Finance Tools - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 360 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 14 + + + open-source-alternative-to - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 502 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 651 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 - - United States + + Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 101 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 27 + + + Discover Open Source Alternatives for Personal Finance Tools - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 157 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 4 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 167 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 + + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 + + + Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 218 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 42 + + + The Open Source Alternative to - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 240 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 27 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 302 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 38 + + + Ghostfolio vs comparison table - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 324 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 49 + + + Founded - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 335 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 72 + + + Origin - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 77 + + + Region - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 371 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 82 + + + Available in - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 87 + + + ✅ Yes - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 109 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 469 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 116 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 479 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 489 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 578 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 601 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 162 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 639 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 174 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 661 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 181 - - France - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 - + + ❌ No - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 522 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 547 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 134 - - - Poland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 139 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 145 - - - Germany - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 157 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 198 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 164 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 176 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 292 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 183 + + + ❌ No - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 313 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 118 + + + Self-Hosting - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 358 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 123 + + + Use anonymously - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 415 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 150 + + + Free Plan - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 532 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 169 - - Belgium + + Starting from - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 187 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 190 - - - South Africa - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 259 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 195 - - Austria + + year - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 270 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 191 - - - Italy - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 197 - - Netherlands + + Notes - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 436 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 202 - - Thailand + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 458 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 210 - - New Zealand + + Ready to take your investments to the next level? - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 500 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 223 - - Czech Republic + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 511 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 227 + + + Get Started - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 568 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 232 + + + Personal Finance Tools - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 611 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 308 - - Finland + + Switzerland - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 539 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 58 - - Canada + + Global - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 631 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 59 @@ -14660,7 +5144,7 @@ Interest libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 367 + 371 libs/ui/src/lib/i18n.ts @@ -14671,7 +5155,7 @@ Savings libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 377 + 381 @@ -14682,7 +5166,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 45 + 46 @@ -14693,7 +5177,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 79 + 81 @@ -15121,7 +5605,7 @@ Restricted view apps/client/src/app/components/access-table/access-table.component.html - 25 + 26 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15132,7 +5616,7 @@ Permission apps/client/src/app/components/access-table/access-table.component.html - 17 + 18 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15263,7 +5747,7 @@ View apps/client/src/app/components/access-table/access-table.component.html - 22 + 23 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15370,7 +5854,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 - 107 + 96 @@ -15419,7 +5903,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 70 + 61 @@ -15492,20 +5976,6 @@ 144 - - Australia - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 403 - - - - Bulgaria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 558 - - Danger Zone @@ -15513,18 +5983,18 @@ 243 - - Approximation based on the Top 15 holdings per ETF + + Approximation based on the top holdings of each ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 350 + 340 By ETF Holding apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 342 + 333 diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index b68266037..fd5fca75e 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -79,14819 +79,5287 @@ apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 22 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 26 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 26 + 18 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 23 + + + faq + 常见问题 - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 26 + apps/client/src/app/app.component.ts + 66 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 3 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 26 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 26 + apps/client/src/app/pages/faq/faq-page.component.ts + 48 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 26 + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + features + 功能 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 26 + apps/client/src/app/app.component.ts + 67 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 83 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 4 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 26 + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 26 + apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 26 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 26 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 24 + + + license + 许可 - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 26 + apps/client/src/app/app.component.ts + 61 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 5 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 55 + + + markets + 市场 - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 26 + apps/client/src/app/app.component.ts + 68 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 79 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 84 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 6 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 26 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 14 + + + pricing + 价钱 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 26 + apps/client/src/app/app.component.ts + 69 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 85 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 26 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 26 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 26 + apps/client/src/app/core/http-response.interceptor.ts + 72 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 7 - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 26 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 26 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 26 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts + 16 - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 26 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 15 - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 26 + libs/ui/src/lib/membership-card/membership-card.component.ts + 25 + + + privacy-policy + 隐私政策 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 26 + apps/client/src/app/app.component.ts + 64 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 26 + apps/client/src/app/core/paths.ts + 8 - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 26 + apps/client/src/app/pages/about/about-page.component.ts + 63 + + + register + 注册 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 26 + apps/client/src/app/app.component.ts + 70 - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 26 + apps/client/src/app/components/header/header.component.ts + 86 - - - faq - 常见问题 - apps/client/src/app/app.component.ts - 66 + apps/client/src/app/core/auth.guard.ts + 55 apps/client/src/app/core/paths.ts - 3 - - - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 19 + 9 - apps/client/src/app/pages/faq/faq-page.component.ts - 37 + apps/client/src/app/pages/faq/saas/saas-page.component.ts + 16 - apps/client/src/app/pages/faq/faq-page.component.ts - 42 + apps/client/src/app/pages/features/features-page.component.ts + 31 - apps/client/src/app/pages/faq/faq-page.component.ts - 48 + apps/client/src/app/pages/landing/landing-page.component.ts + 27 - apps/client/src/app/pages/resources/resources-page.component.ts - 17 + apps/client/src/app/pages/pricing/pricing-page.component.ts + 36 - - features - 功能 + + resources + 资源 apps/client/src/app/app.component.ts - 67 + 71 apps/client/src/app/components/header/header.component.ts - 78 + 81 apps/client/src/app/components/header/header.component.ts - 83 + 87 apps/client/src/app/core/paths.ts - 4 + 10 - apps/client/src/app/pages/about/overview/about-overview-page.component.ts - 20 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 15 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts 13 apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 13 + 14 - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.component.ts - 13 + apps/client/src/app/pages/features/features-page.component.ts + 32 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 15 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 26 - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.component.ts - 14 + apps/client/src/app/pages/resources/resources-page.component.ts + 19 + + + You are using the Live Demo. + 您正在使用现场演示。 - apps/client/src/app/pages/faq/overview/faq-overview-page.component.ts - 14 + apps/client/src/app/app.component.html + 17 + + + Create Account + 创建账户 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 35 + apps/client/src/app/app.component.html + 18 - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 27 + apps/client/src/app/pages/register/register-page.html + 26 - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 27 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 2 + + + Personal Finance + 个人财务 - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 27 + apps/client/src/app/app.component.html + 55 + + + Markets + 市场 - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 27 + apps/client/src/app/app.component.html + 58 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 386 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 27 + apps/client/src/app/components/home-market/home-market.html + 2 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 27 + apps/client/src/app/pages/resources/resources-page.html + 56 + + + Resources + 资源 - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 27 + apps/client/src/app/app.component.html + 60 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 289 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 27 + apps/client/src/app/pages/resources/resources-page.html + 4 + + + About + 关于 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 27 + apps/client/src/app/app.component.html + 66 - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 357 + + + Blog + 博客 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 27 + apps/client/src/app/app.component.html + 68 - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 27 + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html + 204 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 27 + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/07/ghostfolio-meets-internet-identity/ghostfolio-meets-internet-identity-page.html + 183 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html + 209 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html + 195 - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/10/hacktoberfest-2022/hacktoberfest-2022-page.html + 181 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 27 + apps/client/src/app/pages/blog/2022/12/the-importance-of-tracking-your-personal-finances/the-importance-of-tracking-your-personal-finances-page.html + 168 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/01/ghostfolio-auf-sackgeld-vorgestellt/ghostfolio-auf-sackgeld-vorgestellt-page.html + 178 - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/02/ghostfolio-meets-umbrel/ghostfolio-meets-umbrel-page.html + 202 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html + 252 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html + 233 - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.html + 243 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.html + 154 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.html + 273 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html + 181 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.html + 148 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 27 + apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.html + 270 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 27 + apps/client/src/app/pages/blog/blog-page.html + 5 + + + Changelog + 变更日志 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 27 + apps/client/src/app/app.component.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 27 + apps/client/src/app/pages/about/changelog/changelog-page.html + 4 + + + Features + 功能 - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 27 + apps/client/src/app/app.component.html + 73 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 344 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 27 + apps/client/src/app/pages/features/features-page.html + 5 + + + Frequently Asked Questions (FAQ) + 常见问题 (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 27 + apps/client/src/app/app.component.html + 76 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 27 + apps/client/src/app/pages/about/overview/about-overview-page.html + 146 + + + License + 许可 - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 27 + apps/client/src/app/app.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 27 + apps/client/src/app/pages/about/license/license-page.html + 4 + + + Pricing + 价钱 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 27 + apps/client/src/app/app.component.html + 86 - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 98 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 301 - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 27 + apps/client/src/app/components/header/header.component.html + 370 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 27 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 188 + + + Privacy Policy + 隐私政策 - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 27 + apps/client/src/app/app.component.html + 90 - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 27 + apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html + 4 + + + Community + 社区 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 27 + apps/client/src/app/app.component.html + 105 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 81 - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 86 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 90 - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 27 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 94 - - - license - 许可 - apps/client/src/app/app.component.ts - 61 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 98 - apps/client/src/app/core/paths.ts - 5 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 103 - apps/client/src/app/pages/about/about-page.component.ts - 55 - - - - markets - 市场 - - apps/client/src/app/app.component.ts - 68 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 108 - apps/client/src/app/components/header/header.component.ts - 79 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 112 - apps/client/src/app/components/header/header.component.ts - 84 + apps/client/src/app/pages/features/features-page.html + 256 + + + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. + 交易损失的风险可能很大。不建议将短期内可能需要的资金进行投资。 - apps/client/src/app/core/paths.ts - 6 + apps/client/src/app/app.component.html + 182 + + + Alias + 别名 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 13 + apps/client/src/app/components/access-table/access-table.component.html + 4 - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.component.ts - 16 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 11 + + + Grantee + 受赠者 - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 14 + apps/client/src/app/components/access-table/access-table.component.html + 11 - - pricing - 价钱 + + Type + 类型 - apps/client/src/app/app.component.ts - 69 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 28 - apps/client/src/app/components/header/header.component.ts - 80 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 22 - apps/client/src/app/components/header/header.component.ts - 85 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 12 - apps/client/src/app/components/home-summary/home-summary.component.ts - 125 + libs/ui/src/lib/activities-table/activities-table.component.html + 160 + + + Details + 细节 - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts - 14 + apps/client/src/app/components/access-table/access-table.component.html + 33 + + + Revoke + 撤销 - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 38 + apps/client/src/app/components/access-table/access-table.component.html + 63 + + + Do you really want to revoke this granted access? + 您真的要撤销此授予的访问权限吗? - apps/client/src/app/core/http-response.interceptor.ts - 83 + apps/client/src/app/components/access-table/access-table.component.ts + 50 + + + Cash Balance + 现金余额 - apps/client/src/app/core/paths.ts - 7 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 45 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 13 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 130 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 13 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 34 + + + Equity + 公平 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts - 13 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 56 + + + Activities + 活动 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts - 14 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 61 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts - 16 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 90 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts - 14 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 113 - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.component.ts - 16 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 150 - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 15 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 44 - libs/ui/src/lib/membership-card/membership-card.component.ts - 25 + apps/client/src/app/components/admin-users/admin-users.html + 134 - - - privacy-policy - 隐私政策 - apps/client/src/app/app.component.ts - 64 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 221 - apps/client/src/app/core/paths.ts - 8 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 331 - apps/client/src/app/pages/about/about-page.component.ts - 63 + apps/client/src/app/pages/portfolio/activities/activities-page.html + 4 - - register - 注册 - - apps/client/src/app/app.component.ts - 70 - - - apps/client/src/app/components/header/header.component.ts - 86 - + + Platform + 平台 - apps/client/src/app/core/auth.guard.ts - 55 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 65 - apps/client/src/app/core/paths.ts - 9 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 81 - apps/client/src/app/pages/faq/saas/saas-page.component.ts - 16 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 48 + + + Cash Balances + 现金余额 - apps/client/src/app/pages/features/features-page.component.ts - 31 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 115 + + + Transfer Cash Balance + 转移现金余额 - apps/client/src/app/pages/landing/landing-page.component.ts - 27 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 9 - apps/client/src/app/pages/pricing/pricing-page.component.ts - 36 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 7 - - resources - 资源 + + Name + 名称 - apps/client/src/app/app.component.ts - 71 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 39 - apps/client/src/app/components/header/header.component.ts - 81 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 38 - apps/client/src/app/components/header/header.component.ts - 87 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 226 - apps/client/src/app/core/paths.ts - 10 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 30 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts - 14 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 12 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts - 14 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 30 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.component.ts - 13 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 12 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.component.ts - 14 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 15 - apps/client/src/app/pages/features/features-page.component.ts - 32 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 14 + libs/ui/src/lib/activities-table/activities-table.component.html + 137 - apps/client/src/app/pages/resources/personal-finance-tools/products/allinvestview-page.component.ts - 29 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 28 - apps/client/src/app/pages/resources/personal-finance-tools/products/allvue-systems-page.component.ts - 29 - - - apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts - 29 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 12 + + + Total + 全部的 - apps/client/src/app/pages/resources/personal-finance-tools/products/basil-finance-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 50 + + + Currency + 货币 - apps/client/src/app/pages/resources/personal-finance-tools/products/beanvest-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 60 - apps/client/src/app/pages/resources/personal-finance-tools/products/capitally-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/products/capmon-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 233 - apps/client/src/app/pages/resources/personal-finance-tools/products/compound-planning-page.component.ts - 29 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 25 - apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 140 - apps/client/src/app/pages/resources/personal-finance-tools/products/de.fi-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 275 + + + Value + 价值 - apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 165 - apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 200 - apps/client/src/app/pages/resources/personal-finance-tools/products/eightfigures-page.component.ts - 29 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/products/empower-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 194 - apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 195 - apps/client/src/app/pages/resources/personal-finance-tools/products/fina-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 197 - apps/client/src/app/pages/resources/personal-finance-tools/products/finary-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 257 - apps/client/src/app/pages/resources/personal-finance-tools/products/finwise-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 258 - apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 259 - apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 260 - apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts - 29 + libs/ui/src/lib/account-balances/account-balances.component.html + 34 - apps/client/src/app/pages/resources/personal-finance-tools/products/intuit-mint-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 256 - apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 292 - apps/client/src/app/pages/resources/personal-finance-tools/products/koyfin-page.component.ts - 29 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 74 - apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts - 29 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 26 + + + Edit + 编辑 - apps/client/src/app/pages/resources/personal-finance-tools/products/magnifi-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 271 - apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 175 - apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/monarch-money-page.component.ts - 29 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 91 - apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts - 29 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/products/navexa-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 429 + + + Delete + 删除 - apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.html + 281 - apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 194 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 62 - apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-visualizer-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 90 - apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts - 29 + apps/client/src/app/components/admin-overview/admin-overview.html + 199 - apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts - 29 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 101 - apps/client/src/app/pages/resources/personal-finance-tools/products/rocket-money-page.component.ts - 29 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 81 - apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts - 29 + libs/ui/src/lib/account-balances/account-balances.component.html + 80 - apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 455 + + + Do you really want to delete this account? + 您真的要删除该帐户吗? - apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts - 29 + apps/client/src/app/components/accounts-table/accounts-table.component.ts + 101 + + + Asset Profile + 资产概况 - apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 31 + + + Historical Market Data + 历史市场数据 - apps/client/src/app/pages/resources/personal-finance-tools/products/stock-events-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 37 + + + Symbol + 符号 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockle-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/products/stockmarketeye-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 24 - apps/client/src/app/pages/resources/personal-finance-tools/products/stonksfolio-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 115 - apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 34 - apps/client/src/app/pages/resources/personal-finance-tools/products/tiller-page.component.ts - 29 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 301 + + + Data Source + 数据源 - apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 54 - apps/client/src/app/pages/resources/personal-finance-tools/products/vyzer-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 51 - apps/client/src/app/pages/resources/personal-finance-tools/products/wallmine-page.component.ts - 29 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 125 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthfolio-page.component.ts - 29 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 150 + + + Attempts + 尝试 - apps/client/src/app/pages/resources/personal-finance-tools/products/wealthica-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 82 + + + Created + 创建 - apps/client/src/app/pages/resources/personal-finance-tools/products/whal-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 91 + + + Finished + 完成的 - apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 100 + + + Status + 状况 - apps/client/src/app/pages/resources/personal-finance-tools/products/ynab-page.component.ts - 29 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 109 + + + Delete Jobs + 删除作业 - apps/client/src/app/pages/resources/resources-page.component.ts - 19 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 158 - - You are using the Live Demo. - 您正在使用现场演示。 + + View Data + 查看数据 - apps/client/src/app/app.component.html - 17 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 173 - - Create Account - 创建账户 + + View Stacktrace + 查看堆栈跟踪 - apps/client/src/app/app.component.html - 18 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 180 + + + Delete Job + 删除作业 - apps/client/src/app/pages/register/register-page.html - 26 - - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 2 + apps/client/src/app/components/admin-jobs/admin-jobs.html + 186 - - Personal Finance - 个人财务 + + Details for + 详细信息 - apps/client/src/app/app.component.html - 55 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 2 - - Markets - 市场 + + Date + 日期 - apps/client/src/app/app.component.html - 58 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 6 - apps/client/src/app/components/header/header.component.html - 386 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 156 - apps/client/src/app/components/home-market/home-market.html - 2 + libs/ui/src/lib/account-balances/account-balances.component.html + 12 - apps/client/src/app/pages/resources/resources-page.html - 56 + libs/ui/src/lib/activities-table/activities-table.component.html + 169 - - Resources - 资源 + + Market Price + 市场价 - apps/client/src/app/app.component.html - 60 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 26 - apps/client/src/app/components/header/header.component.html - 80 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 112 + + + Cancel + 取消 - apps/client/src/app/components/header/header.component.html - 289 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 46 - apps/client/src/app/pages/resources/resources-page.html - 4 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 376 - - - About - 关于 - apps/client/src/app/app.component.html - 66 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 40 - apps/client/src/app/components/header/header.component.html - 111 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 39 - apps/client/src/app/components/header/header.component.html - 357 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 22 - - - Blog - 博客 - apps/client/src/app/app.component.html - 68 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 58 - apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html - 204 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 103 - apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html - 183 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 57 - apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.html - 183 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 399 - apps/client/src/app/pages/blog/2022/07/ghostfolio-meets-internet-identity/ghostfolio-meets-internet-identity-page.html - 183 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 38 + + + Save + 保存 - apps/client/src/app/pages/blog/2022/07/how-do-i-get-my-finances-in-order/how-do-i-get-my-finances-in-order-page.html - 209 + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 48 - apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html - 195 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 383 - apps/client/src/app/pages/blog/2022/10/hacktoberfest-2022/hacktoberfest-2022-page.html - 181 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 47 - apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html - 141 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 46 - apps/client/src/app/pages/blog/2022/12/the-importance-of-tracking-your-personal-finances/the-importance-of-tracking-your-personal-finances-page.html - 168 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 29 - apps/client/src/app/pages/blog/2023/01/ghostfolio-auf-sackgeld-vorgestellt/ghostfolio-auf-sackgeld-vorgestellt-page.html - 178 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 65 - apps/client/src/app/pages/blog/2023/02/ghostfolio-meets-umbrel/ghostfolio-meets-umbrel-page.html - 202 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 110 - apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html - 252 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 406 + + + Currencies + 货币 - apps/client/src/app/pages/blog/2023/05/unlock-your-financial-potential-with-ghostfolio/unlock-your-financial-potential-with-ghostfolio-page.html - 233 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 73 + + + ETFs without Countries + 没有国家的 ETF - apps/client/src/app/pages/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.html - 243 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 78 + + + ETFs without Sectors + 无行业类别的 ETF - apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.html - 154 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 83 + + + Do you really want to delete this asset profile? + 您确实要删除此资产配置文件吗? - apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.html - 273 + apps/client/src/app/components/admin-market-data/admin-market-data.service.ts + 13 + + + Filter by... + 过滤... - apps/client/src/app/pages/blog/2023/09/hacktoberfest-2023/hacktoberfest-2023-page.html - 181 + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 282 + + + Asset Class + 资产类别 - apps/client/src/app/pages/blog/2023/11/black-week-2023/black-week-2023-page.html - 148 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 60 - apps/client/src/app/pages/blog/2023/11/hacktoberfest-2023-debriefing/hacktoberfest-2023-debriefing-page.html - 270 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 159 - apps/client/src/app/pages/blog/blog-page.html - 5 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 243 - - - Changelog - 变更日志 - apps/client/src/app/app.component.html - 71 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 228 - apps/client/src/app/pages/about/changelog/changelog-page.html - 4 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 326 - - Features - 功能 + + Asset Sub Class + 资产子类别 - apps/client/src/app/app.component.html - 73 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 69 - apps/client/src/app/components/header/header.component.html - 344 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 168 - apps/client/src/app/pages/features/features-page.html - 5 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 256 - - - Frequently Asked Questions (FAQ) - 常见问题 (FAQ) - apps/client/src/app/app.component.html - 76 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 237 - apps/client/src/app/pages/about/overview/about-overview-page.html - 146 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 342 - - License - 许可 + + First Activity + 第一个活动 - apps/client/src/app/app.component.html - 80 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 78 - apps/client/src/app/pages/about/license/license-page.html - 4 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 141 - - - Pricing - 价钱 - apps/client/src/app/app.component.html - 86 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 209 - apps/client/src/app/components/header/header.component.html - 98 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 50 + + + Activities Count + 活动计数 - apps/client/src/app/components/header/header.component.html - 301 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 87 + + + Historical Data + 历史数据 - apps/client/src/app/components/header/header.component.html - 370 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 96 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 82 + + + Sectors Count + 行业数 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 105 + + + Countries Count + 国家数 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 114 + + + Gather Recent Data + 收集最近的数据 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 144 + + + Gather All Data + 收集所有数据 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 147 + + + Gather Profile Data + 收集个人资料数据 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/admin-market-data.html + 150 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 45 + + + Oops! Could not parse historical data. + 哎呀!无法解析历史数据。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts + 232 + + + Refresh + 刷新 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 22 + + + Gather Historical Data + 收集历史数据 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 32 + + + Import + 导入 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 108 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 190 + + + Sector + 行业 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 185 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 254 + + + Country + 国家 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 196 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-users/admin-users.html + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 264 + + + Sectors + 行业 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 202 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 327 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 270 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/public/public-page.html + 45 + + + Countries + 国家 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 212 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 338 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 282 + + + Benchmark + 基准 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 284 + + + Symbol Mapping + 符号映射 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 290 + + + Scraper Configuration + 刮削配置 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 302 + + + Note + 笔记 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 363 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 311 + + + Add Asset Profile + 添加资产概况 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 7 + + + Search + 搜索 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 16 + + + Add Manually + 手动添加 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 19 + + + Name, symbol or ISIN + 名称、符号或 ISIN - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 25 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 120 + + + Please add a currency: + 请添加货币: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 122 + + + is an invalid currency! + 是无效的货币! - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 129 + + + Do you really want to delete this coupon? + 您确实要删除此优惠券吗? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 140 + + + Do you really want to delete this currency? + 您真的要删除该货币吗? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 153 + + + Do you really want to delete this system message? + 您真的要删除这条系统消息吗? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 166 + + + Do you really want to flush the cache? + 您真的要刷新缓存吗? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 183 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + + + Please set your system message: + 请设置您的系统消息: + + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 214 + + + Version + 版本 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + User Count + 用户数 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 13 + + + Activity Count + 活动计数 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 23 + + + per User + 每位用户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 32 + + + Exchange Rates + 汇率 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 37 + + + Add Currency + 添加货币 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 104 + + + User Signup + 用户注册 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 110 + + + Read-only Mode + 只读模式 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 123 + + + System Message + 系统信息 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 145 + + + Set Message + 设置留言 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 165 + + + Coupons + 优惠券 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 173 + + + Add + 添加 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + apps/client/src/app/components/admin-overview/admin-overview.html + 231 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 188 + libs/ui/src/lib/account-balances/account-balances.component.html + 93 - - Privacy Policy - 隐私政策 + + Housekeeping + 家政 - apps/client/src/app/app.component.html - 90 + apps/client/src/app/components/admin-overview/admin-overview.html + 238 + + + Flush Cache + 刷新缓存 - apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html - 4 + apps/client/src/app/components/admin-overview/admin-overview.html + 242 - - Community - 社区 + + Add Platform + 添加平台 - apps/client/src/app/app.component.html - 105 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 11 + + + Url + 网址 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 350 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 86 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 50 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 90 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 22 + + + Accounts + 帐户 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 94 + apps/client/src/app/components/admin-platform/admin-platform.component.html + 64 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + apps/client/src/app/components/admin-users/admin-users.html + 113 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + apps/client/src/app/components/header/header.component.html + 54 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 108 + apps/client/src/app/components/header/header.component.html + 262 - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 357 - apps/client/src/app/pages/features/features-page.html - 256 + apps/client/src/app/pages/accounts/accounts-page.html + 4 + + + libs/ui/src/lib/assistant/assistant.html + 107 - - The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. - 交易损失的风险可能很大。不建议将短期内可能需要的资金进行投资。 + + Do you really want to delete this platform? + 您真的要删除这个平台吗? - apps/client/src/app/app.component.html - 182 + apps/client/src/app/components/admin-platform/admin-platform.component.ts + 79 - - Alias - 别名 + + Update platform + 更新平台 - apps/client/src/app/components/access-table/access-table.component.html - 3 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 7 + + + Add platform + 添加平台 - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 11 + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 8 - - Grantee - 受赠者 + + Platforms + 平台 - apps/client/src/app/components/access-table/access-table.component.html - 10 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 4 - - Type - 类型 + + Tags + 标签 - apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + apps/client/src/app/components/admin-settings/admin-settings.component.html + 10 - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 22 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 377 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 355 - libs/ui/src/lib/activities-table/activities-table.component.html - 160 + libs/ui/src/lib/assistant/assistant.html + 127 - - Details - 细节 + + Add Tag + 添加标签 - apps/client/src/app/components/access-table/access-table.component.html - 32 + apps/client/src/app/components/admin-tag/admin-tag.component.html + 11 - - Revoke - 撤销 + + Do you really want to delete this tag? + 您真的要删除此标签吗? - apps/client/src/app/components/access-table/access-table.component.html - 59 + apps/client/src/app/components/admin-tag/admin-tag.component.ts + 79 - - Do you really want to revoke this granted access? - 您真的要撤销此授予的访问权限吗? + + Update tag + 更新标签 - apps/client/src/app/components/access-table/access-table.component.ts - 50 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 7 - - Cash Balance - 现金余额 - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 45 - + + Add tag + 添加标签 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 117 + apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html + 8 + + + Do you really want to delete this user? + 您真的要删除该用户吗? - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 34 + apps/client/src/app/components/admin-users/admin-users.component.ts + 113 - - Equity - 公平 + + User + 用户 - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 56 + apps/client/src/app/components/admin-users/admin-users.html + 29 - - Activities - 活动 + + Registration + 注册 - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 61 + apps/client/src/app/components/admin-users/admin-users.html + 96 + + + Engagement per Day + 每天的参与度 - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 90 + apps/client/src/app/components/admin-users/admin-users.html + 158 + + + Last Request + 最后请求 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 100 + apps/client/src/app/components/admin-users/admin-users.html + 183 + + + Impersonate User + 模拟用户 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 150 + apps/client/src/app/components/admin-users/admin-users.html + 222 + + + Delete User + 删除用户 - apps/client/src/app/components/admin-tag/admin-tag.component.html - 44 + apps/client/src/app/components/admin-users/admin-users.html + 232 + + + Performance + 表现 - apps/client/src/app/components/admin-users/admin-users.html - 134 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 6 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 221 + 89 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 331 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 142 + + + Compare with... + 与之比较... - apps/client/src/app/pages/portfolio/activities/activities-page.html - 4 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 19 - - Platform - 平台 + + Manage Benchmarks + 管理基准 - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 65 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 38 + + + Portfolio + 文件夹 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 72 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts + 116 - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 48 + apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts + 41 - - Cash Balances - 现金余额 + + Benchmark + 基准 - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 115 + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts + 128 - - Transfer Cash Balance - 转移现金余额 + + Current Market Mood + 当前市场情绪 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html + 12 + + + Overview + 概述 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 7 + apps/client/src/app/components/header/header.component.html + 28 - - - Name - 名称 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 34 + apps/client/src/app/components/header/header.component.html + 244 + + + Portfolio + 文件夹 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 38 + apps/client/src/app/components/header/header.component.html + 41 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 226 + apps/client/src/app/components/header/header.component.html + 254 + + + Admin Control + 管理控制 - apps/client/src/app/components/admin-platform/admin-platform.component.html - 30 + apps/client/src/app/components/header/header.component.html + 67 - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + apps/client/src/app/components/header/header.component.html + 278 + + + Me + - apps/client/src/app/components/admin-tag/admin-tag.component.html - 30 + apps/client/src/app/components/header/header.component.html + 211 + + + User + 用户 - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + apps/client/src/app/components/header/header.component.html + 230 + + + My Ghostfolio + 我的 Ghostfolio - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 15 + apps/client/src/app/components/header/header.component.html + 269 + + + About Ghostfolio + 关于 Ghostfolio - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + apps/client/src/app/components/header/header.component.html + 309 - libs/ui/src/lib/activities-table/activities-table.component.html - 137 + apps/client/src/app/pages/about/overview/about-overview-page.html + 5 + + + Sign in + 登入 - libs/ui/src/lib/holdings-table/holdings-table.component.html - 28 + apps/client/src/app/components/header/header.component.html + 399 - libs/ui/src/lib/top-holdings/top-holdings.component.html - 11 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 71 - - Total - 全部的 + + Get started + 开始使用 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 45 + apps/client/src/app/components/header/header.component.html + 411 - - Currency - 货币 + + Sign in + 登入 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 55 + apps/client/src/app/app-routing.module.ts + 141 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 130 + apps/client/src/app/components/header/header.component.ts + 229 + + + Oops! Incorrect Security Token. + 哎呀!安全令牌不正确。 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 233 + apps/client/src/app/components/header/header.component.ts + 243 - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 25 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 154 + + + Manage Activities + 管理活动 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + apps/client/src/app/components/home-holdings/home-holdings.html + 32 + + + Fear + 恐惧 - libs/ui/src/lib/activities-table/activities-table.component.html - 275 + apps/client/src/app/components/home-market/home-market.component.ts + 25 - - - Value - 价值 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 152 + libs/ui/src/lib/i18n.ts + 71 + + + Greed + 贪婪 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 187 + apps/client/src/app/components/home-market/home-market.component.ts + 26 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + libs/ui/src/lib/i18n.ts + 72 + + + Last Days + 最后的 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + apps/client/src/app/components/home-market/home-market.html + 6 + + + Welcome to Ghostfolio + 欢迎来到Ghostfolio - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + apps/client/src/app/components/home-overview/home-overview.html + 7 + + + Ready to take control of your personal finances? + 准备好掌控您的个人财务了吗? - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + apps/client/src/app/components/home-overview/home-overview.html + 8 + + + Setup your accounts + 设置您的帐户 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + apps/client/src/app/components/home-overview/home-overview.html + 15 + + + Get a comprehensive financial overview by adding your bank and brokerage accounts. + 通过添加您的银行和经纪账户来获取全面的财务概览。 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + Capture your activities + 记录你的活动 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + apps/client/src/app/components/home-overview/home-overview.html + 24 + + + Record your investment activities to keep your portfolio up to date. + 记录您的投资活动以使您的投资组合保持最新状态。 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + Monitor and analyze your portfolio + 监控和分析您的投资组合 - libs/ui/src/lib/account-balances/account-balances.component.html - 34 + apps/client/src/app/components/home-overview/home-overview.html + 33 + + + Track your progress in real-time with comprehensive analysis and insights. + 通过全面的分析和见解实时跟踪您的进度。 - libs/ui/src/lib/activities-table/activities-table.component.html - 256 + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + Setup accounts + 设置帐户 - libs/ui/src/lib/activities-table/activities-table.component.html - 292 + apps/client/src/app/components/home-overview/home-overview.html + 48 + + + Add activity + 添加活动 - libs/ui/src/lib/holdings-table/holdings-table.component.html - 74 + apps/client/src/app/components/home-overview/home-overview.html + 56 - libs/ui/src/lib/top-holdings/top-holdings.component.html - 25 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 8 - - Edit - 编辑 + + Summary + 概括 - apps/client/src/app/components/accounts-table/accounts-table.component.html - 254 + apps/client/src/app/components/home-summary/home-summary.html + 2 + + + Total Amount + 总金额 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + apps/client/src/app/components/investment-chart/investment-chart.component.ts + 142 + + + Savings Rate + 储蓄率 - apps/client/src/app/components/admin-overview/admin-overview.html - 80 + apps/client/src/app/components/investment-chart/investment-chart.component.ts + 214 + + + Security Token + 安全令牌 - apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 11 - apps/client/src/app/components/admin-tag/admin-tag.component.html - 71 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 250 - libs/ui/src/lib/activities-table/activities-table.component.html - 429 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 10 - - Delete - 删除 - - apps/client/src/app/components/accounts-table/accounts-table.component.html - 264 - + + or + - apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 31 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 62 + apps/client/src/app/pages/landing/landing-page.html + 423 - apps/client/src/app/components/admin-overview/admin-overview.html - 90 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 99 - apps/client/src/app/components/admin-overview/admin-overview.html - 199 + apps/client/src/app/pages/register/register-page.html + 29 - apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + apps/client/src/app/pages/webauthn/webauthn-page.html + 29 + + + Sign in with Internet Identity + 使用互联网身份登录 - apps/client/src/app/components/admin-tag/admin-tag.component.html - 81 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 42 + + + Sign in with Google + 使用 Google 登录 - libs/ui/src/lib/account-balances/account-balances.component.html - 80 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 52 + + + Stay signed in + 保持登录 - libs/ui/src/lib/activities-table/activities-table.component.html - 455 + apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html + 61 - - Do you really want to delete this account? - 您真的要删除该帐户吗? + + Time in Market + 上市时间 - apps/client/src/app/components/accounts-table/accounts-table.component.ts - 101 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 3 - - Asset Profile - 资产概况 + + Buy + - apps/client/src/app/components/admin-jobs/admin-jobs.html + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 31 - - Historical Market Data - 历史市场数据 + + Sell + - apps/client/src/app/components/admin-jobs/admin-jobs.html - 37 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 43 - - Symbol - 符号 - - apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 - + + Investment + 投资 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 24 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 165 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 115 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 58 + + + Absolute Gross Performance + 绝对总业绩 - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 70 + + + Gross Performance + 总表现 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 301 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 85 - - Data Source - 数据源 + + Fees + 费用 - apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 199 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 108 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 125 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 161 + + + Absolute Net Performance + 绝对净绩效 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 126 - - Attempts - 尝试 + + Net Performance + 净绩效 - apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 141 - - Created - 创建 + + Total Assets + 总资产 - apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 167 - - Finished - 完成的 + + Valuables + 贵重物品 - apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 180 - - Status - 状况 + + Emergency Fund + 应急基金 - apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 192 - - - Delete Jobs - 删除作业 - apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + apps/client/src/app/pages/features/features-page.html + 89 - - - View Data - 查看数据 - apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 122 - - View Stacktrace - 查看堆栈跟踪 + + Cash + 现金 - apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 226 - - Delete Job - 删除作业 + + Assets + 资产 - apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 239 - - Details for - 详细信息 + + Buying Power + 购买力 - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 2 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 252 - - Date - 日期 + + Excluded from Analysis + 从分析中排除 - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 6 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 264 + + + Liabilities + 负债 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 279 - libs/ui/src/lib/account-balances/account-balances.component.html - 12 + apps/client/src/app/pages/features/features-page.html + 102 + + + Net Worth + 净值 - libs/ui/src/lib/activities-table/activities-table.component.html - 169 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 297 - - Market Price - 市场价 + + Annualized Performance + 年化业绩 - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 26 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 309 + + + Interest + 利息 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 112 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 331 - - Cancel - 取消 + + Dividend + 股息 - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 46 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 177 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 376 + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 343 - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + apps/client/src/app/pages/features/features-page.html + 63 - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 192 - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 255 + + + Please enter the amount of your emergency fund: + 请输入您的应急基金金额: - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts 58 + + + Change + 修改 - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 103 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 63 - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + + + Average Unit Price + 平均单价 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 101 + + + Minimum Price + 最低价格 - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 38 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 128 - - Save - 保存 - - apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html - 48 - + + Maximum Price + 最高价格 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 383 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 144 + + + Quantity + 数量 - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 154 - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 179 - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + libs/ui/src/lib/activities-table/activities-table.component.html + 185 + + + Report Data Glitch + 报告数据故障 - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 65 + apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html + 395 + + + Are you an ambitious investor who needs the full picture? + 您是一位雄心勃勃、需要全面了解的投资者吗? - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 110 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 12 + + + Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: + 立即升级至 Ghostfolio Premium 并获得独家功能,以增强您的投资体验: - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 15 - - Currencies - 货币 + + Portfolio Summary + 投资组合摘要 - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 73 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 22 - - - ETFs without Countries - 没有国家的 ETF - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 78 + apps/client/src/app/pages/pricing/pricing-page.html + 55 - - - ETFs without Sectors - 无行业类别的 ETF - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 83 + apps/client/src/app/pages/pricing/pricing-page.html + 199 - - Do you really want to delete this asset profile? - 您确实要删除此资产配置文件吗? + + Portfolio Allocations + 投资组合分配 - apps/client/src/app/components/admin-market-data/admin-market-data.service.ts - 13 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 26 - - - Filter by... - 过滤... - apps/client/src/app/components/admin-market-data/admin-market-data.component.ts - 282 + apps/client/src/app/pages/features/features-page.html + 160 - - - Asset Class - 资产类别 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + apps/client/src/app/pages/pricing/pricing-page.html + 59 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 159 + apps/client/src/app/pages/pricing/pricing-page.html + 203 + + + Performance Benchmarks + 性能基准 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 243 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 30 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 228 + apps/client/src/app/pages/pricing/pricing-page.html + 63 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + apps/client/src/app/pages/pricing/pricing-page.html + 207 - - Asset Sub Class - 资产子类别 + + FIRE Calculator + 财务自由计算器 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 34 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 168 + apps/client/src/app/pages/pricing/pricing-page.html + 67 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 256 + apps/client/src/app/pages/pricing/pricing-page.html + 211 + + + Professional Data Provider + 专业数据提供商 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 237 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 38 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + apps/client/src/app/pages/pricing/pricing-page.html + 226 - - First Activity - 第一个活动 + + and more Features... + 以及更多功能... - apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 42 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 141 + apps/client/src/app/pages/pricing/pricing-page.html + 83 - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 209 + apps/client/src/app/pages/pricing/pricing-page.html + 231 + + + Get the tools to effectively manage your finances and refine your personal investment strategy. + 获取有效管理财务和完善个人投资策略的工具。 - libs/ui/src/lib/holdings-table/holdings-table.component.html - 50 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 45 - - Activities Count - 活动计数 + + Skip + 跳过 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 52 - - Historical Data - 历史数据 + + Upgrade Plan + 升级计划 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + apps/client/src/app/components/header/header.component.html + 182 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 82 + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 59 - - - Sectors Count - 行业数 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 20 - - - Countries Count - 国家数 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + apps/client/src/app/pages/pricing/pricing-page.html + 268 - - Gather Recent Data - 收集最近的数据 + + Today + 今天 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + apps/client/src/app/components/toggle/toggle.component.ts + 22 - - - Gather All Data - 收集所有数据 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + libs/ui/src/lib/assistant/assistant.component.ts + 215 - - Gather Profile Data - 收集个人资料数据 + + YTD + 年初至今 - apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + apps/client/src/app/components/toggle/toggle.component.ts + 23 - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 45 + libs/ui/src/lib/assistant/assistant.component.ts + 225 - - Oops! Could not parse historical data. - 哎呀!无法解析历史数据。 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts - 232 - - - - Refresh - 刷新 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 22 - - - - Gather Historical Data - 收集历史数据 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 32 - - - - Import - 导入 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 108 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 - - - - Sector - 行业 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 185 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 254 - - - - Country - 国家 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 196 - - - apps/client/src/app/components/admin-users/admin-users.html - 77 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 264 - - - - Sectors - 行业 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 202 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 327 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 270 - - - apps/client/src/app/pages/public/public-page.html - 45 - - - - Countries - 国家 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 212 - - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 338 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 282 - - - - Benchmark - 基准 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 284 - - - - Symbol Mapping - 符号映射 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 290 - - - - Scraper Configuration - 刮削配置 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 302 - - - - Note - 笔记 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 363 - - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 78 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 - - - - Add Asset Profile - 添加资产概况 - - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 7 - - - - Search - 搜索 + + 1Y + 1年 - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 16 + apps/client/src/app/components/toggle/toggle.component.ts + 24 - - - Add Manually - 手动添加 - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 19 + libs/ui/src/lib/assistant/assistant.component.ts + 229 - - Name, symbol or ISIN - 名称、符号或 ISIN + + 5Y + 5年 - apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + apps/client/src/app/components/toggle/toggle.component.ts 25 - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 - - - - Please add a currency: - 请添加货币: - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 122 - - - - is an invalid currency! - 是无效的货币! - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 129 - - - - Do you really want to delete this coupon? - 您确实要删除此优惠券吗? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 140 - - - - Do you really want to delete this currency? - 您真的要删除该货币吗? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 153 - - - - Do you really want to delete this system message? - 您真的要删除这条系统消息吗? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 166 - - - - Do you really want to flush the cache? - 您真的要刷新缓存吗? - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 183 - - - - Please set your system message: - 请设置您的系统消息: - - apps/client/src/app/components/admin-overview/admin-overview.component.ts - 214 - - - - Version - 版本 - - apps/client/src/app/components/admin-overview/admin-overview.html - 7 - - - - User Count - 用户数 - - apps/client/src/app/components/admin-overview/admin-overview.html - 13 + libs/ui/src/lib/assistant/assistant.component.ts + 250 - - Activity Count - 活动计数 - - apps/client/src/app/components/admin-overview/admin-overview.html - 23 - - - - per User - 每位用户 - - apps/client/src/app/components/admin-overview/admin-overview.html - 32 - - - - Exchange Rates - 汇率 - - apps/client/src/app/components/admin-overview/admin-overview.html - 37 - - - - Add Currency - 添加货币 - - apps/client/src/app/components/admin-overview/admin-overview.html - 104 - - - - User Signup - 用户注册 - - apps/client/src/app/components/admin-overview/admin-overview.html - 110 - - - - Read-only Mode - 只读模式 - - apps/client/src/app/components/admin-overview/admin-overview.html - 123 - - - - System Message - 系统信息 - - apps/client/src/app/components/admin-overview/admin-overview.html - 145 - - - - Set Message - 设置留言 - - apps/client/src/app/components/admin-overview/admin-overview.html - 165 - - - - Coupons - 优惠券 - - apps/client/src/app/components/admin-overview/admin-overview.html - 173 - - - - Add - 添加 - - apps/client/src/app/components/admin-overview/admin-overview.html - 231 - - - libs/ui/src/lib/account-balances/account-balances.component.html - 93 - - - - Housekeeping - 家政 - - apps/client/src/app/components/admin-overview/admin-overview.html - 238 - - - - Flush Cache - 刷新缓存 - - apps/client/src/app/components/admin-overview/admin-overview.html - 242 - - - - Add Platform - 添加平台 - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 11 - - - - Url - 网址 - - apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html - 350 - - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 - - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 - - - - Accounts - 帐户 - - apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 - - - apps/client/src/app/components/admin-users/admin-users.html - 113 - - - apps/client/src/app/components/header/header.component.html - 54 - - - apps/client/src/app/components/header/header.component.html - 262 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 357 - - - apps/client/src/app/pages/accounts/accounts-page.html - 4 - - - libs/ui/src/lib/assistant/assistant.html - 107 - - - - Do you really want to delete this platform? - 您真的要删除这个平台吗? - - apps/client/src/app/components/admin-platform/admin-platform.component.ts - 79 - - - - Update platform - 更新平台 - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 - - - - Add platform - 添加平台 - - apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 - - - - Platforms - 平台 - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 4 - - - - Tags - 标签 - - apps/client/src/app/components/admin-settings/admin-settings.component.html - 10 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 377 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 - - - libs/ui/src/lib/assistant/assistant.html - 127 - - - - Add Tag - 添加标签 - - apps/client/src/app/components/admin-tag/admin-tag.component.html - 11 - - - - Do you really want to delete this tag? - 您真的要删除此标签吗? - - apps/client/src/app/components/admin-tag/admin-tag.component.ts - 79 - - - - Update tag - 更新标签 - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 - - - - Add tag - 添加标签 - - apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 - - - - Do you really want to delete this user? - 您真的要删除该用户吗? - - apps/client/src/app/components/admin-users/admin-users.component.ts - 113 - - - - User - 用户 - - apps/client/src/app/components/admin-users/admin-users.html - 29 - - - - Registration - 注册 - - apps/client/src/app/components/admin-users/admin-users.html - 96 - - - - Engagement per Day - 每天的参与度 - - apps/client/src/app/components/admin-users/admin-users.html - 158 - - - - Last Request - 最后请求 - - apps/client/src/app/components/admin-users/admin-users.html - 183 - - - - Impersonate User - 模拟用户 - - apps/client/src/app/components/admin-users/admin-users.html - 222 - - - - Delete User - 删除用户 - - apps/client/src/app/components/admin-users/admin-users.html - 232 - - - - Performance - 表现 - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 6 - - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 89 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 142 - - - - Compare with... - 与之比较... - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 - - - - Manage Benchmarks - 管理基准 - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 - - - - Portfolio - 文件夹 - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 116 - - - apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts - 41 - - - - Benchmark - 基准 - - apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts - 128 - - - - Current Market Mood - 当前市场情绪 - - apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html - 12 - - - - Overview - 概述 - - apps/client/src/app/components/header/header.component.html - 28 - - - apps/client/src/app/components/header/header.component.html - 244 - - - - Portfolio - 文件夹 - - apps/client/src/app/components/header/header.component.html - 41 - - - apps/client/src/app/components/header/header.component.html - 254 - - - - Admin Control - 管理控制 - - apps/client/src/app/components/header/header.component.html - 67 - - - apps/client/src/app/components/header/header.component.html - 278 - - - - Me - - - apps/client/src/app/components/header/header.component.html - 211 - - - - User - 用户 - - apps/client/src/app/components/header/header.component.html - 230 - - - - My Ghostfolio - 我的 Ghostfolio - - apps/client/src/app/components/header/header.component.html - 269 - - - - About Ghostfolio - 关于 Ghostfolio - - apps/client/src/app/components/header/header.component.html - 309 - - - apps/client/src/app/pages/about/overview/about-overview-page.html - 5 - - - - Sign in - 登入 - - apps/client/src/app/components/header/header.component.html - 399 - - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 71 - - - - Get started - 开始使用 - - apps/client/src/app/components/header/header.component.html - 411 - - - - Sign in - 登入 - - apps/client/src/app/app-routing.module.ts - 141 - - - apps/client/src/app/components/header/header.component.ts - 229 - - - - Oops! Incorrect Security Token. - 哎呀!安全令牌不正确。 - - apps/client/src/app/components/header/header.component.ts - 243 - - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 154 - - - - Manage Activities - 管理活动 - - apps/client/src/app/components/home-holdings/home-holdings.html - 32 - - - - Fear - 恐惧 - - apps/client/src/app/components/home-market/home-market.component.ts - 25 - - - libs/ui/src/lib/i18n.ts - 71 - - - - Greed - 贪婪 - - apps/client/src/app/components/home-market/home-market.component.ts - 26 - - - libs/ui/src/lib/i18n.ts - 72 - - - - Last Days - 最后的 - - apps/client/src/app/components/home-market/home-market.html - 6 - - - - Welcome to Ghostfolio - 欢迎来到Ghostfolio - - apps/client/src/app/components/home-overview/home-overview.html - 7 - - - - Ready to take control of your personal finances? - 准备好掌控您的个人财务了吗? - - apps/client/src/app/components/home-overview/home-overview.html - 8 - - - - Setup your accounts - 设置您的帐户 - - apps/client/src/app/components/home-overview/home-overview.html - 15 - - - - Get a comprehensive financial overview by adding your bank and brokerage accounts. - 通过添加您的银行和经纪账户来获取全面的财务概览。 - - apps/client/src/app/components/home-overview/home-overview.html - 17 - - - - Capture your activities - 记录你的活动 - - apps/client/src/app/components/home-overview/home-overview.html - 24 - - - - Record your investment activities to keep your portfolio up to date. - 记录您的投资活动以使您的投资组合保持最新状态。 - - apps/client/src/app/components/home-overview/home-overview.html - 26 - - - - Monitor and analyze your portfolio - 监控和分析您的投资组合 - - apps/client/src/app/components/home-overview/home-overview.html - 33 - - - - Track your progress in real-time with comprehensive analysis and insights. - 通过全面的分析和见解实时跟踪您的进度。 - - apps/client/src/app/components/home-overview/home-overview.html - 35 - - - - Setup accounts - 设置帐户 - - apps/client/src/app/components/home-overview/home-overview.html - 48 - - - - Add activity - 添加活动 - - apps/client/src/app/components/home-overview/home-overview.html - 56 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 - - - - This feature requires a subscription. - 此功能需要订阅。 - - apps/client/src/app/components/home-summary/home-summary.component.ts - 113 - - - apps/client/src/app/core/http-response.interceptor.ts - 69 - - - - Upgrade Plan - 升级计划 - - apps/client/src/app/components/home-summary/home-summary.component.ts - 115 - - - apps/client/src/app/core/http-response.interceptor.ts - 72 - - - - Summary - 概括 - - apps/client/src/app/components/home-summary/home-summary.html - 2 - - - - Total Amount - 总金额 - - apps/client/src/app/components/investment-chart/investment-chart.component.ts - 142 - - - - Savings Rate - 储蓄率 - - apps/client/src/app/components/investment-chart/investment-chart.component.ts - 214 - - - - Security Token - 安全令牌 - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 11 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 - - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 10 - - - - or - - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 31 - - - apps/client/src/app/pages/landing/landing-page.html - 423 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 - - - apps/client/src/app/pages/register/register-page.html - 29 - - - apps/client/src/app/pages/webauthn/webauthn-page.html - 29 - - - - Sign in with Internet Identity - 使用互联网身份登录 - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 42 - - - - Sign in with Google - 使用 Google 登录 - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 52 - - - - Stay signed in - 保持登录 - - apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html - 61 - - - - Time in Market - 上市时间 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 3 - - - - Buy - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 31 - - - - Sell - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 43 - - - - Investment - 投资 - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 165 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 58 - - - - Absolute Gross Performance - 绝对总业绩 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 70 - - - - Gross Performance - 总表现 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 85 - - - - Fees - 费用 - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 199 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 108 - - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 - - - - Absolute Net Performance - 绝对净绩效 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 124 - - - - Net Performance - 净绩效 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 139 - - - - Total Assets - 总资产 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 165 - - - - Valuables - 贵重物品 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 178 - - - - Emergency Fund - 应急基金 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 190 - - - apps/client/src/app/pages/features/features-page.html - 89 - - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 122 - - - - Cash - 现金 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 211 - - - - Assets - 资产 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 224 - - - - Buying Power - 购买力 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 237 - - - - Excluded from Analysis - 从分析中排除 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 249 - - - - Liabilities - 负债 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 264 - - - apps/client/src/app/pages/features/features-page.html - 102 - - - - Net Worth - 净值 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 284 - - - - Annualized Performance - 年化业绩 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 296 - - - - Interest - 利息 - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 318 - - - - Dividend - 股息 - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 177 - - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html - 330 - - - apps/client/src/app/pages/features/features-page.html - 63 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 - - - - Please enter the amount of your emergency fund: - 请输入您的应急基金金额: - - apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts - 57 - - - - Change - 修改 - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 63 - - - libs/ui/src/lib/holdings-table/holdings-table.component.html - 119 - - - - Average Unit Price - 平均单价 - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 101 - - - - Minimum Price - 最低价格 - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 128 - - - - Maximum Price - 最高价格 - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 144 - - - - Quantity - 数量 - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 154 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 185 - - - - Report Data Glitch - 报告数据故障 - - apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html - 395 - - - - Are you an ambitious investor who needs the full picture? - 您是一位雄心勃勃、需要全面了解的投资者吗? - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 12 - - - - Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: - 立即升级至 Ghostfolio Premium 并获得独家功能,以增强您的投资体验: - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 15 - - - - Portfolio Summary - 投资组合摘要 - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 22 - - - apps/client/src/app/pages/pricing/pricing-page.html - 55 - - - apps/client/src/app/pages/pricing/pricing-page.html - 199 - - - - Portfolio Allocations - 投资组合分配 - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 26 - - - apps/client/src/app/pages/features/features-page.html - 160 - - - apps/client/src/app/pages/pricing/pricing-page.html - 59 - - - apps/client/src/app/pages/pricing/pricing-page.html - 203 - - - - Performance Benchmarks - 性能基准 - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 30 - - - apps/client/src/app/pages/pricing/pricing-page.html - 63 - - - apps/client/src/app/pages/pricing/pricing-page.html - 207 - - - - FIRE Calculator - 财务自由计算器 - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 34 - - - apps/client/src/app/pages/pricing/pricing-page.html - 67 - - - apps/client/src/app/pages/pricing/pricing-page.html - 211 - - - - Professional Data Provider - 专业数据提供商 - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 38 - - - apps/client/src/app/pages/pricing/pricing-page.html - 226 - - - - and more Features... - 以及更多功能... - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 42 - - - apps/client/src/app/pages/pricing/pricing-page.html - 83 - - - apps/client/src/app/pages/pricing/pricing-page.html - 231 - - - - Get the tools to effectively manage your finances and refine your personal investment strategy. - 获取有效管理财务和完善个人投资策略的工具。 - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 45 - - - - Skip - 跳过 - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 52 - - - - Upgrade Plan - 升级计划 - - apps/client/src/app/components/header/header.component.html - 182 - - - apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html - 59 - - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 - - - apps/client/src/app/pages/pricing/pricing-page.html - 268 - - - - Today - 今天 - - apps/client/src/app/components/toggle/toggle.component.ts - 22 - - - libs/ui/src/lib/assistant/assistant.component.ts - 215 - - - - YTD - 年初至今 - - apps/client/src/app/components/toggle/toggle.component.ts - 23 - - - libs/ui/src/lib/assistant/assistant.component.ts - 225 - - - - 1Y - 1年 - - apps/client/src/app/components/toggle/toggle.component.ts - 24 - - - libs/ui/src/lib/assistant/assistant.component.ts - 229 - - - - 5Y - 5年 - - apps/client/src/app/components/toggle/toggle.component.ts - 25 - - - libs/ui/src/lib/assistant/assistant.component.ts - 250 - - - - Max - 最大限度 - - apps/client/src/app/components/toggle/toggle.component.ts - 26 - - - libs/ui/src/lib/assistant/assistant.component.ts - 253 - - - - Grant access - 授予访问权限 - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 7 - - - - Public - 公开 - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 25 - - - - Granted Access - 授予访问权限 - - apps/client/src/app/components/user-account-access/user-account-access.html - 5 - - - - Please enter your coupon code: - 请输入您的优惠券代码: - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 111 - - - - Could not redeem coupon code - 无法兑换优惠券代码 - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 121 - - - - Coupon code has been redeemed - 优惠券代码已兑换 - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 133 - - - - Reload - 重新加载 - - apps/client/src/app/components/user-account-membership/user-account-membership.component.ts - 134 - - - - per year - 每年 - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 - - - apps/client/src/app/pages/pricing/pricing-page.html - 254 - - - - Try Premium - 尝试高级版 - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 - - - - Redeem Coupon - 兑换优惠券 - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 - - - - Auto - 自动 - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 35 - - - - Do you really want to remove this sign in method? - 您确实要删除此登录方法吗? - - apps/client/src/app/components/user-account-settings/user-account-settings.component.ts - 230 - - - - Settings - 设置 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 2 - - - - Presenter View - 演示者视图 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 7 - - - - Protection for sensitive information like absolute performances and quantity values - 保护绝对性能和数量值等敏感信息 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 8 - - - - Base Currency - 基础货币 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 27 - - - - Language - 语言 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 - - - - Locale - 语言环境 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 - - - - Date and number format - 日期和数字格式 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 - - - - Appearance - 外貌 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 - - - - Auto - 自动 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 - - - - Light - 明亮 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 - - - - Dark - 黑暗 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 - - - - Zen Mode - 极简模式 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 - - - apps/client/src/app/pages/features/features-page.html - 190 - - - - Distraction-free experience for turbulent times - 动荡时期的无干扰体验 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 - - - - Biometric Authentication - 生物识别认证 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 - - - - Sign in with fingerprint - 使用指纹登录 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 - - - - Experimental Features - 实验性功能 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 - - - - Sneak peek at upcoming functionality - 预览即将推出的功能 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 - - - - User ID - 用户身份 - - apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html - 45 - - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 - - - - Export Data - 导出数据 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 - - - - This feature is currently unavailable. - 此功能目前无法使用。 - - apps/client/src/app/core/http-response.interceptor.ts - 60 - - - - Please try again later. - 请稍后再试。 - - apps/client/src/app/core/http-response.interceptor.ts - 62 - - - apps/client/src/app/core/http-response.interceptor.ts - 91 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 138 - - - - Oops! Something went wrong. - 哎呀!出了些问题。 - - apps/client/src/app/core/http-response.interceptor.ts - 89 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 136 - - - - Okay - 好的 - - apps/client/src/app/core/http-response.interceptor.ts - 92 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 139 - - - - About - 关于 - - apps/client/src/app/pages/about/about-page-routing.module.ts - 51 - - - apps/client/src/app/pages/about/about-page.component.ts - 44 - - - apps/client/src/app/pages/about/overview/about-overview-page-routing.module.ts - 13 - - - - Changelog - 更新日志 - - apps/client/src/app/pages/about/about-page.component.ts - 49 - - - apps/client/src/app/pages/about/changelog/changelog-page-routing.module.ts - 13 - - - - License - 许可 - - apps/client/src/app/pages/about/about-page.component.ts - 54 - - - apps/client/src/app/pages/about/license/license-page-routing.module.ts - 13 - - - - Privacy Policy - 隐私政策 - - apps/client/src/app/pages/about/about-page.component.ts - 62 - - - apps/client/src/app/pages/about/privacy-policy/privacy-policy-page-routing.module.ts - 13 - - - - Our - 我们的 - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 6 - - - - Discover other exciting Open Source Software projects - 发现其他令人兴奋的开源软件项目 - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 9 - - - - Visit - 访问 - - apps/client/src/app/pages/about/oss-friends/oss-friends-page.html - 28 - - - - Accounts - 账户 - - apps/client/src/app/pages/accounts/accounts-page-routing.module.ts - 13 - - - - Oops, cash balance transfer has failed. - 糟糕,现金余额转账失败。 - - apps/client/src/app/pages/accounts/accounts-page.component.ts - 304 - - - - Update account - 更新账户 - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 8 - - - - Add account - 新增帐户 - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 10 - - - - Account ID - 帐户ID - - apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html - 96 - - - - From - - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 11 - - - - To - - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 - - - - Transfer - 转移 - - apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 - - - - Admin Control - 管理控制 - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 20 - - - - Market Data - 市场数据 - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 30 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 37 - - - - Settings - 设置 - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 35 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 32 - - - apps/client/src/app/pages/user-account/user-account-page-routing.module.ts - 18 - - - apps/client/src/app/pages/user-account/user-account-page.component.ts - 35 - - - - Users - 用户 - - apps/client/src/app/pages/admin/admin-page-routing.module.ts - 40 - - - apps/client/src/app/pages/admin/admin-page.component.ts - 47 - - - - Overview - 概述 - - apps/client/src/app/pages/admin/admin-page.component.ts - 27 - - - apps/client/src/app/pages/home/home-page.component.ts - 37 - - - apps/client/src/app/pages/zen/zen-page-routing.module.ts - 19 - - - apps/client/src/app/pages/zen/zen-page.component.ts - 34 - - - - Blog - 博客 - - apps/client/src/app/pages/blog/blog-page-routing.module.ts - 13 - - - - Discover the latest Ghostfolio updates and insights on personal finance - 了解最新的 Ghostfolio 更新和个人理财见解 - - apps/client/src/app/pages/blog/blog-page.html - 7 - - - - As you are already logged in, you cannot access the demo account. - 由于您已经登录,因此无法访问模拟帐户。 - - apps/client/src/app/pages/demo/demo-page.component.ts - 35 - - - - Frequently Asked Questions (FAQ) - 常见问题 (FAQ) - - apps/client/src/app/pages/faq/faq-page-routing.module.ts - 34 - - - apps/client/src/app/pages/faq/overview/faq-overview-page-routing.module.ts - 13 - - - - Frequently Asked Questions (FAQ) - 常见问题 (FAQ) - - apps/client/src/app/pages/faq/overview/faq-overview-page.html - 4 - - - apps/client/src/app/pages/faq/saas/saas-page.html - 4 - - - apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html - 4 - - - - Features - 功能 - - apps/client/src/app/app-routing.module.ts - 65 - - - - Check out the numerous features of Ghostfolio to manage your wealth - 查看 Ghostfolio 的众多功能来管理您的财富 - - apps/client/src/app/pages/features/features-page.html - 6 - - - - Stocks - 股票 - - apps/client/src/app/pages/features/features-page.html - 15 - - - - ETFs - ETF - - apps/client/src/app/pages/features/features-page.html - 25 - - - - Bonds - 债券 - - apps/client/src/app/pages/features/features-page.html - 38 - - - - Cryptocurrencies - 加密货币 - - apps/client/src/app/pages/features/features-page.html - 51 - - - - Wealth Items - 财富项目 - - apps/client/src/app/pages/features/features-page.html - 76 - - - - Import and Export - 导入和导出 - - apps/client/src/app/pages/features/features-page.html - 115 - - - - Multi-Accounts - 多账户 - - apps/client/src/app/pages/features/features-page.html - 127 - - - - Portfolio Calculations - 投资组合计算 - - apps/client/src/app/pages/features/features-page.html - 141 - - - - Dark Mode - 深色模式 - - apps/client/src/app/pages/features/features-page.html - 177 - - - - Market Mood - 市场情绪 - - apps/client/src/app/pages/features/features-page.html - 205 - - - - Static Analysis - 静态分析 - - apps/client/src/app/pages/features/features-page.html - 224 - - - - Multi-Language - 多语言 - - apps/client/src/app/pages/features/features-page.html - 241 - - - - Open Source Software - 开源软件 - - apps/client/src/app/pages/features/features-page.html - 275 - - - - Get Started - 立即开始 - - apps/client/src/app/pages/features/features-page.html - 300 - - - apps/client/src/app/pages/public/public-page.html - 153 - - - - Holdings - 控股 - - apps/client/src/app/pages/home/home-page-routing.module.ts - 23 - - - apps/client/src/app/pages/home/home-page-routing.module.ts - 28 - - - apps/client/src/app/pages/home/home-page.component.ts - 42 - - - apps/client/src/app/pages/zen/zen-page.component.ts - 39 - - - - Summary - 概括 - - apps/client/src/app/pages/home/home-page-routing.module.ts - 33 - - - apps/client/src/app/pages/home/home-page.component.ts - 47 - - - - Markets - 市场 - - apps/client/src/app/pages/home/home-page-routing.module.ts - 38 - - - apps/client/src/app/pages/home/home-page.component.ts - 52 - - - apps/client/src/app/pages/markets/markets-page-routing.module.ts - 13 - - - - Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio 是一个个人财务仪表板,用于跨多个平台跟踪您的净资产,包括现金、股票、ETF 和加密货币。 - - apps/client/src/app/pages/i18n/i18n-page.html - 4 - - - - app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 - 应用程序、资产、加密货币、仪表板、etf、财务、管理、绩效、投资组合、软件、股票、交易、财富、web3 - - apps/client/src/app/pages/i18n/i18n-page.html - 9 - - - - Open Source Wealth Management Software - 开源财富管理软件 - - apps/client/src/app/pages/i18n/i18n-page.html - 14 - - - - Manage your wealth like a boss - 像老板一样管理您的财富 - - apps/client/src/app/pages/landing/landing-page.html - 5 - - - - 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 是一个隐私优先、开源的个人财务仪表板。分解您的资产配置,了解您的净资产并做出可靠的、数据驱动的投资决策。 - - apps/client/src/app/pages/landing/landing-page.html - 9 - - - - Get Started - 开始使用 - - apps/client/src/app/pages/landing/landing-page.html - 41 - - - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - - - apps/client/src/app/pages/landing/landing-page.html - 46 - - - - Live Demo - 现场演示 - - apps/client/src/app/pages/landing/landing-page.html - 49 - - - apps/client/src/app/pages/landing/landing-page.html - 424 - - - - Monthly Active Users - 每月活跃用户数 - - apps/client/src/app/pages/landing/landing-page.html - 69 - - - - Stars on GitHub - GitHub 上的星星 - - apps/client/src/app/pages/landing/landing-page.html - 87 - - - apps/client/src/app/pages/open/open-page.html - 103 - - - - Pulls on Docker Hub - 拉动 Docker Hub - - apps/client/src/app/pages/landing/landing-page.html - 105 - - - apps/client/src/app/pages/open/open-page.html - 117 - - - - As seen in - 如图所示 - - apps/client/src/app/pages/landing/landing-page.html - 113 - - - - Protect your assets. Refine your personal investment strategy. - 保护你的资产。完善你的个人投资策略 - - apps/client/src/app/pages/landing/landing-page.html - 215 - - - - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio 使忙碌的人们能够在不被追踪的情况下跟踪股票、ETF 或加密货币。 - - apps/client/src/app/pages/landing/landing-page.html - 219 - - - - 360° View - 360° 视角 - - apps/client/src/app/pages/landing/landing-page.html - 230 - - - - Get the full picture of your personal finances across multiple platforms. - 跨多个平台全面了解您的个人财务状况。 - - apps/client/src/app/pages/landing/landing-page.html - 232 - - - - Web3 Ready - Web3 就绪 - - apps/client/src/app/pages/landing/landing-page.html - 241 - - - - Use Ghostfolio anonymously and own your financial data. - 匿名使用 Ghostfolio 并拥有您的财务数据。 - - apps/client/src/app/pages/landing/landing-page.html - 243 - - - - Open Source - 开源 - - apps/client/src/app/pages/landing/landing-page.html - 251 - - - - Benefit from continuous improvements through a strong community. - 通过强大的社区不断改进,从中受益。 - - apps/client/src/app/pages/landing/landing-page.html - 253 - - - - Why Ghostfolio? - 为什么使用Ghostfolio - - apps/client/src/app/pages/landing/landing-page.html - 262 - - - - Ghostfolio is for you if you are... - 如果您符合以下条件,那么 Ghostfolio 适合您... - - apps/client/src/app/pages/landing/landing-page.html - 263 - - - - trading stocks, ETFs or cryptocurrencies on multiple platforms - 在多个平台上交易股票、ETF 或加密货币 - - apps/client/src/app/pages/landing/landing-page.html - 270 - - - - pursuing a buy & hold strategy - 采取买入并持有策略 - - apps/client/src/app/pages/landing/landing-page.html - 276 - - - - interested in getting insights of your portfolio composition - 有兴趣深入了解您的投资组合构成 - - apps/client/src/app/pages/landing/landing-page.html - 281 - - - - valuing privacy and data ownership - 重视隐私和数据所有权 - - apps/client/src/app/pages/landing/landing-page.html - 286 - - - - into minimalism - 进入极简主义 - - apps/client/src/app/pages/landing/landing-page.html - 289 - - - - caring about diversifying your financial resources - 关心您的财务资源多元化 - - apps/client/src/app/pages/landing/landing-page.html - 293 - - - - interested in financial independence - 对财务独立感兴趣 - - apps/client/src/app/pages/landing/landing-page.html - 297 - - - - saying no to spreadsheets in - 对电子表格说不 - - apps/client/src/app/pages/landing/landing-page.html - 301 - - - - still reading this list - 仍在阅读此列表 - - apps/client/src/app/pages/landing/landing-page.html - 304 - - - - Learn more about Ghostfolio - 了解有关 Ghostfolio 的更多信息 - - apps/client/src/app/pages/landing/landing-page.html - 309 - - - - What our users are saying - 我们的什么用户正在说 - - apps/client/src/app/pages/landing/landing-page.html - 317 - - - - Members from around the globe are using Ghostfolio Premium - 来自世界各地的会员正在使用Ghostfolio 高级版 - - apps/client/src/app/pages/landing/landing-page.html - 349 - - - - How does Ghostfolio work? - 如何幽灵作品集工作? - - apps/client/src/app/pages/landing/landing-page.html - 361 - - - - Get started in only 3 steps - 只需 3 步即可开始 - - apps/client/src/app/pages/landing/landing-page.html - 364 - - - - Sign up anonymously* - 匿名注册* - - apps/client/src/app/pages/landing/landing-page.html - 370 - - - - * no e-mail address nor credit card required - * 无需电子邮件地址或信用卡 - - apps/client/src/app/pages/landing/landing-page.html - 372 - - - - Add any of your historical transactions - 添加您的任何历史交易 - - apps/client/src/app/pages/landing/landing-page.html - 383 - - - - Get valuable insights of your portfolio composition - 获取有关您的投资组合构成的宝贵见解 - - apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - 准备好? - - apps/client/src/app/pages/landing/landing-page.html - 407 - - - - Join now or check out the example account - 立即加入或查看示例帐户 - - apps/client/src/app/pages/landing/landing-page.html - 408 - - - - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - 在 Ghostfolio,透明度是我们价值观的核心。我们将源代码发布为开源软件(OSS)下AGPL-3.0许可证我们公开分享平台运营状态的汇总关键指标。 - - apps/client/src/app/pages/open/open-page.html - 6 - - - - (Last 24 hours) - (最近 24 小时) - - apps/client/src/app/pages/open/open-page.html - 37 - - - - Active Users - 活跃用户 - - apps/client/src/app/pages/open/open-page.html - 40 - - - apps/client/src/app/pages/open/open-page.html - 62 - - - - (Last 30 days) - (最近 30 天) - - apps/client/src/app/pages/open/open-page.html - 48 - - - apps/client/src/app/pages/open/open-page.html - 59 - - - - New Users - 新用户 - - apps/client/src/app/pages/open/open-page.html - 51 - - - - Users in Slack community - Slack 社区的用户 - - apps/client/src/app/pages/open/open-page.html - 75 - - - - Contributors on GitHub - GitHub 上的贡献者 - - apps/client/src/app/pages/open/open-page.html - 89 - - - - (Last 90 days) - (过去 90 天) - - apps/client/src/app/pages/open/open-page.html - 127 - - - - Uptime - 正常运行时间 - - apps/client/src/app/pages/open/open-page.html - 132 - - - - Activities - 活动 - - apps/client/src/app/pages/portfolio/activities/activities-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 39 - - - - Do you really want to delete these activities? - 您真的要删除所有活动吗? - - libs/ui/src/lib/activities-table/activities-table.component.ts - 216 - - - - Update activity - 更新活动 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 - - - - Stocks, ETFs, bonds, cryptocurrencies, commodities - 股票、ETF、债券、加密货币、大宗商品 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 - - - - One-time fee, annual account fees - 一次性费用、年度账户费用 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 - - - - Distribution of corporate earnings - 企业盈利分配 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 - - - - Revenue for lending out money - 放贷收入 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 - - - - Mortgages, personal loans, credit cards - 抵押贷款、个人贷款、信用卡 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 - - - - Luxury items, real estate, private companies - 奢侈品、房地产、私营公司 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 - - - - Account - 帐户 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 307 - - - - Update Cash Balance - 更新现金余额 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 - - - - Unit Price - 单价 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 209 - - - - Oops! Could not get the historical exchange rate from - 哎呀!无法从以下来源获取历史汇率 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 - - - - Fee - 费用 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 - - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 - - - libs/ui/src/lib/activities-table/activities-table.component.html - 233 - - - - Oops! Could not get the historical exchange rate from - 哎呀!无法获取历史汇率 - - apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 - - - - Import Activities - 导入活动 - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 44 - - - - Import Dividends - 导入股息 - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 86 - - - - Importing data... - 正在导入数据... - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 120 - - - - Import has been completed - 导入已完成 - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 128 - - - - Validating data... - 验证数据... - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts - 233 - - - - Select Holding - 选择控股 - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 20 - - - - Select File - 选择文件 - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 - - - - Holding - 保持 - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 - - - - Load Dividends - 加载股息 - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 - - - - Choose or drop a file here - 在此处选择或放置文件 - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 - - - - The following file formats are supported: - 支持以下文件格式: - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 - - - - Select Dividends - 选择股息 - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 - - - - Select Activities - 选择活动 - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 - - - - Back - 后退 - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 - - - apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 - - - - Allocations - 分配 - - apps/client/src/app/pages/portfolio/allocations/allocations-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 44 - - - - Allocations - 分配 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 4 - - - - Proportion of Net Worth - 占净资产的比例 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 12 - - - - By Platform - 按平台 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 44 - - - - By Currency - 按货币 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 63 - - - - By Asset Class - 按资产类别 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 86 - - - - By Holding - 通过持有 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 109 - - - - By Sector - 按部门 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 132 - - - - By Continent - 按大陆 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 156 - - - - By Market - 按市场 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 179 - - - - Regions - 区域 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 203 - - - apps/client/src/app/pages/public/public-page.html - 76 - - - - Developed Markets - 发达市场 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 228 - - - apps/client/src/app/pages/public/public-page.html - 93 - - - - Emerging Markets - 新兴市场 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 237 - - - apps/client/src/app/pages/public/public-page.html - 102 - - - - Other Markets - 其他市场 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 246 - - - apps/client/src/app/pages/public/public-page.html - 111 - - - - No data available - 无可用数据 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 258 - - - apps/client/src/app/pages/public/public-page.html - 123 - - - libs/ui/src/lib/top-holdings/top-holdings.component.html - 86 - - - - By Account - 按帐户 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 294 - - - - By ETF Provider - 按 ETF 提供商 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 314 - - - - By Country - 按国家/地区 - - apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 271 - - - - Analysis - 分析 - - apps/client/src/app/pages/portfolio/analysis/analysis-page-routing.module.ts - 13 - - - apps/client/src/app/pages/portfolio/portfolio-page.component.ts - 34 - - - - Dividend - 股息 - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 38 - - - libs/ui/src/lib/i18n.ts - 32 - - - - Deposit - 订金 - - libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 357 - - - - Monthly - 每月 - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 50 - - - - Yearly - 每年 - - apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts - 51 - - - - Analysis - 分析 - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 2 - - - - Top - 顶部 - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 - - - - Bottom - 底部 - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 - - - - Portfolio Evolution - 投资组合演变 - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 - - - - Investment Timeline - 投资时间表 - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 - - - - Current Streak - 当前连胜 - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 - - - - Longest Streak - 最长连续纪录 - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 - - - - Dividend Timeline - 股息时间表 - - apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 - - - - FIRE - 财务独立 - - apps/client/src/app/pages/portfolio/fire/fire-page-routing.module.ts - 13 - - - - FIRE - 财务独立 - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 4 - - - - Calculator - 计算器 - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 7 - - - - 4% Rule - 4%规则 - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 - - - - Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. - Ghostfolio X-ray 使用静态分析来识别您的投资组合中的潜在问题和风险。 - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 111 - - - - Currency Cluster Risks - 货币集群风险 - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 - - - - Account Cluster Risks - 账户集群风险 - - apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 - - - - Holdings - 控股 - - apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html - 77 - - - apps/client/src/app/components/home-holdings/home-holdings.html - 4 - - - apps/client/src/app/pages/public/public-page.html - 14 - - - libs/ui/src/lib/assistant/assistant.html - 46 - - - - Pricing - 价钱 - - apps/client/src/app/pages/pricing/pricing-page-routing.module.ts - 13 - - - - Pricing Plans - 定价计划 - - apps/client/src/app/pages/pricing/pricing-page.html - 4 - - - - Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. - 我们的官方 Ghostfolio Premium 云产品是最简单的入门方法。由于它节省了时间,这对于大多数人来说将是最佳选择。收入用于支付托管基础设施的成本和资助持续开发。 - - apps/client/src/app/pages/pricing/pricing-page.html - 6 - - - - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - 如果你希望在自己的基础设施上运行 Ghostfolio,请查看源代码和进一步的说明GitHub - - apps/client/src/app/pages/pricing/pricing-page.html - 24 - - - - For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. - 适合喜欢在自己的基础设施上运行 Ghostfolio 的精通技术的投资者。 - - apps/client/src/app/pages/pricing/pricing-page.html - 36 - - - - Unlimited Transactions - 无限交易 - - apps/client/src/app/pages/pricing/pricing-page.html - 43 - - - apps/client/src/app/pages/pricing/pricing-page.html - 126 - - - apps/client/src/app/pages/pricing/pricing-page.html - 187 - - - - Unlimited Accounts - 无限账户 - - apps/client/src/app/pages/pricing/pricing-page.html - 47 - - - apps/client/src/app/pages/pricing/pricing-page.html - 130 - - - apps/client/src/app/pages/pricing/pricing-page.html - 191 - - - - Portfolio Performance - 投资组合表现 - - apps/client/src/app/pages/pricing/pricing-page.html - 51 - - - apps/client/src/app/pages/pricing/pricing-page.html - 134 - - - apps/client/src/app/pages/pricing/pricing-page.html - 195 - - - - Data Import and Export - 数据导入与导出 - - apps/client/src/app/pages/pricing/pricing-page.html - 71 - - - apps/client/src/app/pages/pricing/pricing-page.html - 138 - - - apps/client/src/app/pages/pricing/pricing-page.html - 215 - - - - Community Support - 社区支持 - - apps/client/src/app/pages/pricing/pricing-page.html - 88 - - - - Self-hosted, update manually. - 自托管,手动更新。 - - apps/client/src/app/pages/pricing/pricing-page.html - 92 - - - - Free - 自由的 - - apps/client/src/app/pages/pricing/pricing-page.html - 93 - - - apps/client/src/app/pages/pricing/pricing-page.html - 150 - - - - For new investors who are just getting started with trading. - 适合刚开始交易的新投资者。 - - apps/client/src/app/pages/pricing/pricing-page.html - 120 - - - - Fully managed Ghostfolio cloud offering. - 完全托管的 Ghostfolio 云产品。 - - apps/client/src/app/pages/pricing/pricing-page.html - 149 - - - apps/client/src/app/pages/pricing/pricing-page.html - 240 - - - - For ambitious investors who need the full picture of their financial assets. - 适合需要全面了解其金融资产的雄心勃勃的投资者。 - - apps/client/src/app/pages/pricing/pricing-page.html - 180 - - - - Email and Chat Support - 电子邮件和聊天支持 - - apps/client/src/app/pages/pricing/pricing-page.html - 236 - - - - Renew Plan - 更新计划 - - apps/client/src/app/components/header/header.component.html - 190 - - - apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 - - - apps/client/src/app/pages/pricing/pricing-page.html - 276 - - - - One-time payment, no auto-renewal. - 一次性付款,无自动续订。 - - apps/client/src/app/pages/pricing/pricing-page.html - 280 - - - - Get Started - 开始使用 - - apps/client/src/app/pages/pricing/pricing-page.html - 291 - - - - It’s free. - 免费。 - - apps/client/src/app/pages/pricing/pricing-page.html - 294 - - - - Hello, has shared a Portfolio with you! - 你好,分享了一个文件夹与你! - - apps/client/src/app/pages/public/public-page.html - 4 - - - - Currencies - 货币 - - apps/client/src/app/pages/public/public-page.html - 30 - - - - Continents - 大陆 - - apps/client/src/app/pages/public/public-page.html - 60 - - - - Ghostfolio empowers you to keep track of your wealth. - Ghostfolio 使您能够跟踪您的财富。 - - apps/client/src/app/pages/public/public-page.html - 148 - - - - Registration - 注册 - - apps/client/src/app/pages/register/register-page-routing.module.ts - 13 - - - - Continue with Internet Identity - 继续互联网身份 - - apps/client/src/app/pages/register/register-page.html - 41 - - - - Continue with Google - 继续使用谷歌 - - apps/client/src/app/pages/register/register-page.html - 51 - - - - Copy to clipboard - 复制到剪贴板 - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 26 - - - - I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. - 我同意存储我的保安编码器从上面看,在一个安全的地方。如果我丢失了它,我将无法找回我的帐户。 - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 32 - - - - Agree and continue - 同意并继续 - - apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html - 45 - - - - Personal Finance Tools - 个人理财工具 - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 14 - - - - open-source-alternative-to - 开源替代方案 - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 23 - - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts - 13 - - - - Open Source Alternative to - 开源替代方案 - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts - 26 - - - - Discover Open Source Alternatives for Personal Finance Tools - 发现个人理财工具的开源替代品 - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 4 - - - - This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. - 此概述页面包含与开源替代方案相比的精选个人理财工具集合Ghostfolio。如果您重视透明度、数据隐私和社区协作,Ghostfolio 提供了一个绝佳的机会来控制您的财务管理。 - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 8 - - - - Explore the links below to compare a variety of personal finance tools with Ghostfolio. - 浏览下面的链接,将各种个人理财工具与 Ghostfolio 进行比较。 - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 16 - - - - Open Source Alternative to - 开源替代方案 - - apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 38 - - - - The Open Source Alternative to - 开源替代方案 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 8 - - - - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - 您是否正在寻找开源替代方案幽灵作品集是一个强大的投资组合管理工具,为个人提供一个全面的平台来跟踪、分析和优化他们的投资。无论您是经验丰富的投资者还是刚刚起步的投资者,Ghostfolio 都提供直观的用户界面和广泛的功能帮助您做出明智的决定并掌控您的财务未来。 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 13 - - - - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio 是一款开源软件 (OSS),提供了一种经济高效的替代方案使其特别适合预算紧张的个人,例如追求财务独立,提前退休(FIRE) 。通过利用开发者社区和个人理财爱好者的集体努力,Ghostfolio 不断增强其功能、安全性和用户体验。 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 27 - - - - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - 让我们更深入地了解 Ghostfolio 与下面的比较表可帮助您全面了解 Ghostfolio 相对于其他产品的定位。我们将探讨功能、数据隐私、定价等各个方面,让您根据个人需求做出明智的选择。 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 38 - - - - Ghostfolio vs comparison table - Ghostfolio vs比较表 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 49 - - - - Founded - 成立 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 72 - - - - Origin - 来源 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 77 - - - - Region - 地区 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 82 - - - - Available in - 可用于 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 87 - - - - ✅ Yes - ✅ 是的 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 109 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 116 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 130 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 141 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 155 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 174 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 181 - - - - ❌ No - ❌ 没有 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 111 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 134 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 157 - - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 176 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 183 - - - - ❌ No - ❌ 没有 - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 118 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 118 - - - - Self-Hosting - 自托管 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 123 - - - - Use anonymously - 匿名使用 - - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 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 - 150 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 150 - - - - Free Plan - 免费计划 - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 - - - - Starting from - 从...开始 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 190 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 195 - - - - year - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 191 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 197 - - - - Notes - 笔记 - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - - - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 - + + Max + 最大限度 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/toggle/toggle.component.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + libs/ui/src/lib/assistant/assistant.component.ts + 253 + + + Grant access + 授予访问权限 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 7 + + + Public + 公开 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 25 + + + Granted Access + 授予访问权限 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-access/user-account-access.html + 5 + + + Please enter your coupon code: + 请输入您的优惠券代码: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 111 + + + Could not redeem coupon code + 无法兑换优惠券代码 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 121 + + + Coupon code has been redeemed + 优惠券代码已兑换 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 133 + + + Reload + 重新加载 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.component.ts + 134 + + + per year + 每年 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/pages/pricing/pricing-page.html + 254 + + + Try Premium + 尝试高级版 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 50 + + + Redeem Coupon + 兑换优惠券 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 63 + + + Auto + 自动 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 35 + + + Do you really want to remove this sign in method? + 您确实要删除此登录方法吗? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-settings/user-account-settings.component.ts + 230 + + + Settings + 设置 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 2 + + + Presenter View + 演示者视图 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 202 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 7 - - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - 请注意,Ghostfolio 与 Ghostfolio 中提供的信息比较表基于我们的独立研究和分析。该网站不隶属于或比较中提到的任何其他产品。随着个人理财工具格局的不断发展,直接从相应的产品页面验证任何具体的细节或变化至关重要。数据需要刷新吗?帮助我们维护准确的数据GitHub + + Protection for sensitive information like absolute performances and quantity values + 保护绝对性能和数量值等敏感信息 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 8 + + + Base Currency + 基础货币 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 27 + + + Language + 语言 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 50 + + + Locale + 语言环境 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 121 + + + Date and number format + 日期和数字格式 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 123 + + + Appearance + 外貌 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 146 + + + Auto + 自动 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 160 + + + Light + 明亮 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 161 + + + Dark + 黑暗 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 162 + + + Zen Mode + 极简模式 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 171 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/features/features-page.html + 190 + + + Distraction-free experience for turbulent times + 动荡时期的无干扰体验 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 172 + + + Biometric Authentication + 生物识别认证 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 188 + + + Sign in with fingerprint + 使用指纹登录 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 189 + + + Experimental Features + 实验性功能 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 206 + + + Sneak peek at upcoming functionality + 预览即将推出的功能 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 207 + + + User ID + 用户身份 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html + 45 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 223 + + + Export Data + 导出数据 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/components/user-account-settings/user-account-settings.html + 231 + + + This feature is currently unavailable. + 此功能目前无法使用。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/core/http-response.interceptor.ts + 53 + + + Please try again later. + 请稍后再试。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/core/http-response.interceptor.ts + 55 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/core/http-response.interceptor.ts + 80 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 138 + + + Oops! Something went wrong. + 哎呀!出了些问题。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/core/http-response.interceptor.ts + 78 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 136 + + + Okay + 好的 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/core/http-response.interceptor.ts + 81 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 139 + + + About + 关于 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/about-page-routing.module.ts + 51 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/about-page.component.ts + 44 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/overview/about-overview-page-routing.module.ts + 13 + + + Changelog + 更新日志 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/about-page.component.ts + 49 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/changelog/changelog-page-routing.module.ts + 13 + + + License + 许可 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/about-page.component.ts + 54 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/license/license-page-routing.module.ts + 13 + + + Privacy Policy + 隐私政策 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/about-page.component.ts + 62 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/privacy-policy/privacy-policy-page-routing.module.ts + 13 + + + Our + 我们的 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 6 + + + Discover other exciting Open Source Software projects + 发现其他令人兴奋的开源软件项目 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 9 + + + Visit + 访问 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/about/oss-friends/oss-friends-page.html + 28 + + + Accounts + 账户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/accounts-page-routing.module.ts + 13 + + + Oops, cash balance transfer has failed. + 糟糕,现金余额转账失败。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/accounts-page.component.ts + 304 + + + Update account + 更新账户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 8 + + + Add account + 新增帐户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 10 + + + Account ID + 帐户ID - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 96 + + + From + - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 11 + + + To + - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 28 + + + Transfer + 转移 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html + 64 + + + Admin Control + 管理控制 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 20 + + + Market Data + 市场数据 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 30 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page.component.ts + 37 + + + Settings + 设置 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 35 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page.component.ts + 32 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 18 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/user-account/user-account-page.component.ts + 35 + + + Users + 用户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 40 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 210 + apps/client/src/app/pages/admin/admin-page.component.ts + 47 - - Ready to take your investments to the next level? - 准备好带走你的投资下一级 + + Overview + 概述 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/admin/admin-page.component.ts + 27 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page.component.ts + 37 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/zen/zen-page-routing.module.ts + 19 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/zen/zen-page.component.ts + 34 + + + Blog + 博客 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/blog/blog-page-routing.module.ts + 13 + + + Discover the latest Ghostfolio updates and insights on personal finance + 了解最新的 Ghostfolio 更新和个人理财见解 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/blog/blog-page.html + 7 + + + As you are already logged in, you cannot access the demo account. + 由于您已经登录,因此无法访问模拟帐户。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/demo/demo-page.component.ts + 35 + + + Frequently Asked Questions (FAQ) + 常见问题 (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/faq/faq-page-routing.module.ts + 34 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/faq/overview/faq-overview-page-routing.module.ts + 13 + + + Frequently Asked Questions (FAQ) + 常见问题 (FAQ) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/faq/overview/faq-overview-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/faq/saas/saas-page.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html + 4 + + + Features + 功能 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/app-routing.module.ts + 65 + + + Check out the numerous features of Ghostfolio to manage your wealth + 查看 Ghostfolio 的众多功能来管理您的财富 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 6 + + + Stocks + 股票 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 15 + + + ETFs + ETF - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 25 + + + Bonds + 债券 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 38 + + + Cryptocurrencies + 加密货币 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 51 + + + Wealth Items + 财富项目 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 76 + + + Import and Export + 导入和导出 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 115 + + + Multi-Accounts + 多账户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 127 + + + Portfolio Calculations + 投资组合计算 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 141 + + + Dark Mode + 深色模式 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 177 + + + Market Mood + 市场情绪 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 205 + + + Static Analysis + 静态分析 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 224 + + + Multi-Language + 多语言 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 241 + + + Open Source Software + 开源软件 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 275 + + + Get Started + 立即开始 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/features/features-page.html + 300 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/public/public-page.html + 153 + + + Holdings + 控股 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page-routing.module.ts + 23 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page-routing.module.ts + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page.component.ts + 42 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/zen/zen-page.component.ts + 39 + + + Summary + 概括 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page-routing.module.ts + 33 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page.component.ts + 47 + + + Markets + 市场 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page-routing.module.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/home/home-page.component.ts + 52 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/markets/markets-page-routing.module.ts + 13 + + + Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. + Ghostfolio 是一个个人财务仪表板,用于跨多个平台跟踪您的净资产,包括现金、股票、ETF 和加密货币。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/i18n/i18n-page.html + 4 + + + app, asset, cryptocurrency, dashboard, etf, finance, management, performance, portfolio, software, stock, trading, wealth, web3 + 应用程序、资产、加密货币、仪表板、etf、财务、管理、绩效、投资组合、软件、股票、交易、财富、web3 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/i18n/i18n-page.html + 9 + + + Open Source Wealth Management Software + 开源财富管理软件 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/i18n/i18n-page.html + 14 + + + Manage your wealth like a boss + 像老板一样管理您的财富 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 5 + + + 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 是一个隐私优先、开源的个人财务仪表板。分解您的资产配置,了解您的净资产并做出可靠的、数据驱动的投资决策。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 9 + + + Get Started + 开始使用 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 41 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 419 + + + or + - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 46 + + + Live Demo + 现场演示 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 49 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 424 + + + Monthly Active Users + 每月活跃用户数 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 69 + + + Stars on GitHub + GitHub 上的星星 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 87 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/open/open-page.html + 103 + + + Pulls on Docker Hub + 拉动 Docker Hub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 105 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/open/open-page.html + 117 + + + As seen in + 如图所示 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 113 + + + Protect your assets. Refine your personal investment strategy. + 保护你的资产。完善你的个人投资策略 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 215 + + + Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + Ghostfolio 使忙碌的人们能够在不被追踪的情况下跟踪股票、ETF 或加密货币。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 223 + apps/client/src/app/pages/landing/landing-page.html + 219 - - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - 使用 Ghostfolio 轻松跟踪、分析和可视化您的财富。 + + 360° View + 360° 视角 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 230 + + + Get the full picture of your personal finances across multiple platforms. + 跨多个平台全面了解您的个人财务状况。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 232 + + + Web3 Ready + Web3 就绪 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 241 + + + Use Ghostfolio anonymously and own your financial data. + 匿名使用 Ghostfolio 并拥有您的财务数据。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 243 + + + Open Source + 开源 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 251 + + + Benefit from continuous improvements through a strong community. + 通过强大的社区不断改进,从中受益。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 253 + + + Why Ghostfolio? + 为什么使用Ghostfolio - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 262 + + + Ghostfolio is for you if you are... + 如果您符合以下条件,那么 Ghostfolio 适合您... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 263 + + + trading stocks, ETFs or cryptocurrencies on multiple platforms + 在多个平台上交易股票、ETF 或加密货币 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 270 + + + pursuing a buy & hold strategy + 采取买入并持有策略 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 276 + + + interested in getting insights of your portfolio composition + 有兴趣深入了解您的投资组合构成 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 281 + + + valuing privacy and data ownership + 重视隐私和数据所有权 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 286 + + + into minimalism + 进入极简主义 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 289 + + + caring about diversifying your financial resources + 关心您的财务资源多元化 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 293 + + + interested in financial independence + 对财务独立感兴趣 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 297 + + + saying no to spreadsheets in + 对电子表格说不 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 301 + + + still reading this list + 仍在阅读此列表 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 304 + + + Learn more about Ghostfolio + 了解有关 Ghostfolio 的更多信息 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 309 + + + What our users are saying + 我们的什么用户正在说 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 317 + + + Members from around the globe are using Ghostfolio Premium + 来自世界各地的会员正在使用Ghostfolio 高级版 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 349 + + + How does Ghostfolio work? + 如何幽灵作品集工作? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 361 + + + Get started in only 3 steps + 只需 3 步即可开始 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 364 + + + Sign up anonymously* + 匿名注册* - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 370 + + + * no e-mail address nor credit card required + * 无需电子邮件地址或信用卡 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 372 + + + Add any of your historical transactions + 添加您的任何历史交易 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 383 + + + Get valuable insights of your portfolio composition + 获取有关您的投资组合构成的宝贵见解 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 395 + + + Are you ready? + 准备好? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 407 + + + Join now or check out the example account + 立即加入或查看示例帐户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/landing/landing-page.html + 408 + + + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + 在 Ghostfolio,透明度是我们价值观的核心。我们将源代码发布为开源软件(OSS)下AGPL-3.0许可证我们公开分享平台运营状态的汇总关键指标。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 6 + + + (Last 24 hours) + (最近 24 小时) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 37 + + + Active Users + 活跃用户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 40 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 62 + + + (Last 30 days) + (最近 30 天) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 48 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 59 + + + New Users + 新用户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 51 + + + Users in Slack community + Slack 社区的用户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 75 + + + Contributors on GitHub + GitHub 上的贡献者 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 89 + + + (Last 90 days) + (过去 90 天) - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 127 + + + Uptime + 正常运行时间 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/open/open-page.html + 132 + + + Activities + 活动 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/activities-page-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 39 + + + Do you really want to delete these activities? + 您真的要删除所有活动吗? - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + libs/ui/src/lib/activities-table/activities-table.component.ts + 216 + + + Update activity + 更新活动 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 7 + + + Stocks, ETFs, bonds, cryptocurrencies, commodities + 股票、ETF、债券、加密货币、大宗商品 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 22 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 62 + + + One-time fee, annual account fees + 一次性费用、年度账户费用 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 30 + + + Distribution of corporate earnings + 企业盈利分配 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 38 + + + Revenue for lending out money + 放贷收入 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 46 + + + Mortgages, personal loans, credit cards + 抵押贷款、个人贷款、信用卡 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 54 + + + Luxury items, real estate, private companies + 奢侈品、房地产、私营公司 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 70 + + + Account + 帐户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 82 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + libs/ui/src/lib/activities-table/activities-table.component.html + 307 + + + Update Cash Balance + 更新现金余额 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 108 + + + Unit Price + 单价 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 199 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 261 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 227 + libs/ui/src/lib/activities-table/activities-table.component.html + 209 - - Get Started - 开始使用 + + Oops! Could not get the historical exchange rate from + 哎呀!无法从以下来源获取历史汇率 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 226 + + + Fee + 费用 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 280 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 302 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + libs/ui/src/lib/activities-table/activities-table.component.html + 233 + + + Oops! Could not get the historical exchange rate from + 哎呀!无法获取历史汇率 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 292 + + + Import Activities + 导入活动 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 44 + + + Import Dividends + 导入股息 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 86 + + + Importing data... + 正在导入数据... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 120 + + + Import has been completed + 导入已完成 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 128 + + + Validating data... + 验证数据... - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 233 + + + Select Holding + 选择控股 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 20 + + + Select File + 选择文件 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 23 + + + Holding + 保持 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 33 + + + Load Dividends + 加载股息 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 70 + + + Choose or drop a file here + 在此处选择或放置文件 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 86 + + + The following file formats are supported: + 支持以下文件格式: - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 92 + + + Select Dividends + 选择股息 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 115 + + + Select Activities + 选择活动 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 118 + + + Back + 后退 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 146 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 182 + + + Allocations + 分配 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 44 + + + Allocations + 分配 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 4 + + + Proportion of Net Worth + 占净资产的比例 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 12 + + + By Platform + 按平台 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 44 + + + By Currency + 按货币 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 63 + + + By Asset Class + 按资产类别 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 85 + + + By Holding + 通过持有 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 107 + + + By Sector + 按部门 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 130 + + + By Continent + 按大陆 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 153 + + + By Market + 按市场 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 175 + + + Regions + 区域 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 198 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/public/public-page.html + 76 + + + Developed Markets + 发达市场 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 222 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/public/public-page.html + 93 + + + Emerging Markets + 新兴市场 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 231 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/public/public-page.html + 102 + + + Other Markets + 其他市场 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 240 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/public/public-page.html + 111 + + + No data available + 无可用数据 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 250 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/public/public-page.html + 123 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + libs/ui/src/lib/top-holdings/top-holdings.component.html + 88 + + + By Account + 按帐户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 286 + + + By ETF Provider + 按 ETF 提供商 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 306 + + + By Country + 按国家/地区 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 264 + + + Analysis + 分析 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page-routing.module.ts + 13 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 34 + + + Dividend + 股息 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 38 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + libs/ui/src/lib/i18n.ts + 32 + + + Deposit + 订金 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 361 + + + Monthly + 每月 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 50 + + + Yearly + 每年 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 51 + + + Analysis + 分析 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 2 + + + Top + 顶部 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 168 + + + Bottom + 底部 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 214 + + + Portfolio Evolution + 投资组合演变 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 232 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 264 - - Personal Finance Tools - 个人理财工具 + + Investment Timeline + 投资时间表 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 294 + + + Current Streak + 当前连胜 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 315 + + + Longest Streak + 最长连续纪录 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 324 + + + Dividend Timeline + 股息时间表 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 352 + + + FIRE + 财务独立 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page-routing.module.ts + 13 + + + FIRE + 财务独立 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 4 + + + Calculator + 计算器 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 7 + + + 4% Rule + 4%规则 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 41 + + + Ghostfolio X-ray uses static analysis to identify potential issues and risks in your portfolio. + Ghostfolio X-ray 使用静态分析来识别您的投资组合中的潜在问题和风险。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 111 + + + Currency Cluster Risks + 货币集群风险 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 135 + + + Account Cluster Risks + 账户集群风险 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/portfolio/fire/fire-page.html + 148 + + + Holdings + 控股 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 77 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/home-holdings/home-holdings.html + 4 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/public/public-page.html + 14 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + libs/ui/src/lib/assistant/assistant.html + 46 + + + Pricing + 价钱 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page-routing.module.ts + 13 + + + Pricing Plans + 定价计划 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 4 + + + Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. + 我们的官方 Ghostfolio Premium 云产品是最简单的入门方法。由于它节省了时间,这对于大多数人来说将是最佳选择。收入用于支付托管基础设施的成本和资助持续开发。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 6 + + + If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + 如果你希望在自己的基础设施上运行 Ghostfolio,请查看源代码和进一步的说明GitHub - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 24 + + + For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. + 适合喜欢在自己的基础设施上运行 Ghostfolio 的精通技术的投资者。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 36 + + + Unlimited Transactions + 无限交易 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 43 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 126 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 187 + + + Unlimited Accounts + 无限账户 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 47 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 191 + + + Portfolio Performance + 投资组合表现 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 51 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 195 + + + Data Import and Export + 数据导入与导出 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 71 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 138 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 215 + + + Community Support + 社区支持 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 88 + + + Self-hosted, update manually. + 自托管,手动更新。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 92 + + + Free + 自由的 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 93 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 150 + + + For new investors who are just getting started with trading. + 适合刚开始交易的新投资者。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 120 + + + Fully managed Ghostfolio cloud offering. + 完全托管的 Ghostfolio 云产品。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 149 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 240 + + + For ambitious investors who need the full picture of their financial assets. + 适合需要全面了解其金融资产的雄心勃勃的投资者。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 180 + + + Email and Chat Support + 电子邮件和聊天支持 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 236 + + + Renew Plan + 更新计划 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/header/header.component.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/components/user-account-membership/user-account-membership.html + 28 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 276 + + + One-time payment, no auto-renewal. + 一次性付款,无自动续订。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 280 + + + Get Started + 开始使用 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 291 + + + It’s free. + 免费。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/pricing/pricing-page.html + 294 + + + Hello, has shared a Portfolio with you! + 你好,分享了一个文件夹与你! - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/public/public-page.html + 4 + + + Currencies + 货币 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/public/public-page.html + 30 + + + Continents + 大陆 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/public/public-page.html + 60 + + + Ghostfolio empowers you to keep track of your wealth. + Ghostfolio 使您能够跟踪您的财富。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/public/public-page.html + 148 + + + Registration + 注册 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/register/register-page-routing.module.ts + 13 + + + Continue with Internet Identity + 继续互联网身份 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/register/register-page.html + 41 + + + Continue with Google + 继续使用谷歌 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/register/register-page.html + 51 + + + Copy to clipboard + 复制到剪贴板 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 26 + + + I agree to have stored my Security Token from above in a secure place. If I lose it, I cannot get my account back. + 我同意存储我的保安编码器从上面看,在一个安全的地方。如果我丢失了它,我将无法找回我的帐户。 - apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html - 308 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 32 - - Switzerland - 瑞士 + + Agree and continue + 同意并继续 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 80 + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 45 + + + Personal Finance Tools + 个人理财工具 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 110 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 14 + + + open-source-alternative-to + 开源替代方案 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 590 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 26 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 650 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 13 - - Global - 全球的 + + Open Source Alternative to + 开源替代方案 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 81 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts + 27 + + + Discover Open Source Alternatives for Personal Finance Tools + 发现个人理财工具的开源替代品 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 360 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 4 + + + This overview page features a curated collection of personal finance tools compared to the open source alternative Ghostfolio. If you value transparency, data privacy, and community collaboration, Ghostfolio provides an excellent opportunity to take control of your financial management. + 此概述页面包含与开源替代方案相比的精选个人理财工具集合Ghostfolio。如果您重视透明度、数据隐私和社区协作,Ghostfolio 提供了一个绝佳的机会来控制您的财务管理。 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 502 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 8 + + + Explore the links below to compare a variety of personal finance tools with Ghostfolio. + 浏览下面的链接,将各种个人理财工具与 Ghostfolio 进行比较。 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 651 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 16 - - United States - 美国 + + Open Source Alternative to + 开源替代方案 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 101 + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 42 + + + The Open Source Alternative to + 开源替代方案 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 157 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 8 + + + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + 您是否正在寻找开源替代方案幽灵作品集是一个强大的投资组合管理工具,为个人提供一个全面的平台来跟踪、分析和优化他们的投资。无论您是经验丰富的投资者还是刚刚起步的投资者,Ghostfolio 都提供直观的用户界面和广泛的功能帮助您做出明智的决定并掌控您的财务未来。 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 167 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 13 + + + Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio 是一款开源软件 (OSS),提供了一种经济高效的替代方案使其特别适合预算紧张的个人,例如追求财务独立,提前退休(FIRE) 。通过利用开发者社区和个人理财爱好者的集体努力,Ghostfolio 不断增强其功能、安全性和用户体验。 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 209 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 27 + + + Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + 让我们更深入地了解 Ghostfolio 与下面的比较表可帮助您全面了解 Ghostfolio 相对于其他产品的定位。我们将探讨功能、数据隐私、定价等各个方面,让您根据个人需求做出明智的选择。 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 218 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 38 + + + Ghostfolio vs comparison table + Ghostfolio vs比较表 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 228 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 49 + + + Founded + 成立 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 240 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 72 + + + Origin + 来源 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 250 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 77 + + + Region + 地区 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 302 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 82 + + + Available in + 可用于 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 324 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 87 + + + ✅ Yes + ✅ 是的 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 335 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 109 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 346 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 116 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 371 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 130 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 373 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 141 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 383 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 155 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 469 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 162 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 479 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 174 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 489 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 181 + + + ❌ No + ❌ 没有 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 578 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 111 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 601 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 134 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 639 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 145 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 661 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 157 - - - France - 法国 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 129 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 164 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 522 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 176 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 547 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 183 - - Poland - 波兰 + + ❌ No + ❌ 没有 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 139 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 118 - - Germany - 德国 - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 148 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 198 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 282 - + + Self-Hosting + 自托管 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 292 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 123 + + + Use anonymously + 匿名使用 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 313 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 150 + + + Free Plan + 免费计划 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 358 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 169 + + + Starting from + 从...开始 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 415 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 190 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 532 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 195 - - Belgium - 比利时 + + year + - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 187 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 191 - - - South Africa - 南非 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 259 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 197 - - Austria - 奥地利 + + Notes + 笔记 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 270 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 202 - - Italy - 意大利 + + Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + 请注意,Ghostfolio 与 Ghostfolio 中提供的信息比较表基于我们的独立研究和分析。该网站不隶属于或比较中提到的任何其他产品。随着个人理财工具格局的不断发展,直接从相应的产品页面验证任何具体的细节或变化至关重要。数据需要刷新吗?帮助我们维护准确的数据GitHub - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 426 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 210 - - Netherlands - 荷兰 + + Ready to take your investments to the next level? + 准备好带走你的投资下一级 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 436 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 223 - - Thailand - 泰国 + + Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + 使用 Ghostfolio 轻松跟踪、分析和可视化您的财富。 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 458 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 227 - - New Zealand - 新西兰 + + Get Started + 开始使用 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 500 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 232 - - Czech Republic - 捷克共和国 - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 511 - - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 568 - + + Personal Finance Tools + 个人理财工具 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 611 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.html + 308 - - Finland - 芬兰 + + Switzerland + 瑞士 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 539 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 58 - - Canada - 加拿大 + + Global + 全球的 - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 631 + apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts + 59 @@ -15183,7 +5651,7 @@ 利息 libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 367 + 371 libs/ui/src/lib/i18n.ts @@ -15195,7 +5663,7 @@ 储蓄 libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 377 + 381 @@ -15207,7 +5675,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 45 + 46 @@ -15219,7 +5687,7 @@ libs/ui/src/lib/top-holdings/top-holdings.component.html - 79 + 81 @@ -15707,7 +6175,7 @@ 视野受限 apps/client/src/app/components/access-table/access-table.component.html - 25 + 26 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15719,7 +6187,7 @@ 允许 apps/client/src/app/components/access-table/access-table.component.html - 17 + 18 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15867,7 +6335,7 @@ 看法 apps/client/src/app/components/access-table/access-table.component.html - 22 + 23 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -15987,7 +6455,7 @@ 哎呀!看来您提出了太多要求。请慢一点。 apps/client/src/app/core/http-response.interceptor.ts - 107 + 96 @@ -16051,7 +6519,7 @@ This action is not allowed. apps/client/src/app/core/http-response.interceptor.ts - 70 + 61 @@ -16134,36 +6602,20 @@ 278 - - Australia - Australia - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 403 - - - - Bulgaria - Bulgaria - - apps/client/src/app/pages/resources/personal-finance-tools/products.ts - 558 - - By ETF Holding By ETF Holding apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 342 + 333 - - Approximation based on the Top 15 holdings per ETF - Approximation based on the Top 15 holdings per ETF + + Approximation based on the top holdings of each ETF + Approximation based on the top holdings of each ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html - 350 + 340 From b725e6e2ec35daea976c1fae948035530ffa7062 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 11 Jun 2024 19:46:16 +0200 Subject: [PATCH 67/83] Feature/migrate client to control flow (#3475) * Migrate to control flow * Update changelog --- CHANGELOG.md | 1 + apps/client/src/app/app.component.html | 331 +++++++++-------- .../access-table/access-table.component.html | 21 +- .../accounts-table.component.html | 92 ++--- .../app/components/admin-jobs/admin-jobs.html | 81 ++-- .../admin-market-data-detail.component.html | 63 ++-- .../admin-market-data/admin-market-data.html | 37 +- .../asset-profile-dialog.html | 20 +- .../create-asset-profile-dialog.html | 33 +- .../admin-overview/admin-overview.html | 313 ++++++++-------- .../admin-platform.component.html | 13 +- .../create-or-update-platform-dialog.html | 7 +- .../create-or-update-tag-dialog.html | 7 +- .../components/admin-users/admin-users.html | 171 +++++---- .../benchmark-comparator.component.html | 51 ++- .../dialog-footer.component.html | 12 +- .../dialog-header.component.html | 13 +- .../fear-and-greed-index.component.html | 17 +- .../components/header/header.component.html | 348 +++++++++--------- .../holding-detail-dialog.html | 6 +- .../components/home-market/home-market.html | 67 ++-- .../home-overview/home-overview.html | 29 +- .../investment-chart.component.html | 17 +- .../login-with-access-token-dialog.html | 4 +- .../portfolio-performance.component.html | 72 ++-- .../app/components/rule/rule.component.html | 86 +++-- .../app/components/rules/rules.component.html | 28 +- .../components/toggle/toggle.component.html | 17 +- .../user-account-access.html | 31 +- .../user-account-membership.html | 99 +++-- .../user-account-settings.html | 75 ++-- .../world-map-chart.component.html | 17 +- .../src/app/pages/about/about-page.html | 37 +- .../about/overview/about-overview-page.html | 86 ++--- .../src/app/pages/accounts/accounts-page.html | 35 +- .../transfer-balance-dialog.html | 48 ++- .../src/app/pages/admin/admin-page.html | 37 +- .../src/app/pages/demo/demo-page.component.ts | 2 - apps/client/src/app/pages/faq/faq-page.html | 37 +- .../pages/faq/overview/faq-overview-page.html | 18 +- .../src/app/pages/faq/saas/saas-page.html | 41 +-- .../pages/features/features-page.component.ts | 2 - apps/client/src/app/pages/home/home-page.html | 37 +- .../src/app/pages/i18n/i18n-page.component.ts | 2 - .../src/app/pages/landing/landing-page.html | 312 ++++++++-------- .../create-or-update-activity-dialog.html | 244 ++++++------ .../import-activities-dialog.html | 142 ++++--- .../portfolio/analysis/analysis-page.html | 205 ++++++----- .../app/pages/portfolio/fire/fire-page.html | 162 ++++---- .../app/pages/portfolio/portfolio-page.html | 37 +- .../src/app/pages/pricing/pricing-page.html | 155 ++++---- .../src/app/pages/public/public-page.html | 209 ++++++----- .../src/app/pages/register/register-page.html | 73 ++-- .../show-access-token-dialog.html | 8 +- .../personal-finance-tools/product-page.html | 130 +++---- .../pages/user-account/user-account-page.html | 37 +- .../pages/webauthn/webauthn-page.component.ts | 8 +- apps/client/src/app/pages/zen/zen-page.html | 37 +- 58 files changed, 2209 insertions(+), 2111 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a8aa8608..5e15175b9 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 ### Changed +- Migrated the `@ghostfolio/client` components to control flow - Improved the language localization for German (`de`) - Upgraded `angular` from version `17.3.10` to `18.0.2` - Upgraded `Nx` from version `19.0.5` to `19.2.2` diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html index fd5ae16f0..2c745692a 100644 --- a/apps/client/src/app/app.component.html +++ b/apps/client/src/app/app.component.html @@ -1,33 +1,31 @@
      -
      -
      -
      - -
      - You are using the Live Demo. - Create Account -
      -
      + } - + +} diff --git a/apps/client/src/app/components/access-table/access-table.component.html b/apps/client/src/app/components/access-table/access-table.component.html index a8386d5d2..b1befc8c9 100644 --- a/apps/client/src/app/components/access-table/access-table.component.html +++ b/apps/client/src/app/components/access-table/access-table.component.html @@ -32,17 +32,16 @@ Details - + @if (element.type === 'PUBLIC') { + + } diff --git a/apps/client/src/app/components/accounts-table/accounts-table.component.html b/apps/client/src/app/components/accounts-table/accounts-table.component.html index af3ba6787..f5039395b 100644 --- a/apps/client/src/app/components/accounts-table/accounts-table.component.html +++ b/apps/client/src/app/components/accounts-table/accounts-table.component.html @@ -1,14 +1,16 @@ -
      - -
      +@if (showActions) { +
      + +
      +}
      @@ -24,7 +26,9 @@ mat-cell >
      - + @if (element.isExcluded) { + + }
      @@ -86,12 +91,13 @@ mat-cell >
      - + @if (element.Platform?.url) { + + } {{ element.Platform?.name }}
      @@ -236,15 +242,16 @@ class="d-none d-lg-table-cell px-1" mat-cell > - + @if (element.comment) { + + } @@ -109,37 +108,29 @@ Status diff --git a/apps/client/src/app/components/admin-market-data-detail/admin-market-data-detail.component.html b/apps/client/src/app/components/admin-market-data-detail/admin-market-data-detail.component.html index 00551bc99..617dd6962 100644 --- a/apps/client/src/app/components/admin-market-data-detail/admin-market-data-detail.component.html +++ b/apps/client/src/app/components/admin-market-data-detail/admin-market-data-detail.component.html @@ -9,35 +9,38 @@ [showYAxis]="true" [symbol]="symbol" /> -
      -
      {{ itemByMonth.key }}
      -
      -
      + @for (itemByMonth of marketDataByMonth | keyvalue; track itemByMonth) { +
      +
      {{ itemByMonth.key }}
      +
      + @for (dayItem of days; track dayItem; let i = $index) { +
      + } +
      -
      + }
      diff --git a/apps/client/src/app/components/admin-market-data/admin-market-data.html b/apps/client/src/app/components/admin-market-data/admin-market-data.html index 8cc8b65c6..e3a16dd62 100644 --- a/apps/client/src/app/components/admin-market-data/admin-market-data.html +++ b/apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -39,9 +39,13 @@ @@ -121,11 +125,9 @@ @@ -222,15 +224,16 @@ (page)="onChangePage($event)" /> - + @if (isLoading && totalItems === 0) { + + } diff --git a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html index 487794f66..af71477b4 100644 --- a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html +++ b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -243,11 +243,11 @@ Asset Class - {{ assetClass.label }} + @for (assetClass of assetClasses; track assetClass) { + {{ + assetClass.label + }} + } @@ -256,11 +256,11 @@ Asset Sub Class - {{ assetSubClass.label }} + @for (assetSubClass of assetSubClasses; track assetSubClass) { + {{ + assetSubClass.label + }} + } diff --git a/apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html b/apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html index 0f4901c31..7c228941e 100644 --- a/apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html +++ b/apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html @@ -20,21 +20,24 @@ -
      - - Name, symbol or ISIN - - -
      -
      - - Symbol - - -
      + @if (mode === 'auto') { +
      + + Name, symbol or ISIN + + +
      + } @else if (mode === 'manual') { +
      + + Symbol + + +
      + }
      diff --git a/apps/client/src/app/components/admin-overview/admin-overview.html b/apps/client/src/app/components/admin-overview/admin-overview.html index d23210b54..5c052f21f 100644 --- a/apps/client/src/app/components/admin-overview/admin-overview.html +++ b/apps/client/src/app/components/admin-overview/admin-overview.html @@ -27,72 +27,77 @@ [precision]="0" [value]="transactionCount" /> -
      - {{ transactionCount / userCount | number: '1.2-2' }} - per User -
      + @if (transactionCount && userCount) { +
      + {{ transactionCount / userCount | number: '1.2-2' }} + per User +
      + }
      Exchange Rates
      Name - + @if (element.Platform?.url) { + + } {{ element.name }} Total - +@if (isLoading) { + +} diff --git a/apps/client/src/app/components/admin-jobs/admin-jobs.html b/apps/client/src/app/components/admin-jobs/admin-jobs.html index 5da929fe1..9ea2097e2 100644 --- a/apps/client/src/app/components/admin-jobs/admin-jobs.html +++ b/apps/client/src/app/components/admin-jobs/admin-jobs.html @@ -5,11 +5,14 @@ - {{ statusFilterOption }} + @for ( + statusFilterOption of statusFilterOptions; + track statusFilterOption + ) { + {{ + statusFilterOption + }} + } @@ -28,15 +31,11 @@ Type - - Asset Profile - - - Historical Market Data - + @if (element.name === 'GATHER_ASSET_PROFILE') { + Asset Profile + } @else if (element.name === 'GATHER_HISTORICAL_MARKET_DATA') { + Historical Market Data + } - - - - - - + @if (element.state === 'active') { + + } @else if (element.state === 'completed') { + + } @else if (element.state === 'delayed') { + + } @else if (element.state === 'failed') { + + } @else if (element.state === 'paused') { + + } @else if (element.state === 'waiting') { + + }
      {{ element.name }}
      -
      - {{ element.symbol | gfSymbol }} -
      + @if (!isUUID(element.symbol)) { +
      + {{ + element.symbol | gfSymbol + }} +
      + }
      - + @if (element.comment) { + + }
      - - - - - - - + + + + + + - + + + + + Edit + + + @if (customCurrencies.includes(exchangeRate.label2)) { + + } + + + + }
      - - {{ exchangeRate.label1 }}= - - {{ exchangeRate.label2 }} - - - - - - Edit - - + @for (exchangeRate of exchangeRates; track exchangeRate) { +
      + + {{ exchangeRate.label1 }}= + + {{ exchangeRate.label2 }} - -
      -
      -
      Read-only Mode
      -
      - + @if (hasPermissionToToggleReadOnlyMode) { +
      +
      Read-only Mode
      +
      + +
      -
      + }
      Data Gathering
      @@ -141,99 +148,105 @@ />
      -
      -
      System Message
      -
      -
      -
      {{ systemMessage | json }}
      - -
      - -
      -
      -
      -
      Coupons
      -
      - - - - - - -
      {{ coupon.code }}{{ coupon.duration }} + @if (hasPermissionForSystemMessage) { +
      +
      System Message
      +
      + @if (systemMessage) { +
      +
      {{ systemMessage | json }}
      - - - -
      -
      -
      - - - 7 Days - 14 Days - 30 Days - 90 Days - 180 Days - 1 Year - - +
      + } + @if (!info?.systemMessage) { - + }
      -
      + } + @if (hasPermissionForSubscription) { +
      +
      Coupons
      +
      + + @for (coupon of coupons; track coupon) { + + + + + + } +
      {{ coupon.code }}{{ coupon.duration }} + + + + +
      +
      +
      + + + 7 Days + 14 Days + 30 Days + 90 Days + 180 Days + 1 Year + + + +
      +
      +
      +
      + }
      Housekeeping
      diff --git a/apps/client/src/app/components/admin-platform/admin-platform.component.html b/apps/client/src/app/components/admin-platform/admin-platform.component.html index dc51f86cc..f5f766838 100644 --- a/apps/client/src/app/components/admin-platform/admin-platform.component.html +++ b/apps/client/src/app/components/admin-platform/admin-platform.component.html @@ -30,12 +30,13 @@ Name - + @if (element.url) { + + } {{ element.name }} diff --git a/apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html b/apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html index 0e85cff2c..bb99ae3a8 100644 --- a/apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html +++ b/apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html @@ -4,8 +4,11 @@ (keyup.enter)="platformForm.valid && onSubmit()" (ngSubmit)="onSubmit()" > -

      Update platform

      -

      Add platform

      + @if (data.platform.id) { +

      Update platform

      + } @else { +

      Add platform

      + }
      diff --git a/apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html b/apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html index 46ab1a39e..0efb9d307 100644 --- a/apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html +++ b/apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html @@ -4,8 +4,11 @@ (keyup.enter)="tagForm.valid && onSubmit()" (ngSubmit)="onSubmit()" > -

      Update tag

      -

      Add tag

      + @if (data.tag.id) { +

      Update tag

      + } @else { +

      Add tag

      + }
      diff --git a/apps/client/src/app/components/admin-users/admin-users.html b/apps/client/src/app/components/admin-users/admin-users.html index ae0deae92..25ab9053d 100644 --- a/apps/client/src/app/components/admin-users/admin-users.html +++ b/apps/client/src/app/components/admin-users/admin-users.html @@ -49,43 +49,44 @@ }" >{{ (element.id | slice: 0 : 5) + '...' }} - + @if (element?.subscription?.type === 'Premium') { + + }
      - - - Country - - - {{ - getEmojiFlag(element.country) - }} - - + @if (hasPermissionForSubscription) { + + + Country + + + {{ + getEmojiFlag(element.country) + }} + + + } - - - Engagement per Day - - - - - + @if (hasPermissionForSubscription) { + + + Engagement per Day + + + + + + } - - - Last Request - - - {{ formatDistanceToNow(element.lastActivity) }} - - + @if (hasPermissionForSubscription) { + + + Last Request + + + {{ formatDistanceToNow(element.lastActivity) }} + + + } - + @if (hasPermissionToImpersonateAllUsers) { + + }
      @@ -24,33 +23,33 @@ (selectionChange)="onChangeBenchmark($event.value)" > - {{ symbolProfile.name }} - -
      - - Manage Benchmarks -
      -
      + @for (symbolProfile of benchmarks; track symbolProfile) { + {{ + symbolProfile.name + }} + } + @if (hasPermissionToAccessAdminControl) { + +
      + + Manage Benchmarks +
      +
      + }
      - + @if (isLoading) { + + } - - +@if (deviceType === 'mobile') { + +} diff --git a/apps/client/src/app/components/dialog-header/dialog-header.component.html b/apps/client/src/app/components/dialog-header/dialog-header.component.html index 7ad9e1db6..dcf487cf7 100644 --- a/apps/client/src/app/components/dialog-header/dialog-header.component.html +++ b/apps/client/src/app/components/dialog-header/dialog-header.component.html @@ -3,11 +3,8 @@ [ngClass]="{ 'text-center': position === 'center' }" >{{ title }} - +@if (deviceType !== 'mobile') { + +} diff --git a/apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html b/apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html index de6781b7e..67274ae38 100644 --- a/apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html +++ b/apps/client/src/app/components/fear-and-greed-index/fear-and-greed-index.component.html @@ -12,12 +12,13 @@ Current Market Mood
      - + @if (!fearAndGreedIndex) { + + }
      diff --git a/apps/client/src/app/components/header/header.component.html b/apps/client/src/app/components/header/header.component.html index c30161030..369f711fd 100644 --- a/apps/client/src/app/components/header/header.component.html +++ b/apps/client/src/app/components/header/header.component.html @@ -1,5 +1,5 @@ - + @if (user) {
      Accounts -
    7. - Admin Control -
    8. + @if (hasPermissionToAccessAdminControl) { +
    9. + Admin Control +
    10. + }
    11. Resources
    12. -
    13. - Pricing -
    14. + @if ( + hasPermissionForSubscription && user?.subscription?.type === 'Basic' + ) { +
    15. + Pricing +
    16. + }
    17. About
    18. -
    19. - - - +
    20. + [matMenuTriggerRestoreFocus]="false" + (menuOpened)="onOpenAssistant()" + > + + + + + + + }
    21. - + @if ( + hasPermissionForSubscription && user?.subscription?.type === 'Basic' + ) { Upgrade Plan - Renew Plan + > + @if (user.subscription.offer === 'default') { + Upgrade Plan + } @else if ( + user.subscription.offer === 'renewal' || + user.subscription.offer === 'renewal-early-bird' + ) { + Renew Plan + } +
      -
      - + } + @if (user?.access?.length > 0) { + @for (accessItem of user?.access; track accessItem) { + + }
      -
      + } My Ghostfolio - Admin Control + @if (hasPermissionToAccessAdminControl) { + Admin Control + }
      Resources - Pricing + @if ( + hasPermissionForSubscription && user?.subscription?.type === 'Basic' + ) { + Pricing + }
    22. - - + } + @if (user === null) {
      About -
    23. - Pricing -
    24. -
    25. - Markets -
    26. + @if (hasPermissionForSubscription) { +
    27. + Pricing +
    28. + } + @if (hasPermissionToAccessFearAndGreedIndex) { +
    29. + Markets +
    30. + }
    31. Sign in
    32. -
    33. - Get started - -
    34. + @if (currentRoute !== 'register' && hasPermissionToCreateUser) { +
    35. + Get started + +
    36. + } - + } diff --git a/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html b/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html index 19d916920..843901e5a 100644 --- a/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html +++ b/apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -376,9 +376,9 @@
      Tags
      - {{ - tag.name - }} + @for (tag of tags; track tag) { + {{ tag.name }} + }
      diff --git a/apps/client/src/app/components/home-market/home-market.html b/apps/client/src/app/components/home-market/home-market.html index 0e9d51336..8406cd2ff 100644 --- a/apps/client/src/app/components/home-market/home-market.html +++ b/apps/client/src/app/components/home-market/home-market.html @@ -1,30 +1,32 @@

      Markets

      -
      -
      -
      - Last {{ numberOfDays }} Days + @if (hasPermissionToAccessFearAndGreedIndex) { +
      +
      +
      + Last {{ numberOfDays }} Days +
      + +
      - -
      -
      + }
      @@ -33,15 +35,16 @@ [locale]="user?.settings?.locale || undefined" [user]="user" /> - + @if (isLoading) { + + }
      diff --git a/apps/client/src/app/components/home-overview/home-overview.html b/apps/client/src/app/components/home-overview/home-overview.html index e84b46809..671e73ef2 100644 --- a/apps/client/src/app/components/home-overview/home-overview.html +++ b/apps/client/src/app/components/home-overview/home-overview.html @@ -39,22 +39,19 @@
    - - Setup accounts - - - Add activity - + @if (user?.accounts?.length === 1) { + + Setup accounts + + } @else if (user?.accounts?.length > 1) { + + Add activity + + }
    diff --git a/apps/client/src/app/components/investment-chart/investment-chart.component.html b/apps/client/src/app/components/investment-chart/investment-chart.component.html index 697ba5007..6f7b083e5 100644 --- a/apps/client/src/app/components/investment-chart/investment-chart.component.html +++ b/apps/client/src/app/components/investment-chart/investment-chart.component.html @@ -1,11 +1,12 @@ - +@if (isLoading) { + +} - + @if (data.hasPermissionToUseSocialLogin) {
    or
    -
    + }
    diff --git a/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.html b/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.html index 3ef55f800..a2c5c17eb 100644 --- a/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.html +++ b/apps/client/src/app/components/portfolio-performance/portfolio-performance.component.html @@ -10,16 +10,18 @@ /> }
    -
    - -
    + @if (isLoading) { +
    + +
    + }
    -
    -
    - -
    -
    - + @if (showDetails) { +
    +
    + +
    +
    + +
    -
    + }
    diff --git a/apps/client/src/app/components/rule/rule.component.html b/apps/client/src/app/components/rule/rule.component.html index f237ed890..c2f76a321 100644 --- a/apps/client/src/app/components/rule/rule.component.html +++ b/apps/client/src/app/components/rule/rule.component.html @@ -1,43 +1,51 @@
    -
    - -
    -
    - - -
    -
    - - -
    -
    -
    {{ rule?.name }}
    -
    {{ rule?.evaluation }}
    -
    + @if (isLoading) { +
    + +
    + } @else { +
    + @if (rule?.value === true) { + + } @else { + + } +
    + } + @if (isLoading) { +
    + + +
    + } @else { +
    +
    {{ rule?.name }}
    +
    {{ rule?.evaluation }}
    +
    + }
    diff --git a/apps/client/src/app/components/rules/rules.component.html b/apps/client/src/app/components/rules/rules.component.html index b3840a79b..5ef182329 100644 --- a/apps/client/src/app/components/rules/rules.component.html +++ b/apps/client/src/app/components/rules/rules.component.html @@ -1,20 +1,22 @@
    - - - - - + @if (hasPermissionToCreateOrder && rules === null) { + + + + + + } - - - - + @if (rules?.length === 0) { + + } + @if (rules !== null && rules !== undefined) { + @for (rule of rules; track rule) { + + } + }
    diff --git a/apps/client/src/app/components/toggle/toggle.component.html b/apps/client/src/app/components/toggle/toggle.component.html index 88713760a..4a6e0fc3d 100644 --- a/apps/client/src/app/components/toggle/toggle.component.html +++ b/apps/client/src/app/components/toggle/toggle.component.html @@ -3,12 +3,13 @@ [formControl]="optionFormControl" (change)="onValueChange()" > - {{ option.label }} + @for (option of options; track option) { + {{ option.label }} + } diff --git a/apps/client/src/app/components/user-account-access/user-account-access.html b/apps/client/src/app/components/user-account-access/user-account-access.html index 89aadd524..f651b0419 100644 --- a/apps/client/src/app/components/user-account-access/user-account-access.html +++ b/apps/client/src/app/components/user-account-access/user-account-access.html @@ -3,25 +3,26 @@ class="align-items-center d-none d-sm-flex h3 justify-content-center mb-3 text-center" > Granted Access - + @if (user?.subscription?.type === 'Basic') { + + } -
    - - - -
    + @if (hasPermissionToCreateAccess) { +
    + + + +
    + } diff --git a/apps/client/src/app/components/user-account-membership/user-account-membership.html b/apps/client/src/app/components/user-account-membership/user-account-membership.html index 369a5949b..030f5488e 100644 --- a/apps/client/src/app/components/user-account-membership/user-account-membership.html +++ b/apps/client/src/app/components/user-account-membership/user-account-membership.html @@ -6,64 +6,57 @@ [expiresAt]="user?.subscription?.expiresAt | date: defaultDateFormat" [name]="user?.subscription?.type" /> -
    - + @if ( hasPermissionForSubscription && hasPermissionToUpdateUserSettings - " - > - -
    - {{ baseCurrency }} {{ price }} {{ baseCurrency }} {{ - price - coupon - }} - {{ baseCurrency }} {{ price }} per year + ) { + Renew Plan + } + + @if (price) { +
    + @if (coupon) { + {{ baseCurrency }} {{ price }} {{ baseCurrency }} {{ price - coupon }} + } @else { + {{ baseCurrency }} {{ price }} + } +  per year +
    + } + } +
    + @if (!user?.subscription?.expiresAt) { + Try Premium + + + } + @if (hasPermissionToUpdateUserSettings) { + Redeem Coupon + }
    - - -
    + }
    diff --git a/apps/client/src/app/components/user-account-settings/user-account-settings.html b/apps/client/src/app/components/user-account-settings/user-account-settings.html index fff38a588..0dd8ac47e 100644 --- a/apps/client/src/app/components/user-account-settings/user-account-settings.html +++ b/apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -36,11 +36,9 @@ onChangeUserSetting('baseCurrency', $event.value) " > - {{ currency }} + @for (currency of currencies; track currency) { + {{ currency }} + } @@ -48,20 +46,18 @@
    Language
    -
    - If a translation is missing, kindly support us in extending it - here. -
    + @if (isCommunityLanguage()) { +
    + If a translation is missing, kindly support us in extending it + here. +
    + }
    @@ -134,9 +130,9 @@ " > - {{ - locale - }} + @for (locale of locales; track locale) { + {{ locale }} + }
    @@ -198,26 +194,25 @@ />
    -
    -
    -
    Experimental Features
    -
    - Sneak peek at upcoming functionality + @if (hasPermissionToUpdateUserSettings) { +
    +
    +
    Experimental Features
    +
    + Sneak peek at upcoming functionality +
    +
    +
    +
    -
    - -
    -
    + }
    Ghostfolio User ID diff --git a/apps/client/src/app/components/world-map-chart/world-map-chart.component.html b/apps/client/src/app/components/world-map-chart/world-map-chart.component.html index 8cd8f0a60..5de7ea9d0 100644 --- a/apps/client/src/app/components/world-map-chart/world-map-chart.component.html +++ b/apps/client/src/app/components/world-map-chart/world-map-chart.component.html @@ -1,10 +1,11 @@ - +@if (isLoading) { + +}
    diff --git a/apps/client/src/app/pages/about/about-page.html b/apps/client/src/app/pages/about/about-page.html index 360cbd463..a9dbee450 100644 --- a/apps/client/src/app/pages/about/about-page.html +++ b/apps/client/src/app/pages/about/about-page.html @@ -8,22 +8,23 @@ [disablePagination]="true" [tabPanel]="tabPanel" > - - - -
    {{ tab.label }}
    -
    -
    + @for (tab of tabs; track tab) { + @if (tab.showCondition !== false) { + + +
    {{ tab.label }}
    +
    + } + } diff --git a/apps/client/src/app/pages/about/overview/about-overview-page.html b/apps/client/src/app/pages/about/overview/about-overview-page.html index f196b95ba..e60c7cc06 100644 --- a/apps/client/src/app/pages/about/overview/about-overview-page.html +++ b/apps/client/src/app/pages/about/overview/about-overview-page.html @@ -21,11 +21,12 @@ title="GNU Affero General Public License" >AGPL-3.0 license - + @if (hasPermissionForStatistics) { and we share aggregated key metrics - of the platform’s performance. The project has been initiated by + of the platform’s performance + } + . The project has been initiated by Thomas Kaul @@ -35,12 +36,12 @@ title="Contributors to Ghostfolio" >contributors. - Check the system status at + @if (hasPermissionForSubscription) { + Check the system status at status.ghostfol.io. + >. + }

    If you encounter a bug or would like to suggest an improvement or a @@ -57,12 +58,13 @@ href="https://twitter.com/ghostfolio_" title="Post to Ghostfolio on X (formerly Twitter)" >@ghostfolio_, send an e-mail to + > + @if (user?.subscription?.type === 'Premium') { + , send an e-mail to hi@ghostfol.io + > + } or start a discussion at - - - + @if (user?.subscription?.type === 'Premium') { + + + + }

    -
    - -
    -
    - -
    + @if (hasPermissionForSubscription) { +
    + +
    + } @else { +
    + +
    + }
    diff --git a/apps/client/src/app/pages/accounts/accounts-page.html b/apps/client/src/app/pages/accounts/accounts-page.html index d94dc4292..6f29a4f7c 100644 --- a/apps/client/src/app/pages/accounts/accounts-page.html +++ b/apps/client/src/app/pages/accounts/accounts-page.html @@ -22,22 +22,21 @@
    -
    - - - -
    + @if ( + !hasImpersonationId && + hasPermissionToCreateAccount && + !user.settings.isRestrictedView + ) { +
    + + + +
    + } diff --git a/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html b/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html index 9ff69fdb7..69734b8f9 100644 --- a/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html +++ b/apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -10,16 +10,20 @@ From - -
    - {{ account.name }} -
    -
    + @for (account of accounts; track account) { + +
    + @if (account.Platform?.url) { + + } + {{ account.name }} +
    +
    + }
    @@ -27,16 +31,20 @@ To - -
    - {{ account.name }} -
    -
    + @for (account of accounts; track account) { + +
    + @if (account.Platform?.url) { + + } + {{ account.name }} +
    +
    + }
    diff --git a/apps/client/src/app/pages/admin/admin-page.html b/apps/client/src/app/pages/admin/admin-page.html index 360cbd463..a9dbee450 100644 --- a/apps/client/src/app/pages/admin/admin-page.html +++ b/apps/client/src/app/pages/admin/admin-page.html @@ -8,22 +8,23 @@ [disablePagination]="true" [tabPanel]="tabPanel" > - - - -
    {{ tab.label }}
    -
    -
    + @for (tab of tabs; track tab) { + @if (tab.showCondition !== false) { + + +
    {{ tab.label }}
    +
    + } + } diff --git a/apps/client/src/app/pages/demo/demo-page.component.ts b/apps/client/src/app/pages/demo/demo-page.component.ts index cf09d77aa..23f13b1ca 100644 --- a/apps/client/src/app/pages/demo/demo-page.component.ts +++ b/apps/client/src/app/pages/demo/demo-page.component.ts @@ -2,14 +2,12 @@ import { DataService } from '@ghostfolio/client/services/data.service'; import { TokenStorageService } from '@ghostfolio/client/services/token-storage.service'; import { InfoItem } from '@ghostfolio/common/interfaces'; -import { CommonModule } from '@angular/common'; import { Component, OnDestroy } from '@angular/core'; import { Router } from '@angular/router'; import { Subject } from 'rxjs'; @Component({ host: { class: 'page' }, - imports: [CommonModule], selector: 'gf-demo-page', standalone: true, templateUrl: './demo-page.html' diff --git a/apps/client/src/app/pages/faq/faq-page.html b/apps/client/src/app/pages/faq/faq-page.html index 360cbd463..a9dbee450 100644 --- a/apps/client/src/app/pages/faq/faq-page.html +++ b/apps/client/src/app/pages/faq/faq-page.html @@ -8,22 +8,23 @@ [disablePagination]="true" [tabPanel]="tabPanel" > - - - -
    {{ tab.label }}
    -
    -
    + @for (tab of tabs; track tab) { + @if (tab.showCondition !== false) { + + +
    {{ tab.label }}
    +
    + } + } diff --git a/apps/client/src/app/pages/faq/overview/faq-overview-page.html b/apps/client/src/app/pages/faq/overview/faq-overview-page.html index 925871a60..1885952a7 100644 --- a/apps/client/src/app/pages/faq/overview/faq-overview-page.html +++ b/apps/client/src/app/pages/faq/overview/faq-overview-page.html @@ -125,12 +125,13 @@ href="https://twitter.com/ghostfolio_" title="Post to Ghostfolio on X (formerly Twitter)" >@ghostfolio_, + > + @if (user?.subscription?.type === 'Premium') { + , hi@ghostfol.io + > + } or @ghostfolio_, send an e-mail to + > + @if (user?.subscription?.type === 'Premium') { + , send an e-mail to hi@ghostfol.io + > + } or start a discussion at - - - I cannot find my broker in the list of platforms. What can I - do? - - - Please send an e-mail with the web address of your broker to - hi@ghostfol.io and we are - happy to add it. -
    - + @if (user?.subscription?.type === 'Premium') { + + + I cannot find my broker in the list of platforms. What can I + do? + + + Please send an e-mail with the web address of your broker to + hi@ghostfol.io and we are + happy to add it. + + + } Which devices are supported? @@ -156,12 +154,13 @@ href="https://twitter.com/ghostfolio_" title="Post to Ghostfolio on X (formerly Twitter)" >@ghostfolio_, send an e-mail to + > + @if (user?.subscription?.type === 'Premium') { + , send an e-mail to hi@ghostfol.io + > + } or start a discussion at - - - -
    {{ tab.label }}
    -
    - + @for (tab of tabs; track tab) { + @if (tab.showCondition !== false) { + + +
    {{ tab.label }}
    +
    + } + } diff --git a/apps/client/src/app/pages/i18n/i18n-page.component.ts b/apps/client/src/app/pages/i18n/i18n-page.component.ts index 2bcac9d88..9718ac328 100644 --- a/apps/client/src/app/pages/i18n/i18n-page.component.ts +++ b/apps/client/src/app/pages/i18n/i18n-page.component.ts @@ -1,10 +1,8 @@ -import { CommonModule } from '@angular/common'; import { Component, OnInit } from '@angular/core'; import { Subject } from 'rxjs'; @Component({ host: { class: 'page' }, - imports: [CommonModule], selector: 'gf-i18n-page', standalone: true, styleUrls: ['./i18n-page.scss'], diff --git a/apps/client/src/app/pages/landing/landing-page.html b/apps/client/src/app/pages/landing/landing-page.html index 331defae4..7555f3540 100644 --- a/apps/client/src/app/pages/landing/landing-page.html +++ b/apps/client/src/app/pages/landing/landing-page.html @@ -32,7 +32,7 @@
    - + @if (hasPermissionToCreateUser) { Get Started - - -
    - or -
    + } + @if (hasPermissionForDemo) { + @if (hasPermissionToCreateUser) { +
    or
    + } Live Demo -
    + }
    -
    -
    - + - +
    - Stars on GitHub - -
    - +
    - Pulls on Docker Hub - + Pulls on Docker Hub + +
    -
    + }
    @@ -320,112 +322,130 @@
    -
    -
    - -
    -
    {{ testimonial.quote }}
    -
    - — - {{ testimonial.author }} - {{ testimonial.author }}, - {{ testimonial.country }} + @for (testimonial of testimonials; track testimonial) { +
    +
    + +
    +
    {{ testimonial.quote }}
    +
    + — + @if (testimonial.url) { + {{ + testimonial.author + }} + } @else { + {{ testimonial.author }} + } + , + {{ testimonial.country }} +
    -
    + }
    -
    -
    -

    - Members from around the globe are using - Ghostfolio Premium -

    -
    -
    - + @if (hasPermissionForSubscription) { +
    +
    +

    + Members from around the globe are using + Ghostfolio Premium +

    +
    +
    + +
    -
    + } -
    -
    -

    - How does Ghostfolio work? -

    -

    Get started in only 3 steps

    -
    -
    - - -
    -
    Sign up anonymously*
    -
    - * no e-mail address nor credit card required + @if (hasPermissionForSubscription) { +
    +
    +

    + How does Ghostfolio work? +

    +

    Get started in only 3 steps

    +
    +
    + + +
    +
    Sign up anonymously*
    +
    + * no e-mail address nor credit card required +
    -
    -
    1
    - - -
    -
    - - -
    -
    - Add any of your historical transactions +
    1
    + + +
    +
    + + +
    +
    + Add any of your historical transactions +
    -
    -
    2
    - - -
    -
    - - -
    -
    - Get valuable insights of your portfolio composition +
    2
    + + +
    +
    + + +
    +
    + Get valuable insights of your portfolio composition +
    -
    -
    3
    - - +
    3
    + + +
    -
    + } -
    -
    -

    Are you ready?

    -

    - Join now - or check out the example account -

    -
    - - Get Started - - -
    or
    - Live Demo -
    + @if (hasPermissionToCreateUser) { +
    +
    +

    + Are you ready? +

    +

    + Join now + @if (hasPermissionForDemo) { + or check out the example account + } +

    +
    + + Get Started + + @if (hasPermissionForDemo) { +
    or
    + Live Demo + } +
    -
    + }
    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 65ba637db..f57d63559 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 @@ -4,8 +4,11 @@ (keyup.enter)="activityForm.valid && onSubmit()" (ngSubmit)="onSubmit()" > -

    Update activity

    -

    Add activity

    + @if (data.activity.id) { +

    Update activity

    + } @else { +

    Add activity

    + }
    @@ -81,25 +84,25 @@ > Account - - -
    - {{ account.name }} -
    -
    + @if ( + !activityForm.get('accountId').hasValidator(Validators.required) + ) { + + } + @for (account of data.accounts; track account) { + +
    + @if (account.Platform?.url) { + + } + {{ account.name }} +
    +
    + }
    @@ -139,9 +142,9 @@ Currency - {{ - currency - }} + @for (currency of currencies; track currency) { + {{ currency }} + }
    @@ -186,18 +189,24 @@ >
    - - Dividend - Value - Value - Value - Unit Price - + + @switch (activityForm.get('type')?.value) { + @case ('DIVIDEND') { + Dividend + } + @case ('INTEREST') { + Value + } + @case ('ITEM') { + Value + } + @case ('LIABILITY') { + Value + } + @default { + Unit Price + } + } - - {{ currency }} - + @for (currency of currencies; track currency) { + + {{ currency }} + + }
    - Oops! Could not get the historical exchange rate - fromOops! Could not get the historical exchange rate + from + {{ + activityForm.get('date')?.value | date: defaultDateFormat + }} - {{ - activityForm.get('date')?.value | date: defaultDateFormat - }} + } - + @if ( + currentMarketPrice && + (data.activity.type === 'BUY' || data.activity.type === 'SELL') && + isToday(activityForm.get('date')?.value) + ) { + + }
    - - Dividend - Value - Value - Value - Value - Unit Price - + + @switch (activityForm.get('type')?.value) { + @case ('DIVIDEND') { + Dividend + } + @case ('FEE') { + Value + } + @case ('INTEREST') { + Value + } + @case ('ITEM') { + Value + } + @case ('LIABILITY') { + Value + } + @default { + Unit Price + } + } {{ @@ -286,15 +306,17 @@ > {{ activityForm.get('currencyOfUnitPrice').value }}
    - Oops! Could not get the historical exchange rate fromOops! Could not get the historical exchange rate + from + {{ + activityForm.get('date')?.value | date: defaultDateFormat + }} - {{ - activityForm.get('date')?.value | date: defaultDateFormat - }} + }
    @@ -326,11 +348,11 @@ Asset Class - {{ assetClass.label }} + @for (assetClass of assetClasses; track assetClass) { + {{ + assetClass.label + }} + }
    @@ -342,11 +364,11 @@ Asset Sub Class - {{ assetSubClass.label }} + @for (assetSubClass of assetSubClasses; track assetSubClass) { + {{ + assetSubClass.label + }} + }
    @@ -354,15 +376,16 @@ Tags - - {{ tag.name }} - - + @for (tag of activityForm.get('tags')?.value; track tag) { + + {{ tag.name }} + + + } - - {{ tag.name }} - + @for (tag of filteredTagsObservable | async; track tag) { + + {{ tag.name }} + + }
    diff --git a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html index 99c3fe99c..d8c2201f9 100644 --- a/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html +++ b/apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -16,12 +16,11 @@ > - Select Holding - Select File + @if (mode === 'DIVIDEND') { + Select Holding + } @else { + Select File + }
    @if (mode === 'DIVIDEND') { @@ -35,30 +34,29 @@ {{ uniqueAssetForm.get('uniqueAsset')?.value?.name }} - - {{ holding.name }} -
    - {{ holding.symbol | gfSymbol }} · - {{ holding.currency }} -
    + {{ holding.name }} +
    + {{ holding.symbol | gfSymbol }} · + {{ holding.currency }} + + } - + @if (isLoading) { + + }
    } @else { - - - -
    -
    - + @for (message of errorMessages; track message; let i = $index) { + + + +
    +
    + +
    +
    {{ message }}
    -
    {{ message }}
    -
    - - -
    {{ details[i] | json }}
    - + + + @if (details[i]) { +
    {{ details[i] | json }}
    + } + + }
    Absolute Currency Performance - + @if (user?.subscription?.type === 'Basic') { + + }
      -
    1. - -
      {{ holding.name }}
      -
      - -
      -
      -
    2. + @for (holding of top3; track holding) { +
    3. + +
      {{ holding.name }}
      +
      + +
      +
      +
    4. + }
    - + @if (!top3) { + + }
    @@ -216,39 +217,42 @@
      -
    1. - -
      {{ holding.name }}
      -
      - -
      -
      -
    2. + @for (holding of bottom3; track holding) { +
    3. + +
      {{ holding.name }}
      +
      + +
      +
      +
    4. + }
    - + @if (!bottom3) { + + }
    @@ -262,10 +266,9 @@ class="align-items-center d-flex flex-grow-1 h5 mb-0 text-truncate" > Portfolio Evolution - + @if (user?.subscription?.type === 'Basic') { + + }
    @@ -292,10 +295,9 @@ class="align-items-center d-flex flex-grow-1 h5 mb-0 text-truncate" > Investment Timeline - + @if (user?.subscription?.type === 'Basic') { + + }
    -
    -
    - Current Streak -
    -
    - Longest Streak + @if (streaks) { +
    +
    + Current Streak +
    +
    + Longest Streak +
    -
    + }
    Dividend Timeline - + @if (user?.subscription?.type === 'Basic') { + + }
    FIRE

    - Calculator + Calculator + @if (user?.subscription?.type === 'Basic') { + + }

    - 4% Rule + 4% Rule + @if (user?.subscription?.type === 'Basic') { + + }

    -
    - - -
    -
    - If you retire today, you would be able to withdraw - - per year - or - + - per month, based on your total assets of - - - and a withdrawal rate of 4%. -
    +
    + } @else { +
    + If you retire today, you would be able to withdraw + + per year + or + + per month, based on your total assets of + + + and a withdrawal rate of 4%. +
    + }
    @@ -119,11 +119,10 @@

    - Emergency Fund + Emergency Fund + @if (user?.subscription?.type === 'Basic') { + + }

    - Currency Cluster Risks + Currency Cluster Risks + @if (user?.subscription?.type === 'Basic') { + + }

    - Account Cluster Risks + Account Cluster Risks + @if (user?.subscription?.type === 'Basic') { + + }

    - Fees + Fees + @if (user?.subscription?.type === 'Basic') { + + }

    - - - -
    {{ tab.label }}
    -
    -
    + @for (tab of tabs; track tab) { + @if (tab.showCondition !== false) { + + +
    {{ tab.label }}
    +
    + } + } diff --git a/apps/client/src/app/pages/pricing/pricing-page.html b/apps/client/src/app/pages/pricing/pricing-page.html index e4537ebb1..03fbf533f 100644 --- a/apps/client/src/app/pages/pricing/pricing-page.html +++ b/apps/client/src/app/pages/pricing/pricing-page.html @@ -9,18 +9,20 @@ for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development.

    -

    - If you plan to open an account at DEGIRO, finpension, - frankly, Interactive Brokers, Swissquote, - VIAC, or Zak, please - contact us - to use our referral link and get a Ghostfolio Premium membership for - one year. Looking for a student discount? Request it - here with - your university e-mail address. -

    + @if (user?.subscription?.type === 'Basic') { +

    + If you plan to open an account at DEGIRO, finpension, + frankly, Interactive Brokers, Swissquote, + VIAC, or Zak, please + contact us + to use our referral link and get a Ghostfolio Premium membership for + one year. Looking for a student discount? Request it + here + with your university e-mail address. +

    + }

    If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on @@ -91,15 +93,14 @@

    Self-hosted, update manually.

    Free

    - + @if (user?.subscription?.type === 'Basic') { + + }
    @@ -113,9 +114,11 @@

    Basic

    -
    - -
    + @if (user?.subscription?.type === 'Basic') { +
    + +
    + }

    For new investors who are just getting started with trading. @@ -148,15 +151,14 @@

    Fully managed Ghostfolio cloud offering.

    Free

    - + @if (user?.subscription?.type === 'Basic') { + + }
    @@ -173,9 +175,11 @@ Premium -
    - -
    + @if (user?.subscription?.type === 'Premium') { +
    + +
    + }

    For ambitious investors who need the full picture of their @@ -240,58 +244,61 @@

    Fully managed Ghostfolio cloud offering.

    - {{ baseCurrency }} {{ price }} {{ baseCurrency }} {{ price - coupon }} - - {{ baseCurrency }} {{ - price - }} per year{{ price }} + } +  per year

    -
    - -

    - One-time payment, no auto-renewal. -

    -
    + ) { + Renew Plan + } + +

    + One-time payment, no auto-renewal. +

    +
    + }
    -
    -
    - - Get Started - -

    It’s free.

    + @if (!user) { +
    +
    + + Get Started + +

    It’s free.

    +
    -
    + }
    diff --git a/apps/client/src/app/pages/public/public-page.html b/apps/client/src/app/pages/public/public-page.html index bac3189be..8824c8d19 100644 --- a/apps/client/src/app/pages/public/public-page.html +++ b/apps/client/src/app/pages/public/public-page.html @@ -24,110 +24,121 @@
    -
    - - - Currencies - - - - - -
    -
    - - - Sectors - - - - - -
    -
    - - - Continents - - - - - -
    - -
    -
    - - - Regions - - -
    - + + + Currencies + + + -
    -
    -
    - Developed Markets -
    -
    - Emerging Markets -
    -
    - Other Markets -
    -
    + +
    + } + @if (portfolioPublicDetails?.hasDetails) { +
    + + + Sectors + + + + + +
    + } + @if (portfolioPublicDetails?.hasDetails) { +
    + + + Continents - No data available + + + + + +
    + } +
    + @if (portfolioPublicDetails?.hasDetails) { +
    +
    + + + Regions + + +
    +
    -
    - - +
    +
    + Developed Markets +
    +
    + Emerging Markets +
    +
    + Other Markets +
    + @if (markets?.[UNKNOWN_KEY]?.value > 0) { +
    + No data available +
    + } +
    + + +
    -
    + }
    -
    -
    -
    - - -
    or
    + @if (hasPermissionToCreateUser) { +
    +
    +
    - Continue with Google - + @if (hasPermissionForSocialLogin) { +
    or
    + @if (false) { + + } + Continue with Google + } +
    -
    + }
    diff --git a/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html b/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html index 8b2dca836..0a6a2e5e3 100644 --- a/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html +++ b/apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1,8 +1,8 @@

    - Create Account{{ - data.role - }} + Create Account + @if (data.role === 'ADMIN') { + {{ data.role }} + }

    diff --git a/apps/client/src/app/pages/resources/personal-finance-tools/product-page.html b/apps/client/src/app/pages/resources/personal-finance-tools/product-page.html index e6fb04d8d..a8bc1d197 100644 --- a/apps/client/src/app/pages/resources/personal-finance-tools/product-page.html +++ b/apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -88,16 +88,22 @@ Available in - {{ language }}{{ isLast ? '' : ', ' }} + @for ( + language of product1.languages; + track language; + let isLast = $last + ) { + {{ language }}{{ isLast ? '' : ', ' }} + } - {{ language }}{{ isLast ? '' : ', ' }} + @for ( + language of product2.languages; + track language; + let isLast = $last + ) { + {{ language }}{{ isLast ? '' : ', ' }} + } @@ -105,18 +111,18 @@ Open Source Software - ✅ Yes❌ No + @if (product1.isOpenSource) { + ✅ Yes + } @else { + ❌ No + } - ✅ Yes❌ No - + @if (product2.isOpenSource) { + ✅ Yes + } @else { + ❌ No + } @@ -124,26 +130,18 @@ Self-Hosting - ✅ Yes❌ No + @if (product1.hasSelfHostingAbility === true) { + ✅ Yes + } @else if (product1.hasSelfHostingAbility === false) { + ❌ No + } - ✅ Yes❌ No + @if (product2.hasSelfHostingAbility === true) { + ✅ Yes + } @else if (product2.hasSelfHostingAbility === false) { + ❌ No + } @@ -151,18 +149,18 @@ Use anonymously - ✅ Yes❌ No + @if (product1.useAnonymously === true) { + ✅ Yes + } @else if (product1.useAnonymously === false) { + ❌ No + } - ✅ Yes❌ No + @if (product2.useAnonymously === true) { + ✅ Yes + } @else if (product2.useAnonymously === false) { + ❌ No + } @@ -170,18 +168,18 @@ Free Plan - ✅ Yes❌ No + @if (product1.hasFreePlan === true) { + ✅ Yes + } @else if (product1.hasFreePlan === false) { + ❌ No + } - ✅ Yes❌ No + @if (product2.hasFreePlan === true) { + ✅ Yes + } @else if (product2.hasFreePlan === false) { + ❌ No + } @@ -191,18 +189,20 @@ year - Starting from + @if (product2.pricingPerYear) { + Starting from {{ product2.pricingPerYear }} / - year + year + } - - Notes - {{ product1.note }} - {{ product2.note }} - + @if (product1.note || product2.note) { + + Notes + {{ product1.note }} + {{ product2.note }} + + } diff --git a/apps/client/src/app/pages/user-account/user-account-page.html b/apps/client/src/app/pages/user-account/user-account-page.html index 360cbd463..a9dbee450 100644 --- a/apps/client/src/app/pages/user-account/user-account-page.html +++ b/apps/client/src/app/pages/user-account/user-account-page.html @@ -8,22 +8,23 @@ [disablePagination]="true" [tabPanel]="tabPanel" > - - - -
    {{ tab.label }}
    -
    -
    + @for (tab of tabs; track tab) { + @if (tab.showCondition !== false) { + + +
    {{ tab.label }}
    +
    + } + } diff --git a/apps/client/src/app/pages/webauthn/webauthn-page.component.ts b/apps/client/src/app/pages/webauthn/webauthn-page.component.ts index 5e5ce5d19..41860014a 100644 --- a/apps/client/src/app/pages/webauthn/webauthn-page.component.ts +++ b/apps/client/src/app/pages/webauthn/webauthn-page.component.ts @@ -2,7 +2,6 @@ import { TokenStorageService } from '@ghostfolio/client/services/token-storage.s import { WebAuthnService } from '@ghostfolio/client/services/web-authn.service'; import { GfLogoComponent } from '@ghostfolio/ui/logo'; -import { CommonModule } from '@angular/common'; import { ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core'; import { MatButtonModule } from '@angular/material/button'; import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; @@ -12,12 +11,7 @@ import { takeUntil } from 'rxjs/operators'; @Component({ host: { class: 'page' }, - imports: [ - CommonModule, - GfLogoComponent, - MatButtonModule, - MatProgressSpinnerModule - ], + imports: [GfLogoComponent, MatButtonModule, MatProgressSpinnerModule], selector: 'gf-webauthn-page', standalone: true, styleUrls: ['./webauthn-page.scss'], diff --git a/apps/client/src/app/pages/zen/zen-page.html b/apps/client/src/app/pages/zen/zen-page.html index 360cbd463..a9dbee450 100644 --- a/apps/client/src/app/pages/zen/zen-page.html +++ b/apps/client/src/app/pages/zen/zen-page.html @@ -8,22 +8,23 @@ [disablePagination]="true" [tabPanel]="tabPanel" > - - - -
    {{ tab.label }}
    -
    -
    + @for (tab of tabs; track tab) { + @if (tab.showCondition !== false) { + + +
    {{ tab.label }}
    +
    + } + } From ad6037381344fc8328f1606cccb55ad62552c108 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 11 Jun 2024 20:00:41 +0200 Subject: [PATCH 68/83] Feature/improve style of blog post list (#3481) * Improve style * Update changelog --- CHANGELOG.md | 1 + apps/client/src/app/pages/blog/blog-page.html | 76 +++++++++---------- apps/client/src/app/pages/blog/blog-page.scss | 6 ++ 3 files changed, 45 insertions(+), 38 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e15175b9..c49d9e2ab 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 ### Changed +- Improved the style of the blog post list - Migrated the `@ghostfolio/client` components to control flow - Improved the language localization for German (`de`) - Upgraded `angular` from version `17.3.10` to `18.0.2` diff --git a/apps/client/src/app/pages/blog/blog-page.html b/apps/client/src/app/pages/blog/blog-page.html index cd05d065c..aa139f68e 100644 --- a/apps/client/src/app/pages/blog/blog-page.html +++ b/apps/client/src/app/pages/blog/blog-page.html @@ -10,11 +10,11 @@ @if (hasPermissionForSubscription) { - +
    @@ -35,11 +35,11 @@ } - +
    @@ -61,11 +61,11 @@ - +
    @@ -85,11 +85,11 @@ - +
    @@ -111,11 +111,11 @@ - +
    @@ -137,11 +137,11 @@ - +
    @@ -164,11 +164,11 @@ - +
    @@ -190,11 +190,11 @@ - +
    @@ -216,11 +216,11 @@ - +
    @@ -242,11 +242,11 @@ - +
    @@ -268,11 +268,11 @@ - +
    @@ -295,11 +295,11 @@ @if (hasPermissionForSubscription) { - +
    @@ -320,11 +320,11 @@ } - +
    @@ -344,11 +344,11 @@ - +
    @@ -368,11 +368,11 @@ - +
    @@ -394,11 +394,11 @@ - +
    @@ -420,11 +420,11 @@ - +
    @@ -446,11 +446,11 @@ - +
    @@ -470,11 +470,11 @@ - +
    diff --git a/apps/client/src/app/pages/blog/blog-page.scss b/apps/client/src/app/pages/blog/blog-page.scss index 39eb6792e..9235ed3c2 100644 --- a/apps/client/src/app/pages/blog/blog-page.scss +++ b/apps/client/src/app/pages/blog/blog-page.scss @@ -1,6 +1,12 @@ :host { color: rgb(var(--dark-primary-text)); display: block; + + .mat-mdc-card { + &:hover { + border-color: var(--gf-theme-primary-500); + } + } } :host-context(.is-dark-theme) { From 65d3bd2802bfb216a5c23350b9336a55841a2c57 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 11 Jun 2024 20:02:21 +0200 Subject: [PATCH 69/83] Release 2.88.0 (#3484) --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c49d9e2ab..2fbfa7634 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.88.0 - 2024-06-11 ### Added diff --git a/package.json b/package.json index be00ba386..21621f3df 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghostfolio", - "version": "2.87.0", + "version": "2.88.0", "homepage": "https://ghostfol.io", "license": "AGPL-3.0", "repository": "https://github.com/ghostfolio/ghostfolio", From e5d8faf2dc909704c6117fc72001e7d416b00e16 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 12 Jun 2024 10:43:54 +0200 Subject: [PATCH 70/83] Feature/improve language localization for de 20240612 (#3483) * Update translations * Update changelog --- CHANGELOG.md | 6 + apps/client/src/locales/messages.de.xlf | 754 ++++++++++++----------- apps/client/src/locales/messages.es.xlf | 754 ++++++++++++----------- apps/client/src/locales/messages.fr.xlf | 754 ++++++++++++----------- apps/client/src/locales/messages.it.xlf | 754 ++++++++++++----------- apps/client/src/locales/messages.nl.xlf | 754 ++++++++++++----------- apps/client/src/locales/messages.pl.xlf | 756 ++++++++++++------------ apps/client/src/locales/messages.pt.xlf | 754 ++++++++++++----------- apps/client/src/locales/messages.tr.xlf | 756 ++++++++++++------------ apps/client/src/locales/messages.xlf | 747 ++++++++++++----------- apps/client/src/locales/messages.zh.xlf | 756 ++++++++++++------------ 11 files changed, 3756 insertions(+), 3789 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fbfa7634..ddc7f796e 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 German (`de`) + ## 2.88.0 - 2024-06-11 ### Added diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 503667325..f2157a1aa 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -6,23 +6,23 @@ Registrieren apps/client/src/app/app.component.html - 18 + 13 apps/client/src/app/pages/register/register-page.html - 26 + 27 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html 2 - + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. Das Ausfallrisiko beim Börsenhandel kann erheblich sein. Es ist nicht ratsam, Geld zu investieren, welches du kurzfristig benötigst. apps/client/src/app/app.component.html - 182 + 194 @@ -38,7 +38,7 @@ Typ apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + 31 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -46,7 +46,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 15 libs/ui/src/lib/activities-table/activities-table.component.html @@ -66,7 +66,7 @@ Widerrufen apps/client/src/app/components/access-table/access-table.component.html - 63 + 62 @@ -90,7 +90,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 113 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -102,7 +102,7 @@ apps/client/src/app/components/admin-users/admin-users.html - 134 + 135 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -122,7 +122,7 @@ Name apps/client/src/app/components/accounts-table/accounts-table.component.html - 39 + 43 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -138,7 +138,7 @@ apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + 15 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -146,7 +146,7 @@ apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + 15 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -154,7 +154,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + 137 libs/ui/src/lib/activities-table/activities-table.component.html @@ -174,7 +174,7 @@ Gesamt apps/client/src/app/components/accounts-table/accounts-table.component.html - 50 + 55 @@ -182,43 +182,43 @@ Wert apps/client/src/app/components/accounts-table/accounts-table.component.html - 165 + 171 apps/client/src/app/components/accounts-table/accounts-table.component.html - 200 + 206 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + 53 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + 198 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + 201 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + 204 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + 268 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + 271 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + 274 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + 277 libs/ui/src/lib/account-balances/account-balances.component.html @@ -246,19 +246,19 @@ Bearbeiten apps/client/src/app/components/accounts-table/accounts-table.component.html - 271 + 278 apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + 177 apps/client/src/app/components/admin-overview/admin-overview.html - 80 + 83 apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + 92 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -274,11 +274,11 @@ Löschen apps/client/src/app/components/accounts-table/accounts-table.component.html - 281 + 288 apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + 196 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -286,15 +286,15 @@ apps/client/src/app/components/admin-overview/admin-overview.html - 90 + 93 apps/client/src/app/components/admin-overview/admin-overview.html - 199 + 210 apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + 102 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -322,7 +322,7 @@ Jobs löschen apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + 149 @@ -330,7 +330,7 @@ Symbol apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + 44 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -342,7 +342,7 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + 36 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -354,11 +354,11 @@ Datenquelle apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + 53 apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 55 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -366,7 +366,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + 153 @@ -374,7 +374,7 @@ Versuche apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + 81 @@ -382,7 +382,7 @@ Erstellt apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + 90 @@ -390,7 +390,7 @@ Abgeschlossen apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + 99 @@ -398,7 +398,7 @@ Status apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + 108 @@ -409,8 +409,8 @@ 67 - - Historical Market Data + + Historical Market Data Historische Marktdaten apps/client/src/app/components/admin-jobs/admin-jobs.html @@ -422,7 +422,7 @@ Daten anzeigen apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + 164 @@ -430,7 +430,7 @@ Stacktrace anzeigen apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + 171 @@ -438,7 +438,7 @@ Job löschen apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + 177 @@ -458,7 +458,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + 159 libs/ui/src/lib/account-balances/account-balances.component.html @@ -494,15 +494,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + 43 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + 42 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + 25 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -514,11 +514,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + 65 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + 421 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -538,15 +538,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + 50 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + 49 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + 32 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -558,7 +558,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + 428 @@ -566,7 +566,7 @@ Erste Aktivität apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 82 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -594,7 +594,7 @@ Historische Daten apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 100 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -654,7 +654,7 @@ pro Benutzer apps/client/src/app/components/admin-overview/admin-overview.html - 32 + 33 @@ -662,7 +662,7 @@ Letzte Daten einholen apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + 146 @@ -670,7 +670,7 @@ Alle Daten einholen apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + 149 @@ -678,7 +678,7 @@ Profildaten herunterladen apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + 152 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -690,7 +690,7 @@ Wechselkurse apps/client/src/app/components/admin-overview/admin-overview.html - 37 + 39 @@ -698,7 +698,7 @@ Währung hinzufügen apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 109 @@ -706,7 +706,7 @@ Systemmeldung apps/client/src/app/components/admin-overview/admin-overview.html - 145 + 153 @@ -714,7 +714,7 @@ Systemmeldung setzen apps/client/src/app/components/admin-overview/admin-overview.html - 165 + 175 @@ -722,7 +722,7 @@ Lese-Modus apps/client/src/app/components/admin-overview/admin-overview.html - 123 + 129 @@ -730,7 +730,7 @@ Gutscheincodes apps/client/src/app/components/admin-overview/admin-overview.html - 173 + 183 @@ -738,7 +738,7 @@ Hinzufügen apps/client/src/app/components/admin-overview/admin-overview.html - 231 + 243 libs/ui/src/lib/account-balances/account-balances.component.html @@ -750,7 +750,7 @@ Verwaltung apps/client/src/app/components/admin-overview/admin-overview.html - 238 + 251 @@ -758,7 +758,7 @@ Cache leeren apps/client/src/app/components/admin-overview/admin-overview.html - 242 + 255 @@ -774,7 +774,7 @@ Benutzer apps/client/src/app/components/header/header.component.html - 230 + 223 @@ -782,7 +782,7 @@ Registrierung apps/client/src/app/components/admin-users/admin-users.html - 96 + 97 @@ -790,15 +790,15 @@ Engagement pro Tag apps/client/src/app/components/admin-users/admin-users.html - 158 + 157 - + Last Request Letzte Abfrage apps/client/src/app/components/admin-users/admin-users.html - 183 + 181 @@ -818,7 +818,7 @@ apps/client/src/app/components/header/header.component.html - 244 + 239 @@ -830,7 +830,7 @@ apps/client/src/app/components/header/header.component.html - 254 + 249 @@ -838,11 +838,11 @@ Konten apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 + 65 apps/client/src/app/components/admin-users/admin-users.html - 113 + 114 apps/client/src/app/components/header/header.component.html @@ -850,7 +850,7 @@ apps/client/src/app/components/header/header.component.html - 262 + 257 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -870,11 +870,11 @@ Administration apps/client/src/app/components/header/header.component.html - 67 + 68 apps/client/src/app/components/header/header.component.html - 278 + 273 @@ -882,15 +882,15 @@ Ressourcen apps/client/src/app/app.component.html - 60 + 61 apps/client/src/app/components/header/header.component.html - 80 + 82 apps/client/src/app/components/header/header.component.html - 289 + 285 apps/client/src/app/pages/resources/resources-page.html @@ -902,7 +902,7 @@ Preise apps/client/src/app/app.component.html - 86 + 94 apps/client/src/app/components/header/header.component.html @@ -910,15 +910,15 @@ apps/client/src/app/components/header/header.component.html - 301 + 296 apps/client/src/app/components/header/header.component.html - 370 + 367 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 188 + 186 @@ -926,15 +926,15 @@ Über apps/client/src/app/app.component.html - 66 + 67 apps/client/src/app/components/header/header.component.html - 111 + 112 apps/client/src/app/components/header/header.component.html - 357 + 353 @@ -942,7 +942,7 @@ Ich apps/client/src/app/components/header/header.component.html - 211 + 205 @@ -950,7 +950,7 @@ Mein Ghostfolio apps/client/src/app/components/header/header.component.html - 269 + 264 @@ -958,7 +958,7 @@ Über Ghostfolio apps/client/src/app/components/header/header.component.html - 309 + 305 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -970,11 +970,11 @@ Features apps/client/src/app/app.component.html - 73 + 76 apps/client/src/app/components/header/header.component.html - 344 + 340 apps/client/src/app/pages/features/features-page.html @@ -990,7 +990,7 @@ apps/client/src/app/components/header/header.component.html - 386 + 382 apps/client/src/app/components/home-market/home-market.html @@ -1010,7 +1010,7 @@ apps/client/src/app/pages/public/public-page.html - 153 + 164 @@ -1050,7 +1050,7 @@ Letzte Tage apps/client/src/app/components/home-market/home-market.html - 6 + 7 @@ -1070,7 +1070,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 + 245 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1086,15 +1086,19 @@ apps/client/src/app/pages/landing/landing-page.html - 423 + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 442 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 + 97 apps/client/src/app/pages/register/register-page.html - 29 + 30 apps/client/src/app/pages/webauthn/webauthn-page.html @@ -1130,7 +1134,7 @@ Einloggen apps/client/src/app/components/header/header.component.html - 399 + 396 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1278,11 +1282,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 + 195 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 265 @@ -1310,7 +1314,7 @@ apps/client/src/app/pages/public/public-page.html - 45 + 50 @@ -1342,7 +1346,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 + 377 libs/ui/src/lib/assistant/assistant.html @@ -1490,7 +1494,7 @@ Datenschutzbestimmungen apps/client/src/app/app.component.html - 90 + 100 apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html @@ -1502,7 +1506,7 @@ Blog apps/client/src/app/app.component.html - 68 + 70 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -1590,7 +1594,7 @@ Changelog apps/client/src/app/app.component.html - 71 + 74 apps/client/src/app/pages/about/changelog/changelog-page.html @@ -1602,7 +1606,7 @@ Lizenz apps/client/src/app/app.component.html - 80 + 85 apps/client/src/app/pages/about/license/license-page.html @@ -1674,7 +1678,7 @@ Konto apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 + 85 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1694,11 +1698,11 @@ pro Jahr apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 + 33 apps/client/src/app/pages/pricing/pricing-page.html - 254 + 256 @@ -1706,7 +1710,7 @@ Premium ausprobieren apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 + 40 @@ -1714,7 +1718,7 @@ Gutschein einlösen apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 + 54 @@ -1738,7 +1742,7 @@ Lokalität apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 + 117 @@ -1746,7 +1750,7 @@ Datums- und Zahlenformat apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 + 119 @@ -1754,7 +1758,7 @@ Zen Modus apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 + 167 apps/client/src/app/pages/features/features-page.html @@ -1766,7 +1770,7 @@ Einloggen mit Fingerabdruck apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 + 185 @@ -1778,7 +1782,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 + 218 @@ -1842,7 +1846,7 @@ Währung apps/client/src/app/components/accounts-table/accounts-table.component.html - 60 + 65 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1858,7 +1862,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + 143 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1874,7 +1878,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 130 + 136 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1890,7 +1894,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 81 + 86 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1926,7 +1930,7 @@ Da du bereits eingeloggt bist, kannst du nicht auf die Live Demo zugreifen. apps/client/src/app/pages/demo/demo-page.component.ts - 35 + 33 @@ -2070,7 +2074,7 @@ apps/client/src/app/pages/public/public-page.html - 76 + 87 @@ -2098,7 +2102,7 @@ Zeitstrahl der Investitionen apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 + 297 @@ -2106,7 +2110,7 @@ Gewinner apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 + 166 @@ -2114,7 +2118,7 @@ Verlierer apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 + 215 @@ -2146,7 +2150,7 @@ 4% Regel apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 + 40 @@ -2194,7 +2198,7 @@ Aktivität bearbeiten apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 + 8 @@ -2202,11 +2206,11 @@ Aktivität hinzufügen apps/client/src/app/components/home-overview/home-overview.html - 56 + 52 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 + 10 @@ -2222,11 +2226,11 @@ Name, Symbol oder ISIN apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + 26 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + 123 @@ -2238,7 +2242,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 + 182 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2250,11 +2254,11 @@ Stückpreis apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 + 207 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 + 280 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2266,11 +2270,11 @@ Gebühr apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 300 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 324 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2290,7 +2294,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + 333 @@ -2298,7 +2302,7 @@ Anlageklasse apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 64 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2314,7 +2318,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + 348 @@ -2370,7 +2374,7 @@ Währungen apps/client/src/app/pages/public/public-page.html - 30 + 32 @@ -2378,7 +2382,7 @@ Kontinente apps/client/src/app/pages/public/public-page.html - 60 + 68 @@ -2386,7 +2390,7 @@ Ghostfolio verschafft Ihnen den Überblick über Ihr Vermögen. apps/client/src/app/pages/public/public-page.html - 148 + 159 @@ -2402,7 +2406,7 @@ Weiter mit Internet Identity apps/client/src/app/pages/register/register-page.html - 41 + 42 @@ -2410,7 +2414,7 @@ Weiter mit Google apps/client/src/app/pages/register/register-page.html - 51 + 53 @@ -2578,7 +2582,7 @@ Sprache apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 + 48 @@ -2586,7 +2590,7 @@ Registrieren apps/client/src/app/components/header/header.component.html - 411 + 406 @@ -2666,7 +2670,7 @@ Anlageunterklasse apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 73 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2682,7 +2686,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + 364 @@ -2722,7 +2726,7 @@ apps/client/src/app/pages/public/public-page.html - 93 + 104 @@ -2734,7 +2738,7 @@ apps/client/src/app/pages/public/public-page.html - 102 + 113 @@ -2746,7 +2750,7 @@ apps/client/src/app/pages/public/public-page.html - 111 + 122 @@ -2798,7 +2802,7 @@ Anzahl Länder apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + 118 @@ -2806,7 +2810,7 @@ Anzahl Sektoren apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + 109 @@ -2866,7 +2870,7 @@ Experimentelle Funktionen apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 + 200 @@ -2874,7 +2878,7 @@ Vergleichen mit... apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 + 18 @@ -2914,7 +2918,7 @@ Aussehen apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 + 142 @@ -2922,7 +2926,7 @@ Automatisch apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 + 156 @@ -2930,7 +2934,7 @@ Hell apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 + 157 @@ -2938,7 +2942,7 @@ Dunkel apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 + 158 @@ -2954,7 +2958,7 @@ Portfolio Wertentwicklung apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 + 268 @@ -3178,7 +3182,7 @@ Folgende Dateiformate werden unterstützt: apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 + 90 @@ -3186,11 +3190,11 @@ Zurück apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 + 144 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 + 178 @@ -3198,11 +3202,15 @@ Community apps/client/src/app/app.component.html - 105 + 118 apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + 77 + + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 82 apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -3218,20 +3226,16 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + 99 apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + 104 apps/client/src/app/components/user-account-settings/user-account-settings.html 108 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 - apps/client/src/app/pages/features/features-page.html 256 @@ -3242,7 +3246,7 @@ Anzahl Aktivitäten apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 91 @@ -3266,7 +3270,7 @@ Zeitstrahl der Dividenden apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 + 356 @@ -3294,7 +3298,7 @@ Benutzer Registrierung apps/client/src/app/components/admin-overview/admin-overview.html - 110 + 115 @@ -3314,11 +3318,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 + 153 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 + 186 @@ -3362,7 +3366,7 @@ Position apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 + 32 @@ -3370,7 +3374,7 @@ Dividenden laden apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 + 68 @@ -3458,15 +3462,15 @@ Unbeschwertes Erlebnis für turbulente Zeiten apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 + 168 - + Sneak peek at upcoming functionality Vorschau auf kommende Funktionalität apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 + 201 @@ -3486,11 +3490,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 55 + 57 apps/client/src/app/pages/pricing/pricing-page.html - 199 + 203 @@ -3502,11 +3506,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 63 + 65 apps/client/src/app/pages/pricing/pricing-page.html - 207 + 211 @@ -3518,11 +3522,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 67 + 69 apps/client/src/app/pages/pricing/pricing-page.html - 211 + 215 @@ -3534,11 +3538,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 83 + 85 apps/client/src/app/pages/pricing/pricing-page.html - 231 + 235 @@ -3554,7 +3558,7 @@ Abonnement abschliessen apps/client/src/app/components/header/header.component.html - 182 + 180 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3562,11 +3566,11 @@ apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 + 16 apps/client/src/app/pages/pricing/pricing-page.html - 268 + 270 @@ -3574,7 +3578,7 @@ Für technisch versierte Anleger, die Ghostfolio auf der eigenen Infrastruktur betreiben möchten. apps/client/src/app/pages/pricing/pricing-page.html - 36 + 38 @@ -3582,15 +3586,15 @@ Unlimitierte Transaktionen apps/client/src/app/pages/pricing/pricing-page.html - 43 + 45 apps/client/src/app/pages/pricing/pricing-page.html - 126 + 129 apps/client/src/app/pages/pricing/pricing-page.html - 187 + 191 @@ -3598,15 +3602,15 @@ Unlimitierte Accounts apps/client/src/app/pages/pricing/pricing-page.html - 47 + 49 apps/client/src/app/pages/pricing/pricing-page.html - 130 + 133 apps/client/src/app/pages/pricing/pricing-page.html - 191 + 195 @@ -3614,15 +3618,15 @@ Portfolio Performance apps/client/src/app/pages/pricing/pricing-page.html - 51 + 53 apps/client/src/app/pages/pricing/pricing-page.html - 134 + 137 apps/client/src/app/pages/pricing/pricing-page.html - 195 + 199 @@ -3630,7 +3634,7 @@ Selbst gehostet, manuelles Update. apps/client/src/app/pages/pricing/pricing-page.html - 92 + 94 @@ -3638,11 +3642,11 @@ Kostenlos apps/client/src/app/pages/pricing/pricing-page.html - 93 + 95 apps/client/src/app/pages/pricing/pricing-page.html - 150 + 153 @@ -3650,7 +3654,7 @@ Für Einsteiger, die gerade mit dem Börsenhandel beginnen. apps/client/src/app/pages/pricing/pricing-page.html - 120 + 123 @@ -3658,11 +3662,11 @@ Vollständig verwaltetes Ghostfolio Cloud-Angebot. apps/client/src/app/pages/pricing/pricing-page.html - 149 + 152 apps/client/src/app/pages/pricing/pricing-page.html - 240 + 244 @@ -3670,7 +3674,7 @@ Für ambitionierte Anleger, die den vollständigen Überblick über ihr Anlagevermögen benötigen. apps/client/src/app/pages/pricing/pricing-page.html - 180 + 184 @@ -3678,15 +3682,15 @@ Einmalige Zahlung, keine automatische Erneuerung. apps/client/src/app/pages/pricing/pricing-page.html - 280 + 279 - + Get Started Jetzt loslegen - apps/client/src/app/pages/pricing/pricing-page.html - 291 + apps/client/src/app/pages/landing/landing-page.html + 438 @@ -3694,7 +3698,7 @@ Es ist kostenlos. apps/client/src/app/pages/pricing/pricing-page.html - 294 + 300 @@ -3710,7 +3714,7 @@ apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 + 158 @@ -3726,11 +3730,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 59 + 61 apps/client/src/app/pages/pricing/pricing-page.html - 203 + 207 @@ -3746,15 +3750,15 @@ Datenimport und -export apps/client/src/app/pages/pricing/pricing-page.html - 71 + 73 apps/client/src/app/pages/pricing/pricing-page.html - 138 + 141 apps/client/src/app/pages/pricing/pricing-page.html - 215 + 219 @@ -3770,7 +3774,7 @@ Community Support apps/client/src/app/pages/pricing/pricing-page.html - 88 + 90 @@ -3778,7 +3782,7 @@ E-Mail und Chat Support apps/client/src/app/pages/pricing/pricing-page.html - 236 + 240 @@ -3805,12 +3809,12 @@ 2 - + Oops! Could not get the historical exchange rate from Ups! Der historische Wechselkurs konnte nicht abgerufen werden vom apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 + 234 @@ -3838,7 +3842,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 226 + 230 @@ -3854,15 +3858,15 @@ Abonnement erneuern apps/client/src/app/components/header/header.component.html - 190 + 185 apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 + 21 apps/client/src/app/pages/pricing/pricing-page.html - 276 + 275 @@ -3878,7 +3882,7 @@ Benutzer verwenden apps/client/src/app/components/admin-users/admin-users.html - 222 + 218 @@ -3886,7 +3890,7 @@ Benutzer löschen apps/client/src/app/components/admin-users/admin-users.html - 232 + 229 @@ -3910,7 +3914,7 @@ Plattform bearbeiten apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 + 8 @@ -3918,7 +3922,7 @@ Plattform hinzufügen apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 + 10 @@ -3930,11 +3934,11 @@ apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 + 51 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 + 25 @@ -3958,7 +3962,7 @@ Cash-Bestand aktualisieren apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 + 111 @@ -4034,7 +4038,7 @@ Benchmarks verwalten apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 + 35 @@ -4050,7 +4054,7 @@ Datei auswählen apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 + 22 @@ -4058,7 +4062,7 @@ Dividenden auswählen apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 + 113 @@ -4066,7 +4070,7 @@ Aktivitäten auswählen apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 + 115 @@ -4098,7 +4102,7 @@ Private Finanzen apps/client/src/app/app.component.html - 55 + 54 @@ -4106,7 +4110,7 @@ Häufig gestellte Fragen (FAQ) apps/client/src/app/app.component.html - 76 + 80 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -4118,7 +4122,7 @@ Aktueller Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 + 318 @@ -4126,7 +4130,7 @@ Längster Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 + 327 @@ -4378,15 +4382,15 @@ ✅ Ja apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 109 + 115 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 116 + 122 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 130 + 134 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -4394,19 +4398,19 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 155 + 153 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 162 + 160 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 174 + 172 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 181 + 179 @@ -4414,39 +4418,39 @@ ❌ Nein apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 111 + 117 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 134 + 136 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 145 + 143 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 157 + 155 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 164 + 162 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 176 + 174 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 183 + 181 - + ❌ No ❌ Nein apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 118 + 124 @@ -4454,7 +4458,7 @@ Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 123 + 129 @@ -4462,7 +4466,7 @@ Anonyme Nutzung apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 150 + 148 @@ -4470,7 +4474,7 @@ Kostenlose Nutzung apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 169 + 167 @@ -4478,7 +4482,7 @@ Hinweise apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 202 + 201 @@ -4518,11 +4522,11 @@ Aktien, ETFs, Anleihen, Kryptowährungen, Rohstoffe apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 + 25 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 + 65 @@ -4530,7 +4534,7 @@ Hypotheken, Darlehen, Kreditkarten apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 + 57 @@ -4538,7 +4542,7 @@ Luxusartikel, Immobilien, private Unternehmen apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 + 73 @@ -4678,7 +4682,7 @@ apps/client/src/app/pages/public/public-page.html - 123 + 132 libs/ui/src/lib/top-holdings/top-holdings.component.html @@ -4698,7 +4702,7 @@ Konten einrichten apps/client/src/app/components/home-overview/home-overview.html - 48 + 44 @@ -4706,7 +4710,7 @@ Biometrische Authentifizierung apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 + 184 @@ -4758,7 +4762,7 @@ Sterne auf GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 88 apps/client/src/app/pages/open/open-page.html @@ -4770,7 +4774,7 @@ Downloads auf Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 106 apps/client/src/app/pages/open/open-page.html @@ -4790,7 +4794,7 @@ Daten exportieren apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 + 226 @@ -4862,7 +4866,7 @@ Wenn du Ghostfolio lieber auf deiner eigenen Infrastruktur betreiben möchtest, findest du den Quellcode und weitere Informationen auf GitHub. apps/client/src/app/pages/pricing/pricing-page.html - 24 + 26 @@ -4889,16 +4893,8 @@ 41 - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - oder - - apps/client/src/app/pages/landing/landing-page.html - 46 + apps/client/src/app/pages/pricing/pricing-page.html + 297 @@ -4906,7 +4902,7 @@ Monatlich aktive Nutzer apps/client/src/app/pages/landing/landing-page.html - 69 + 70 @@ -4914,7 +4910,7 @@ Bekannt aus apps/client/src/app/pages/landing/landing-page.html - 113 + 115 @@ -4922,7 +4918,7 @@ Schützen Sie Ihr Vermögen. Optimieren Sie Ihre persönliche Anlagestrategie. apps/client/src/app/pages/landing/landing-page.html - 215 + 217 @@ -4930,7 +4926,7 @@ Ghostfolio ermöglicht es geschäftigen Leuten, den Überblick über Aktien, ETFs oder Kryptowährungen zu behalten, ohne überwacht zu werden. apps/client/src/app/pages/landing/landing-page.html - 219 + 221 @@ -4938,7 +4934,7 @@ 360° Ansicht apps/client/src/app/pages/landing/landing-page.html - 230 + 232 @@ -4946,7 +4942,7 @@ Web3 ready apps/client/src/app/pages/landing/landing-page.html - 241 + 243 @@ -4954,7 +4950,7 @@ Nutze Ghostfolio ganz anonym und behalte deine Finanzdaten. apps/client/src/app/pages/landing/landing-page.html - 243 + 245 @@ -4962,7 +4958,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 251 + 253 @@ -4970,7 +4966,7 @@ Profitiere von kontinuierlichen Verbesserungen durch eine aktive Community. apps/client/src/app/pages/landing/landing-page.html - 253 + 255 @@ -4978,7 +4974,7 @@ Warum Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 262 + 264 @@ -4986,7 +4982,7 @@ Ghostfolio ist für dich geeignet, wenn du... apps/client/src/app/pages/landing/landing-page.html - 263 + 265 @@ -4994,7 +4990,7 @@ Aktien, ETFs oder Kryptowährungen auf unterschiedlichen Plattformen handelst apps/client/src/app/pages/landing/landing-page.html - 270 + 272 @@ -5002,7 +4998,7 @@ eine Buy & Hold Strategie verfolgst apps/client/src/app/pages/landing/landing-page.html - 276 + 278 @@ -5010,7 +5006,7 @@ dich für die Zusammensetzung deines Portfolios interessierst apps/client/src/app/pages/landing/landing-page.html - 281 + 283 @@ -5018,7 +5014,7 @@ Privatsphäre und Datenhoheit wertschätzt apps/client/src/app/pages/landing/landing-page.html - 286 + 288 @@ -5026,7 +5022,7 @@ zum Frugalismus oder Minimalismus neigst apps/client/src/app/pages/landing/landing-page.html - 289 + 291 @@ -5034,7 +5030,7 @@ dich um die Diversifizierung deiner finanziellen Mittel kümmerst apps/client/src/app/pages/landing/landing-page.html - 293 + 295 @@ -5042,7 +5038,7 @@ Interesse an finanzieller Freiheit hast apps/client/src/app/pages/landing/landing-page.html - 297 + 299 @@ -5050,7 +5046,7 @@ Nein sagst zu Excel-Tabellen im Jahr apps/client/src/app/pages/landing/landing-page.html - 301 + 303 @@ -5058,7 +5054,7 @@ diese Liste bis zum Ende liest apps/client/src/app/pages/landing/landing-page.html - 304 + 306 @@ -5066,7 +5062,7 @@ Erfahre mehr über Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 309 + 311 @@ -5074,23 +5070,23 @@ Was unsere Nutzer sagen apps/client/src/app/pages/landing/landing-page.html - 317 + 319 - + Members from around the globe are using Ghostfolio Premium Nutzer aus aller Welt verwenden Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 349 + 358 - + How does Ghostfolio work? Wie funktioniert Ghostfolio ? apps/client/src/app/pages/landing/landing-page.html - 361 + 375 @@ -5098,47 +5094,39 @@ Registriere dich anonym* apps/client/src/app/pages/landing/landing-page.html - 370 + 384 - + * no e-mail address nor credit card required * Keine E-Mail-Adresse oder Kreditkarte erforderlich apps/client/src/app/pages/landing/landing-page.html - 372 + 386 - + Add any of your historical transactions Füge historische Transaktionen hinzu apps/client/src/app/pages/landing/landing-page.html - 383 + 397 - + Get valuable insights of your portfolio composition Erhalte nützliche Erkenntnisse über die Zusammensetzung deines Portfolios apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Bist du bereit? - - apps/client/src/app/pages/landing/landing-page.html - 407 + 409 - - Join now or check out the example account - Melde dich jetzt an oder probiere die Live Demo aus + + Are you ready? + Bist du bereit? apps/client/src/app/pages/landing/landing-page.html - 408 + 423 @@ -5150,7 +5138,7 @@ apps/client/src/app/pages/landing/landing-page.html - 424 + 443 @@ -5158,7 +5146,7 @@ Verschaffe dir einen vollständigen Überblick deiner persönlichen Finanzen über mehrere Plattformen hinweg. apps/client/src/app/pages/landing/landing-page.html - 232 + 234 @@ -5166,7 +5154,7 @@ Beginne mit nur 3 Schritten apps/client/src/app/pages/landing/landing-page.html - 364 + 378 @@ -5506,7 +5494,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 31 + 29 apps/client/src/app/pages/landing/landing-page.component.ts @@ -5554,7 +5542,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 32 + 30 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts @@ -5718,7 +5706,7 @@ Wählen Sie eine Datei aus oder ziehen Sie sie hierhin apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 + 84 @@ -5726,7 +5714,7 @@ Du verwendest die Live Demo. apps/client/src/app/app.component.html - 17 + 12 @@ -5734,7 +5722,7 @@ Einmalige Eröffnungsgebühr, jährliche Kontoführungsgebühren apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 + 33 @@ -5742,7 +5730,7 @@ Ausschüttung von Unternehmensgewinnen apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 + 41 @@ -5750,7 +5738,7 @@ Ups! Der historische Wechselkurs konnte nicht abgerufen werden vom apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 + 312 @@ -5774,7 +5762,7 @@ Ertrag für das Ausleihen von Geld apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 + 49 @@ -5798,7 +5786,7 @@ Tag bearbeiten apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 + 8 @@ -5806,7 +5794,7 @@ Tag hinzufügen apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 + 10 @@ -5822,7 +5810,7 @@ Währungsklumpenrisiken apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 + 134 @@ -5830,7 +5818,7 @@ Kontoklumpenrisiken apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 + 146 @@ -5838,7 +5826,7 @@ Cash-Bestand Transfer apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + 10 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -5882,7 +5870,7 @@ Nach apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 + 32 @@ -5890,7 +5878,7 @@ Transferieren apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 + 72 @@ -5937,12 +5925,12 @@ 84 - - Asset Profile - Anlageprofil + + Asset Profile + Anlageprofil apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + 35 @@ -6094,11 +6082,11 @@ Ab apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 190 + 188 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 195 + 193 @@ -6106,11 +6094,11 @@ Jahr apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 191 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 197 + 195 @@ -6129,12 +6117,12 @@ 129 - + If a translation is missing, kindly support us in extending it here. Wenn eine Übersetzung fehlt, unterstütze uns bitte dabei, sie hier zu ergänzen. apps/client/src/app/components/user-account-settings/user-account-settings.html - 55 + 50 @@ -6246,7 +6234,7 @@ Anlage Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 51 + 50 @@ -6254,7 +6242,7 @@ Absolute Währungsperformance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 73 + 72 @@ -6262,7 +6250,7 @@ Währungsperformance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 98 + 96 @@ -6270,7 +6258,7 @@ Absolute Netto Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 121 + 119 @@ -6278,7 +6266,7 @@ Netto Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 140 + 138 @@ -6341,12 +6329,12 @@ 8 - + If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. Wenn du heute in den Ruhestand gehen würdest, könnest du pro Jahr oder pro Monatentnehmen, bezogen auf dein Gesamtanlagevermögen von und einer Entnahmerate von 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 68 + 67 @@ -6394,7 +6382,7 @@ Daten einholen apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 141 @@ -6502,7 +6490,7 @@ Job ausführen apps/client/src/app/components/admin-jobs/admin-jobs.html - 183 + 174 @@ -6510,7 +6498,7 @@ Priorität apps/client/src/app/components/admin-jobs/admin-jobs.html - 63 + 62 @@ -6590,7 +6578,7 @@ Gefahrenzone apps/client/src/app/components/user-account-settings/user-account-settings.html - 243 + 238 @@ -6598,7 +6586,7 @@ Konto schliessen apps/client/src/app/components/user-account-settings/user-account-settings.html - 278 + 273 @@ -6617,6 +6605,14 @@ 340 + + Join now or check out the example account + Melde dich jetzt an oder probiere die Live Demo aus + + apps/client/src/app/pages/landing/landing-page.html + 426 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index edfce3d63..16dd3e6a6 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -7,23 +7,23 @@ Crear una cuenta apps/client/src/app/app.component.html - 18 + 13 apps/client/src/app/pages/register/register-page.html - 26 + 27 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html 2 - + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. El riesgo de pérdida en trading puede ser importante. No es aconsejable invertir dinero que puedas necesitar a corto plazo. apps/client/src/app/app.component.html - 182 + 194 @@ -39,7 +39,7 @@ Tipo apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + 31 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -47,7 +47,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 15 libs/ui/src/lib/activities-table/activities-table.component.html @@ -67,7 +67,7 @@ Revoca apps/client/src/app/components/access-table/access-table.component.html - 63 + 62 @@ -91,7 +91,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 113 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -103,7 +103,7 @@ apps/client/src/app/components/admin-users/admin-users.html - 134 + 135 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -123,7 +123,7 @@ Nombre apps/client/src/app/components/accounts-table/accounts-table.component.html - 39 + 43 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -139,7 +139,7 @@ apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + 15 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -147,7 +147,7 @@ apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + 15 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -155,7 +155,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + 137 libs/ui/src/lib/activities-table/activities-table.component.html @@ -175,7 +175,7 @@ Total apps/client/src/app/components/accounts-table/accounts-table.component.html - 50 + 55 @@ -183,43 +183,43 @@ Valor apps/client/src/app/components/accounts-table/accounts-table.component.html - 165 + 171 apps/client/src/app/components/accounts-table/accounts-table.component.html - 200 + 206 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + 53 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + 198 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + 201 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + 204 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + 268 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + 271 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + 274 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + 277 libs/ui/src/lib/account-balances/account-balances.component.html @@ -247,19 +247,19 @@ Edita apps/client/src/app/components/accounts-table/accounts-table.component.html - 271 + 278 apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + 177 apps/client/src/app/components/admin-overview/admin-overview.html - 80 + 83 apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + 92 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -275,11 +275,11 @@ Elimina apps/client/src/app/components/accounts-table/accounts-table.component.html - 281 + 288 apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + 196 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -287,15 +287,15 @@ apps/client/src/app/components/admin-overview/admin-overview.html - 90 + 93 apps/client/src/app/components/admin-overview/admin-overview.html - 199 + 210 apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + 102 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -323,7 +323,7 @@ Elimina los trabajos apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + 149 @@ -331,7 +331,7 @@ Símbolo apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + 44 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -343,7 +343,7 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + 36 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -355,11 +355,11 @@ Fuente de datos apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + 53 apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 55 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -367,7 +367,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + 153 @@ -375,7 +375,7 @@ Intentos apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + 81 @@ -383,7 +383,7 @@ Creado apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + 90 @@ -391,7 +391,7 @@ Finalizado apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + 99 @@ -399,7 +399,7 @@ Estado apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + 108 @@ -410,8 +410,8 @@ 67 - - Historical Market Data + + Historical Market Data Datos históricos del mercado apps/client/src/app/components/admin-jobs/admin-jobs.html @@ -423,7 +423,7 @@ Visualiza los datos apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + 164 @@ -431,7 +431,7 @@ Visualiza Stacktrace apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + 171 @@ -439,7 +439,7 @@ Elimina el trabajo apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + 177 @@ -459,7 +459,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + 159 libs/ui/src/lib/account-balances/account-balances.component.html @@ -495,15 +495,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + 43 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + 42 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + 25 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -515,11 +515,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + 65 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + 421 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -539,15 +539,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + 50 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + 49 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + 32 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -559,7 +559,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + 428 @@ -567,7 +567,7 @@ Primera actividad apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 82 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -595,7 +595,7 @@ Datos históricos apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 100 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -655,7 +655,7 @@ por usario apps/client/src/app/components/admin-overview/admin-overview.html - 32 + 33 @@ -663,7 +663,7 @@ Recoger datos recientes apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + 146 @@ -671,7 +671,7 @@ Recoger todos los datos apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + 149 @@ -679,7 +679,7 @@ Recoger los datos del perfil apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + 152 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -691,7 +691,7 @@ Tipos de cambio apps/client/src/app/components/admin-overview/admin-overview.html - 37 + 39 @@ -699,7 +699,7 @@ Añadir divisa apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 109 @@ -707,7 +707,7 @@ Mensaje del sistema apps/client/src/app/components/admin-overview/admin-overview.html - 145 + 153 @@ -715,7 +715,7 @@ Establecer mensaje apps/client/src/app/components/admin-overview/admin-overview.html - 165 + 175 @@ -723,7 +723,7 @@ Modo de solo lectura apps/client/src/app/components/admin-overview/admin-overview.html - 123 + 129 @@ -731,7 +731,7 @@ Cupones apps/client/src/app/components/admin-overview/admin-overview.html - 173 + 183 @@ -739,7 +739,7 @@ Añadir apps/client/src/app/components/admin-overview/admin-overview.html - 231 + 243 libs/ui/src/lib/account-balances/account-balances.component.html @@ -751,7 +751,7 @@ Tareas domésticas apps/client/src/app/components/admin-overview/admin-overview.html - 238 + 251 @@ -759,7 +759,7 @@ Limpiar caché apps/client/src/app/components/admin-overview/admin-overview.html - 242 + 255 @@ -775,7 +775,7 @@ Usuario apps/client/src/app/components/header/header.component.html - 230 + 223 @@ -783,7 +783,7 @@ Registro apps/client/src/app/components/admin-users/admin-users.html - 96 + 97 @@ -791,15 +791,15 @@ Contratación diaria apps/client/src/app/components/admin-users/admin-users.html - 158 + 157 - + Last Request Última petición apps/client/src/app/components/admin-users/admin-users.html - 183 + 181 @@ -819,7 +819,7 @@ apps/client/src/app/components/header/header.component.html - 244 + 239 @@ -831,7 +831,7 @@ apps/client/src/app/components/header/header.component.html - 254 + 249 @@ -839,11 +839,11 @@ Cuentas apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 + 65 apps/client/src/app/components/admin-users/admin-users.html - 113 + 114 apps/client/src/app/components/header/header.component.html @@ -851,7 +851,7 @@ apps/client/src/app/components/header/header.component.html - 262 + 257 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -871,11 +871,11 @@ Control de administrador apps/client/src/app/components/header/header.component.html - 67 + 68 apps/client/src/app/components/header/header.component.html - 278 + 273 @@ -883,15 +883,15 @@ Recursos apps/client/src/app/app.component.html - 60 + 61 apps/client/src/app/components/header/header.component.html - 80 + 82 apps/client/src/app/components/header/header.component.html - 289 + 285 apps/client/src/app/pages/resources/resources-page.html @@ -903,7 +903,7 @@ Precios apps/client/src/app/app.component.html - 86 + 94 apps/client/src/app/components/header/header.component.html @@ -911,15 +911,15 @@ apps/client/src/app/components/header/header.component.html - 301 + 296 apps/client/src/app/components/header/header.component.html - 370 + 367 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 188 + 186 @@ -927,15 +927,15 @@ Sobre apps/client/src/app/app.component.html - 66 + 67 apps/client/src/app/components/header/header.component.html - 111 + 112 apps/client/src/app/components/header/header.component.html - 357 + 353 @@ -943,7 +943,7 @@ apps/client/src/app/components/header/header.component.html - 211 + 205 @@ -951,7 +951,7 @@ Mi Ghostfolio apps/client/src/app/components/header/header.component.html - 269 + 264 @@ -959,7 +959,7 @@ Sobre Ghostfolio apps/client/src/app/components/header/header.component.html - 309 + 305 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -971,11 +971,11 @@ Funcionalidades apps/client/src/app/app.component.html - 73 + 76 apps/client/src/app/components/header/header.component.html - 344 + 340 apps/client/src/app/pages/features/features-page.html @@ -991,7 +991,7 @@ apps/client/src/app/components/header/header.component.html - 386 + 382 apps/client/src/app/components/home-market/home-market.html @@ -1011,7 +1011,7 @@ apps/client/src/app/pages/public/public-page.html - 153 + 164 @@ -1051,7 +1051,7 @@ Últimos días apps/client/src/app/components/home-market/home-market.html - 6 + 7 @@ -1071,7 +1071,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 + 245 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1087,15 +1087,19 @@ apps/client/src/app/pages/landing/landing-page.html - 423 + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 442 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 + 97 apps/client/src/app/pages/register/register-page.html - 29 + 30 apps/client/src/app/pages/webauthn/webauthn-page.html @@ -1131,7 +1135,7 @@ Iniciar sesión apps/client/src/app/components/header/header.component.html - 399 + 396 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1279,11 +1283,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 + 195 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 265 @@ -1311,7 +1315,7 @@ apps/client/src/app/pages/public/public-page.html - 45 + 50 @@ -1343,7 +1347,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 + 377 libs/ui/src/lib/assistant/assistant.html @@ -1491,7 +1495,7 @@ Política de privacidad apps/client/src/app/app.component.html - 90 + 100 apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html @@ -1503,7 +1507,7 @@ Blog apps/client/src/app/app.component.html - 68 + 70 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -1591,7 +1595,7 @@ Registro de cambios apps/client/src/app/app.component.html - 71 + 74 apps/client/src/app/pages/about/changelog/changelog-page.html @@ -1603,7 +1607,7 @@ Licencia de uso apps/client/src/app/app.component.html - 80 + 85 apps/client/src/app/pages/about/license/license-page.html @@ -1675,7 +1679,7 @@ Cuenta apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 + 85 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1695,11 +1699,11 @@ por año apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 + 33 apps/client/src/app/pages/pricing/pricing-page.html - 254 + 256 @@ -1707,7 +1711,7 @@ Prueba Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 + 40 @@ -1715,7 +1719,7 @@ Canjea el cupón apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 + 54 @@ -1739,7 +1743,7 @@ Ubicación apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 + 117 @@ -1747,7 +1751,7 @@ Formato de fecha y número apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 + 119 @@ -1755,7 +1759,7 @@ Modo Zen apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 + 167 apps/client/src/app/pages/features/features-page.html @@ -1767,7 +1771,7 @@ Accede con huella digital apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 + 185 @@ -1779,7 +1783,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 + 218 @@ -1843,7 +1847,7 @@ Divisa base apps/client/src/app/components/accounts-table/accounts-table.component.html - 60 + 65 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1859,7 +1863,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + 143 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1875,7 +1879,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 130 + 136 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1891,7 +1895,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 81 + 86 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1927,7 +1931,7 @@ Como estás conectado, no puedes acceder a la cuenta de demostración. apps/client/src/app/pages/demo/demo-page.component.ts - 35 + 33 @@ -2071,7 +2075,7 @@ apps/client/src/app/pages/public/public-page.html - 76 + 87 @@ -2099,7 +2103,7 @@ Cronología de la inversión apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 + 297 @@ -2107,7 +2111,7 @@ Lo mejor apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 + 166 @@ -2115,7 +2119,7 @@ Lo peor apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 + 215 @@ -2147,7 +2151,7 @@ Regla del 4% apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 + 40 @@ -2195,7 +2199,7 @@ Actualizar opereación apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 + 8 @@ -2203,11 +2207,11 @@ Añadir operación apps/client/src/app/components/home-overview/home-overview.html - 56 + 52 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 + 10 @@ -2223,11 +2227,11 @@ Nombre, símbolo o ISIN apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + 26 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + 123 @@ -2239,7 +2243,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 + 182 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2251,11 +2255,11 @@ Precio unitario apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 + 207 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 + 280 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2267,11 +2271,11 @@ Comisión apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 300 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 324 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2291,7 +2295,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + 333 @@ -2299,7 +2303,7 @@ Tipo de activo apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 64 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2315,7 +2319,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + 348 @@ -2371,7 +2375,7 @@ Divisas apps/client/src/app/pages/public/public-page.html - 30 + 32 @@ -2379,7 +2383,7 @@ Continentes apps/client/src/app/pages/public/public-page.html - 60 + 68 @@ -2387,7 +2391,7 @@ Ghostfolio te permite hacer un seguimiento de tu riqueza. apps/client/src/app/pages/public/public-page.html - 148 + 159 @@ -2403,7 +2407,7 @@ Continuar con Internet Identity apps/client/src/app/pages/register/register-page.html - 41 + 42 @@ -2411,7 +2415,7 @@ Continuar con Google apps/client/src/app/pages/register/register-page.html - 51 + 53 @@ -2579,7 +2583,7 @@ Idioma apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 + 48 @@ -2587,7 +2591,7 @@ Comenzar apps/client/src/app/components/header/header.component.html - 411 + 406 @@ -2647,7 +2651,7 @@ apps/client/src/app/pages/public/public-page.html - 93 + 104 @@ -2655,7 +2659,7 @@ Subtipo de activo apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 73 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2671,7 +2675,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + 364 @@ -2699,7 +2703,7 @@ apps/client/src/app/pages/public/public-page.html - 111 + 122 @@ -2711,7 +2715,7 @@ apps/client/src/app/pages/public/public-page.html - 102 + 113 @@ -2799,7 +2803,7 @@ Número de sectores apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + 109 @@ -2807,7 +2811,7 @@ Número de países apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + 118 @@ -2867,7 +2871,7 @@ Funcionalidades experimentales apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 + 200 @@ -2883,7 +2887,7 @@ Comparar con... apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 + 18 @@ -2915,7 +2919,7 @@ Apariencia apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 + 142 @@ -2923,7 +2927,7 @@ Automático apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 + 156 @@ -2931,7 +2935,7 @@ Claro apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 + 157 @@ -2939,7 +2943,7 @@ Oscuro apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 + 158 @@ -2955,7 +2959,7 @@ Evolución cartera apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 + 268 @@ -3179,7 +3183,7 @@ Los siguientes formatos de archivo están soportados: apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 + 90 @@ -3187,11 +3191,11 @@ Volver apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 + 144 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 + 178 @@ -3199,11 +3203,15 @@ Comunidad apps/client/src/app/app.component.html - 105 + 118 apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + 77 + + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 82 apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -3219,20 +3227,16 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + 99 apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + 104 apps/client/src/app/components/user-account-settings/user-account-settings.html 108 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 - apps/client/src/app/pages/features/features-page.html 256 @@ -3243,7 +3247,7 @@ Recuento de actividades apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 91 @@ -3279,7 +3283,7 @@ Dividend Timeline apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 + 356 @@ -3295,7 +3299,7 @@ User Signup apps/client/src/app/components/admin-overview/admin-overview.html - 110 + 115 @@ -3315,11 +3319,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 + 153 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 + 186 @@ -3363,7 +3367,7 @@ Holding apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 + 32 @@ -3371,7 +3375,7 @@ Load Dividends apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 + 68 @@ -3459,15 +3463,15 @@ Distraction-free experience for turbulent times apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 + 168 - + Sneak peek at upcoming functionality Sneak peek at upcoming functionality apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 + 201 @@ -3487,11 +3491,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 55 + 57 apps/client/src/app/pages/pricing/pricing-page.html - 199 + 203 @@ -3503,11 +3507,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 63 + 65 apps/client/src/app/pages/pricing/pricing-page.html - 207 + 211 @@ -3519,11 +3523,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 67 + 69 apps/client/src/app/pages/pricing/pricing-page.html - 211 + 215 @@ -3535,11 +3539,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 83 + 85 apps/client/src/app/pages/pricing/pricing-page.html - 231 + 235 @@ -3555,7 +3559,7 @@ Upgrade Plan apps/client/src/app/components/header/header.component.html - 182 + 180 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3563,11 +3567,11 @@ apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 + 16 apps/client/src/app/pages/pricing/pricing-page.html - 268 + 270 @@ -3575,7 +3579,7 @@ For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. apps/client/src/app/pages/pricing/pricing-page.html - 36 + 38 @@ -3583,15 +3587,15 @@ Unlimited Transactions apps/client/src/app/pages/pricing/pricing-page.html - 43 + 45 apps/client/src/app/pages/pricing/pricing-page.html - 126 + 129 apps/client/src/app/pages/pricing/pricing-page.html - 187 + 191 @@ -3599,15 +3603,15 @@ Unlimited Accounts apps/client/src/app/pages/pricing/pricing-page.html - 47 + 49 apps/client/src/app/pages/pricing/pricing-page.html - 130 + 133 apps/client/src/app/pages/pricing/pricing-page.html - 191 + 195 @@ -3615,15 +3619,15 @@ Portfolio Performance apps/client/src/app/pages/pricing/pricing-page.html - 51 + 53 apps/client/src/app/pages/pricing/pricing-page.html - 134 + 137 apps/client/src/app/pages/pricing/pricing-page.html - 195 + 199 @@ -3631,7 +3635,7 @@ Self-hosted, update manually. apps/client/src/app/pages/pricing/pricing-page.html - 92 + 94 @@ -3639,11 +3643,11 @@ Free apps/client/src/app/pages/pricing/pricing-page.html - 93 + 95 apps/client/src/app/pages/pricing/pricing-page.html - 150 + 153 @@ -3651,7 +3655,7 @@ For new investors who are just getting started with trading. apps/client/src/app/pages/pricing/pricing-page.html - 120 + 123 @@ -3659,11 +3663,11 @@ Fully managed Ghostfolio cloud offering. apps/client/src/app/pages/pricing/pricing-page.html - 149 + 152 apps/client/src/app/pages/pricing/pricing-page.html - 240 + 244 @@ -3671,7 +3675,7 @@ For ambitious investors who need the full picture of their financial assets. apps/client/src/app/pages/pricing/pricing-page.html - 180 + 184 @@ -3679,15 +3683,15 @@ One-time payment, no auto-renewal. apps/client/src/app/pages/pricing/pricing-page.html - 280 + 279 - + Get Started Get Started - apps/client/src/app/pages/pricing/pricing-page.html - 291 + apps/client/src/app/pages/landing/landing-page.html + 438 @@ -3695,7 +3699,7 @@ It’s free. apps/client/src/app/pages/pricing/pricing-page.html - 294 + 300 @@ -3711,7 +3715,7 @@ apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 + 158 @@ -3727,11 +3731,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 59 + 61 apps/client/src/app/pages/pricing/pricing-page.html - 203 + 207 @@ -3747,15 +3751,15 @@ Data Import and Export apps/client/src/app/pages/pricing/pricing-page.html - 71 + 73 apps/client/src/app/pages/pricing/pricing-page.html - 138 + 141 apps/client/src/app/pages/pricing/pricing-page.html - 215 + 219 @@ -3771,7 +3775,7 @@ Community Support apps/client/src/app/pages/pricing/pricing-page.html - 88 + 90 @@ -3779,7 +3783,7 @@ Email and Chat Support apps/client/src/app/pages/pricing/pricing-page.html - 236 + 240 @@ -3806,12 +3810,12 @@ 2 - + Oops! Could not get the historical exchange rate from Oops! Could not get the historical exchange rate from apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 + 234 @@ -3839,7 +3843,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 226 + 230 @@ -3855,15 +3859,15 @@ Renew Plan apps/client/src/app/components/header/header.component.html - 190 + 185 apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 + 21 apps/client/src/app/pages/pricing/pricing-page.html - 276 + 275 @@ -3879,7 +3883,7 @@ Impersonate User apps/client/src/app/components/admin-users/admin-users.html - 222 + 218 @@ -3887,7 +3891,7 @@ Delete User apps/client/src/app/components/admin-users/admin-users.html - 232 + 229 @@ -3911,7 +3915,7 @@ Update platform apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 + 8 @@ -3919,7 +3923,7 @@ Add platform apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 + 10 @@ -3931,11 +3935,11 @@ apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 + 51 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 + 25 @@ -3959,7 +3963,7 @@ Update Cash Balance apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 + 111 @@ -4035,7 +4039,7 @@ Manage Benchmarks apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 + 35 @@ -4051,7 +4055,7 @@ Select File apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 + 22 @@ -4059,7 +4063,7 @@ Select Dividends apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 + 113 @@ -4067,7 +4071,7 @@ Select Activities apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 + 115 @@ -4099,7 +4103,7 @@ Personal Finance apps/client/src/app/app.component.html - 55 + 54 @@ -4107,7 +4111,7 @@ Frequently Asked Questions (FAQ) apps/client/src/app/app.component.html - 76 + 80 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -4119,7 +4123,7 @@ Current Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 + 318 @@ -4127,7 +4131,7 @@ Longest Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 + 327 @@ -4379,15 +4383,15 @@ ✅ Sí apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 109 + 115 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 116 + 122 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 130 + 134 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -4395,19 +4399,19 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 155 + 153 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 162 + 160 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 174 + 172 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 181 + 179 @@ -4415,39 +4419,39 @@ ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 111 + 117 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 134 + 136 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 145 + 143 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 157 + 155 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 164 + 162 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 176 + 174 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 183 + 181 - + ❌ No ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 118 + 124 @@ -4455,7 +4459,7 @@ Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 123 + 129 @@ -4463,7 +4467,7 @@ Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 150 + 148 @@ -4471,7 +4475,7 @@ Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 169 + 167 @@ -4479,7 +4483,7 @@ Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 202 + 201 @@ -4519,11 +4523,11 @@ Stocks, ETFs, bonds, cryptocurrencies, commodities apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 + 25 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 + 65 @@ -4531,7 +4535,7 @@ Mortgages, personal loans, credit cards apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 + 57 @@ -4539,7 +4543,7 @@ Luxury items, real estate, private companies apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 + 73 @@ -4679,7 +4683,7 @@ apps/client/src/app/pages/public/public-page.html - 123 + 132 libs/ui/src/lib/top-holdings/top-holdings.component.html @@ -4699,7 +4703,7 @@ Setup accounts apps/client/src/app/components/home-overview/home-overview.html - 48 + 44 @@ -4707,7 +4711,7 @@ Biometric Authentication apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 + 184 @@ -4759,7 +4763,7 @@ Stars on GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 88 apps/client/src/app/pages/open/open-page.html @@ -4771,7 +4775,7 @@ Pulls on Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 106 apps/client/src/app/pages/open/open-page.html @@ -4791,7 +4795,7 @@ Export Data apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 + 226 @@ -4863,7 +4867,7 @@ If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. apps/client/src/app/pages/pricing/pricing-page.html - 24 + 26 @@ -4890,16 +4894,8 @@ 41 - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - or - - apps/client/src/app/pages/landing/landing-page.html - 46 + apps/client/src/app/pages/pricing/pricing-page.html + 297 @@ -4907,7 +4903,7 @@ Monthly Active Users apps/client/src/app/pages/landing/landing-page.html - 69 + 70 @@ -4915,7 +4911,7 @@ As seen in apps/client/src/app/pages/landing/landing-page.html - 113 + 115 @@ -4923,7 +4919,7 @@ Protect your assets. Refine your personal investment strategy. apps/client/src/app/pages/landing/landing-page.html - 215 + 217 @@ -4931,7 +4927,7 @@ Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. apps/client/src/app/pages/landing/landing-page.html - 219 + 221 @@ -4939,7 +4935,7 @@ 360° View apps/client/src/app/pages/landing/landing-page.html - 230 + 232 @@ -4947,7 +4943,7 @@ Web3 Ready apps/client/src/app/pages/landing/landing-page.html - 241 + 243 @@ -4955,7 +4951,7 @@ Use Ghostfolio anonymously and own your financial data. apps/client/src/app/pages/landing/landing-page.html - 243 + 245 @@ -4963,7 +4959,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 251 + 253 @@ -4971,7 +4967,7 @@ Benefit from continuous improvements through a strong community. apps/client/src/app/pages/landing/landing-page.html - 253 + 255 @@ -4979,7 +4975,7 @@ Why Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 262 + 264 @@ -4987,7 +4983,7 @@ Ghostfolio is for you if you are... apps/client/src/app/pages/landing/landing-page.html - 263 + 265 @@ -4995,7 +4991,7 @@ trading stocks, ETFs or cryptocurrencies on multiple platforms apps/client/src/app/pages/landing/landing-page.html - 270 + 272 @@ -5003,7 +4999,7 @@ pursuing a buy & hold strategy apps/client/src/app/pages/landing/landing-page.html - 276 + 278 @@ -5011,7 +5007,7 @@ interested in getting insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 281 + 283 @@ -5019,7 +5015,7 @@ valuing privacy and data ownership apps/client/src/app/pages/landing/landing-page.html - 286 + 288 @@ -5027,7 +5023,7 @@ into minimalism apps/client/src/app/pages/landing/landing-page.html - 289 + 291 @@ -5035,7 +5031,7 @@ caring about diversifying your financial resources apps/client/src/app/pages/landing/landing-page.html - 293 + 295 @@ -5043,7 +5039,7 @@ interested in financial independence apps/client/src/app/pages/landing/landing-page.html - 297 + 299 @@ -5051,7 +5047,7 @@ saying no to spreadsheets in apps/client/src/app/pages/landing/landing-page.html - 301 + 303 @@ -5059,7 +5055,7 @@ still reading this list apps/client/src/app/pages/landing/landing-page.html - 304 + 306 @@ -5067,7 +5063,7 @@ Learn more about Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 309 + 311 @@ -5075,23 +5071,23 @@ What our users are saying apps/client/src/app/pages/landing/landing-page.html - 317 + 319 - + Members from around the globe are using Ghostfolio Premium Members from around the globe are using Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 349 + 358 - + How does Ghostfolio work? How does Ghostfolio work? apps/client/src/app/pages/landing/landing-page.html - 361 + 375 @@ -5099,47 +5095,39 @@ Sign up anonymously* apps/client/src/app/pages/landing/landing-page.html - 370 + 384 - + * no e-mail address nor credit card required * no e-mail address nor credit card required apps/client/src/app/pages/landing/landing-page.html - 372 + 386 - + Add any of your historical transactions Add any of your historical transactions apps/client/src/app/pages/landing/landing-page.html - 383 + 397 - + Get valuable insights of your portfolio composition Get valuable insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 + 409 - - Join now or check out the example account - Join now or check out the example account + + Are you ready? + Are you ready? apps/client/src/app/pages/landing/landing-page.html - 408 + 423 @@ -5151,7 +5139,7 @@ apps/client/src/app/pages/landing/landing-page.html - 424 + 443 @@ -5159,7 +5147,7 @@ Get the full picture of your personal finances across multiple platforms. apps/client/src/app/pages/landing/landing-page.html - 232 + 234 @@ -5167,7 +5155,7 @@ Get started in only 3 steps apps/client/src/app/pages/landing/landing-page.html - 364 + 378 @@ -5507,7 +5495,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 31 + 29 apps/client/src/app/pages/landing/landing-page.component.ts @@ -5555,7 +5543,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 32 + 30 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts @@ -5719,7 +5707,7 @@ Choose or drop a file here apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 + 84 @@ -5727,7 +5715,7 @@ You are using the Live Demo. apps/client/src/app/app.component.html - 17 + 12 @@ -5735,7 +5723,7 @@ One-time fee, annual account fees apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 + 33 @@ -5743,7 +5731,7 @@ Distribution of corporate earnings apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 + 41 @@ -5751,7 +5739,7 @@ Oops! Could not get the historical exchange rate from apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 + 312 @@ -5775,7 +5763,7 @@ Revenue for lending out money apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 + 49 @@ -5799,7 +5787,7 @@ Update tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 + 8 @@ -5807,7 +5795,7 @@ Add tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 + 10 @@ -5823,7 +5811,7 @@ Currency Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 + 134 @@ -5831,7 +5819,7 @@ Account Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 + 146 @@ -5839,7 +5827,7 @@ Transfer Cash Balance apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + 10 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -5883,7 +5871,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 + 32 @@ -5891,7 +5879,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 + 72 @@ -5938,12 +5926,12 @@ 84 - - Asset Profile - Asset Profile + + Asset Profile + Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + 35 @@ -6095,11 +6083,11 @@ Starting from apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 190 + 188 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 195 + 193 @@ -6107,11 +6095,11 @@ year apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 191 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 197 + 195 @@ -6130,12 +6118,12 @@ 129 - + If a translation is missing, kindly support us in extending it here. If a translation is missing, kindly support us in extending it here. apps/client/src/app/components/user-account-settings/user-account-settings.html - 55 + 50 @@ -6247,7 +6235,7 @@ Asset Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 51 + 50 @@ -6255,7 +6243,7 @@ Absolute Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 73 + 72 @@ -6263,7 +6251,7 @@ Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 98 + 96 @@ -6271,7 +6259,7 @@ Absolute Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 121 + 119 @@ -6279,7 +6267,7 @@ Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 140 + 138 @@ -6342,12 +6330,12 @@ 8 - + If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 68 + 67 @@ -6395,7 +6383,7 @@ Data Gathering apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 141 @@ -6503,7 +6491,7 @@ Execute Job apps/client/src/app/components/admin-jobs/admin-jobs.html - 183 + 174 @@ -6511,7 +6499,7 @@ Priority apps/client/src/app/components/admin-jobs/admin-jobs.html - 63 + 62 @@ -6591,7 +6579,7 @@ Danger Zone apps/client/src/app/components/user-account-settings/user-account-settings.html - 243 + 238 @@ -6599,7 +6587,7 @@ Close Account apps/client/src/app/components/user-account-settings/user-account-settings.html - 278 + 273 @@ -6618,6 +6606,14 @@ 340 + + Join now or check out the example account + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 426 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 80df87d68..4921caeb1 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -1,12 +1,12 @@ - + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. Le risque de perte en investissant peut être important. Il est déconseillé d’investir de l’argent dont vous pourriez avoir besoin à court terme. apps/client/src/app/app.component.html - 182 + 194 @@ -34,7 +34,7 @@ Type apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + 31 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -42,7 +42,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 15 libs/ui/src/lib/activities-table/activities-table.component.html @@ -62,7 +62,7 @@ Révoquer apps/client/src/app/components/access-table/access-table.component.html - 63 + 62 @@ -82,7 +82,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 81 + 86 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -102,7 +102,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 113 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -114,7 +114,7 @@ apps/client/src/app/components/admin-users/admin-users.html - 134 + 135 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -134,7 +134,7 @@ Nom apps/client/src/app/components/accounts-table/accounts-table.component.html - 39 + 43 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -150,7 +150,7 @@ apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + 15 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -158,7 +158,7 @@ apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + 15 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -166,7 +166,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + 137 libs/ui/src/lib/activities-table/activities-table.component.html @@ -186,7 +186,7 @@ Total apps/client/src/app/components/accounts-table/accounts-table.component.html - 50 + 55 @@ -194,7 +194,7 @@ Devise apps/client/src/app/components/accounts-table/accounts-table.component.html - 60 + 65 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -210,7 +210,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + 143 libs/ui/src/lib/activities-table/activities-table.component.html @@ -226,7 +226,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 130 + 136 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -238,43 +238,43 @@ Valeur apps/client/src/app/components/accounts-table/accounts-table.component.html - 165 + 171 apps/client/src/app/components/accounts-table/accounts-table.component.html - 200 + 206 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + 53 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + 198 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + 201 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + 204 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + 268 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + 271 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + 274 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + 277 libs/ui/src/lib/account-balances/account-balances.component.html @@ -302,19 +302,19 @@ Modifier apps/client/src/app/components/accounts-table/accounts-table.component.html - 271 + 278 apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + 177 apps/client/src/app/components/admin-overview/admin-overview.html - 80 + 83 apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + 92 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -330,11 +330,11 @@ Supprimer apps/client/src/app/components/accounts-table/accounts-table.component.html - 281 + 288 apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + 196 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -342,15 +342,15 @@ apps/client/src/app/components/admin-overview/admin-overview.html - 90 + 93 apps/client/src/app/components/admin-overview/admin-overview.html - 199 + 210 apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + 102 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -378,7 +378,7 @@ Symbole apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + 44 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -390,7 +390,7 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + 36 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -402,11 +402,11 @@ Source Données apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + 53 apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 55 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -414,7 +414,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + 153 @@ -422,7 +422,7 @@ Tentatives apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + 81 @@ -430,7 +430,7 @@ Créé apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + 90 @@ -438,7 +438,7 @@ Terminé apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + 99 @@ -446,7 +446,7 @@ Statut apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + 108 @@ -454,7 +454,7 @@ Supprimer Tâches apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + 149 @@ -465,8 +465,8 @@ 67 - - Historical Market Data + + Historical Market Data Données de Marché Historiques apps/client/src/app/components/admin-jobs/admin-jobs.html @@ -478,7 +478,7 @@ Voir Données apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + 164 @@ -486,7 +486,7 @@ Voir la Stacktrace apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + 171 @@ -494,7 +494,7 @@ Supprimer Tâche apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + 177 @@ -514,7 +514,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + 159 libs/ui/src/lib/account-balances/account-balances.component.html @@ -550,15 +550,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + 43 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + 42 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + 25 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -570,11 +570,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + 65 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + 421 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -594,15 +594,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + 50 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + 49 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + 32 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -614,7 +614,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + 428 @@ -630,7 +630,7 @@ Classe d’Actifs apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 64 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -646,7 +646,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + 348 @@ -654,7 +654,7 @@ Sous-classe d’Actifs apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 73 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -670,7 +670,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + 364 @@ -678,7 +678,7 @@ Première Activité apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 82 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -698,7 +698,7 @@ Nombre d’Activités apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 91 @@ -706,7 +706,7 @@ Données Historiques apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 100 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -718,7 +718,7 @@ Nombre de Secteurs apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + 109 @@ -726,7 +726,7 @@ Nombre de Pays apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + 118 @@ -734,7 +734,7 @@ Obtenir les Données Récentes apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + 146 @@ -742,7 +742,7 @@ Obtenir toutes les Données apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + 149 @@ -750,7 +750,7 @@ Obtenir les Données du Profil apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + 152 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -810,7 +810,7 @@ apps/client/src/app/pages/public/public-page.html - 45 + 50 @@ -850,7 +850,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + 333 @@ -914,7 +914,7 @@ par Utilisateur apps/client/src/app/components/admin-overview/admin-overview.html - 32 + 33 @@ -922,7 +922,7 @@ Taux de Conversion apps/client/src/app/components/admin-overview/admin-overview.html - 37 + 39 @@ -930,7 +930,7 @@ Ajouter Devise apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 109 @@ -946,7 +946,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 + 377 libs/ui/src/lib/assistant/assistant.html @@ -958,7 +958,7 @@ Inscription de Nouveaux Utilisateurs apps/client/src/app/components/admin-overview/admin-overview.html - 110 + 115 @@ -966,7 +966,7 @@ Mode Lecture Seule apps/client/src/app/components/admin-overview/admin-overview.html - 123 + 129 @@ -974,7 +974,7 @@ Message Système apps/client/src/app/components/admin-overview/admin-overview.html - 145 + 153 @@ -982,7 +982,7 @@ Définir Message apps/client/src/app/components/admin-overview/admin-overview.html - 165 + 175 @@ -990,7 +990,7 @@ Codes promotionnels apps/client/src/app/components/admin-overview/admin-overview.html - 173 + 183 @@ -998,7 +998,7 @@ Ajouter apps/client/src/app/components/admin-overview/admin-overview.html - 231 + 243 libs/ui/src/lib/account-balances/account-balances.component.html @@ -1010,7 +1010,7 @@ Maintenance apps/client/src/app/components/admin-overview/admin-overview.html - 238 + 251 @@ -1018,7 +1018,7 @@ Vider le Cache apps/client/src/app/components/admin-overview/admin-overview.html - 242 + 255 @@ -1034,7 +1034,7 @@ Utilisateur apps/client/src/app/components/header/header.component.html - 230 + 223 @@ -1042,7 +1042,7 @@ Inscription apps/client/src/app/components/admin-users/admin-users.html - 96 + 97 @@ -1050,11 +1050,11 @@ Comptes apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 + 65 apps/client/src/app/components/admin-users/admin-users.html - 113 + 114 apps/client/src/app/components/header/header.component.html @@ -1062,7 +1062,7 @@ apps/client/src/app/components/header/header.component.html - 262 + 257 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1082,15 +1082,15 @@ Engagement par Jour apps/client/src/app/components/admin-users/admin-users.html - 158 + 157 - + Last Request Dernière Requête apps/client/src/app/components/admin-users/admin-users.html - 183 + 181 @@ -1114,7 +1114,7 @@ Comparer avec... apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 + 18 @@ -1154,7 +1154,7 @@ apps/client/src/app/components/header/header.component.html - 244 + 239 @@ -1166,7 +1166,7 @@ apps/client/src/app/components/header/header.component.html - 254 + 249 @@ -1174,11 +1174,11 @@ Contrôle Administrateur apps/client/src/app/components/header/header.component.html - 67 + 68 apps/client/src/app/components/header/header.component.html - 278 + 273 @@ -1186,15 +1186,15 @@ Ressources apps/client/src/app/app.component.html - 60 + 61 apps/client/src/app/components/header/header.component.html - 80 + 82 apps/client/src/app/components/header/header.component.html - 289 + 285 apps/client/src/app/pages/resources/resources-page.html @@ -1206,7 +1206,7 @@ Prix apps/client/src/app/app.component.html - 86 + 94 apps/client/src/app/components/header/header.component.html @@ -1214,15 +1214,15 @@ apps/client/src/app/components/header/header.component.html - 301 + 296 apps/client/src/app/components/header/header.component.html - 370 + 367 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 188 + 186 @@ -1230,15 +1230,15 @@ À propos apps/client/src/app/app.component.html - 66 + 67 apps/client/src/app/components/header/header.component.html - 111 + 112 apps/client/src/app/components/header/header.component.html - 357 + 353 @@ -1246,7 +1246,7 @@ Moi apps/client/src/app/components/header/header.component.html - 211 + 205 @@ -1254,7 +1254,7 @@ Mon Ghostfolio apps/client/src/app/components/header/header.component.html - 269 + 264 @@ -1262,7 +1262,7 @@ À propos de Ghostfolio apps/client/src/app/components/header/header.component.html - 309 + 305 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1274,11 +1274,11 @@ Fonctionnalités apps/client/src/app/app.component.html - 73 + 76 apps/client/src/app/components/header/header.component.html - 344 + 340 apps/client/src/app/pages/features/features-page.html @@ -1294,7 +1294,7 @@ apps/client/src/app/components/header/header.component.html - 386 + 382 apps/client/src/app/components/home-market/home-market.html @@ -1310,7 +1310,7 @@ Se connecter apps/client/src/app/components/header/header.component.html - 399 + 396 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1322,7 +1322,7 @@ Démarrer apps/client/src/app/components/header/header.component.html - 411 + 406 @@ -1386,7 +1386,7 @@ derniers jours apps/client/src/app/components/home-market/home-market.html - 6 + 7 @@ -1422,7 +1422,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 + 245 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1438,15 +1438,19 @@ apps/client/src/app/pages/landing/landing-page.html - 423 + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 442 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 + 97 apps/client/src/app/pages/register/register-page.html - 29 + 30 apps/client/src/app/pages/webauthn/webauthn-page.html @@ -1626,11 +1630,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 + 195 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 265 @@ -1686,7 +1690,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 + 182 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1830,7 +1834,7 @@ Historique des modifications apps/client/src/app/app.component.html - 71 + 74 apps/client/src/app/pages/about/changelog/changelog-page.html @@ -1842,7 +1846,7 @@ License apps/client/src/app/app.component.html - 80 + 85 apps/client/src/app/pages/about/license/license-page.html @@ -1866,7 +1870,7 @@ Politique de Vie Privée apps/client/src/app/app.component.html - 90 + 100 apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html @@ -1934,7 +1938,7 @@ Compte apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 + 85 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1954,11 +1958,11 @@ par an apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 + 33 apps/client/src/app/pages/pricing/pricing-page.html - 254 + 256 @@ -1966,7 +1970,7 @@ Essayer Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 + 40 @@ -1974,7 +1978,7 @@ Utiliser un Code Promotionnel apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 + 54 @@ -1998,7 +2002,7 @@ Langue apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 + 48 @@ -2006,11 +2010,15 @@ Communauté apps/client/src/app/app.component.html - 105 + 118 apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + 77 + + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 82 apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -2026,20 +2034,16 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + 99 apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + 104 apps/client/src/app/components/user-account-settings/user-account-settings.html 108 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 - apps/client/src/app/pages/features/features-page.html 256 @@ -2050,7 +2054,7 @@ Paramètres régionaux apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 + 117 @@ -2058,7 +2062,7 @@ Format de date et d’heure apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 + 119 @@ -2066,7 +2070,7 @@ Apparence apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 + 142 @@ -2074,7 +2078,7 @@ Auto apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 + 156 @@ -2082,7 +2086,7 @@ Clair apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 + 157 @@ -2090,7 +2094,7 @@ Sombre apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 + 158 @@ -2098,7 +2102,7 @@ Mode Zen apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 + 167 apps/client/src/app/pages/features/features-page.html @@ -2110,7 +2114,7 @@ Se connecter avec empreinte apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 + 185 @@ -2118,7 +2122,7 @@ Fonctionnalités expérimentales apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 + 200 @@ -2130,7 +2134,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 + 218 @@ -2242,7 +2246,7 @@ Blog apps/client/src/app/app.component.html - 68 + 70 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -2330,7 +2334,7 @@ Puisque vous êtes déjà connecté·e, vous ne pouvez pas accéder au compte de démonstration. apps/client/src/app/pages/demo/demo-page.component.ts - 35 + 33 @@ -2418,7 +2422,7 @@ Mettre à jour Activité apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 + 8 @@ -2426,11 +2430,11 @@ Ajouter Activité apps/client/src/app/components/home-overview/home-overview.html - 56 + 52 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 + 10 @@ -2446,11 +2450,11 @@ Nom, symbole, ou ISIN apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + 26 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + 123 @@ -2458,11 +2462,11 @@ Prix Unitaire apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 + 207 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 + 280 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2474,11 +2478,11 @@ Frais apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 300 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 324 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2514,7 +2518,7 @@ Les formats de fichier suivants sont supportés : apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 + 90 @@ -2522,11 +2526,11 @@ Retour apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 + 144 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 + 178 @@ -2538,11 +2542,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 + 153 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 + 186 @@ -2638,7 +2642,7 @@ apps/client/src/app/pages/public/public-page.html - 76 + 87 @@ -2650,7 +2654,7 @@ apps/client/src/app/pages/public/public-page.html - 93 + 104 @@ -2662,7 +2666,7 @@ apps/client/src/app/pages/public/public-page.html - 102 + 113 @@ -2674,7 +2678,7 @@ apps/client/src/app/pages/public/public-page.html - 111 + 122 @@ -2730,7 +2734,7 @@ Haut apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 + 166 @@ -2738,7 +2742,7 @@ Bas apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 + 215 @@ -2746,7 +2750,7 @@ Évolution du Portefeuille apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 + 268 @@ -2754,7 +2758,7 @@ Historique des Investissements apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 + 297 @@ -2762,7 +2766,7 @@ Historique des Dividendes apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 + 356 @@ -2794,7 +2798,7 @@ Règle des 4% apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 + 40 @@ -2838,7 +2842,7 @@ Devises apps/client/src/app/pages/public/public-page.html - 30 + 32 @@ -2846,7 +2850,7 @@ Continents apps/client/src/app/pages/public/public-page.html - 60 + 68 @@ -2854,7 +2858,7 @@ Ghostfolio vous aide à garder un aperçu de votre patrimoine. apps/client/src/app/pages/public/public-page.html - 148 + 159 @@ -2866,7 +2870,7 @@ apps/client/src/app/pages/public/public-page.html - 153 + 164 @@ -2882,11 +2886,11 @@ Creér Compte apps/client/src/app/app.component.html - 18 + 13 apps/client/src/app/pages/register/register-page.html - 26 + 27 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -2898,7 +2902,7 @@ Continue avec Internet Identity apps/client/src/app/pages/register/register-page.html - 41 + 42 @@ -2906,7 +2910,7 @@ Continuer avec Google apps/client/src/app/pages/register/register-page.html - 51 + 53 @@ -3362,7 +3366,7 @@ Position apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 + 32 @@ -3370,7 +3374,7 @@ Charger Dividendes apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 + 68 @@ -3458,15 +3462,15 @@ Expérience sans distraction pour les périodes tumultueuses apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 + 168 - + Sneak peek at upcoming functionality Avant-première de fonctionnalités futures apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 + 201 @@ -3486,11 +3490,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 55 + 57 apps/client/src/app/pages/pricing/pricing-page.html - 199 + 203 @@ -3502,11 +3506,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 63 + 65 apps/client/src/app/pages/pricing/pricing-page.html - 207 + 211 @@ -3518,11 +3522,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 67 + 69 apps/client/src/app/pages/pricing/pricing-page.html - 211 + 215 @@ -3534,11 +3538,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 83 + 85 apps/client/src/app/pages/pricing/pricing-page.html - 231 + 235 @@ -3554,7 +3558,7 @@ Mettre à niveau l’Abonnement apps/client/src/app/components/header/header.component.html - 182 + 180 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3562,11 +3566,11 @@ apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 + 16 apps/client/src/app/pages/pricing/pricing-page.html - 268 + 270 @@ -3574,7 +3578,7 @@ Pour les investisseurs à l’aise avec la technologie qui préfèrent héberger Ghostfolio sur leur propre infrastructure. apps/client/src/app/pages/pricing/pricing-page.html - 36 + 38 @@ -3582,15 +3586,15 @@ Transactions Illimitées apps/client/src/app/pages/pricing/pricing-page.html - 43 + 45 apps/client/src/app/pages/pricing/pricing-page.html - 126 + 129 apps/client/src/app/pages/pricing/pricing-page.html - 187 + 191 @@ -3598,15 +3602,15 @@ Comptes illimités apps/client/src/app/pages/pricing/pricing-page.html - 47 + 49 apps/client/src/app/pages/pricing/pricing-page.html - 130 + 133 apps/client/src/app/pages/pricing/pricing-page.html - 191 + 195 @@ -3614,15 +3618,15 @@ Performance du Portefeuille apps/client/src/app/pages/pricing/pricing-page.html - 51 + 53 apps/client/src/app/pages/pricing/pricing-page.html - 134 + 137 apps/client/src/app/pages/pricing/pricing-page.html - 195 + 199 @@ -3630,7 +3634,7 @@ Hébergé localement, mises à jour manuelles. apps/client/src/app/pages/pricing/pricing-page.html - 92 + 94 @@ -3638,11 +3642,11 @@ Gratuit apps/client/src/app/pages/pricing/pricing-page.html - 93 + 95 apps/client/src/app/pages/pricing/pricing-page.html - 150 + 153 @@ -3650,7 +3654,7 @@ Pour les nouveaux investisseurs qui débutent en Bourse. apps/client/src/app/pages/pricing/pricing-page.html - 120 + 123 @@ -3658,11 +3662,11 @@ Offre Ghostfolio cloud complètement administrée. apps/client/src/app/pages/pricing/pricing-page.html - 149 + 152 apps/client/src/app/pages/pricing/pricing-page.html - 240 + 244 @@ -3670,7 +3674,7 @@ Pour les investisseurs ambitieux qui ont besoin d’une vue complète de leurs actifs financiers. apps/client/src/app/pages/pricing/pricing-page.html - 180 + 184 @@ -3678,15 +3682,15 @@ Paiement unique, sans auto-renouvellement. apps/client/src/app/pages/pricing/pricing-page.html - 280 + 279 - + Get Started Débuter - apps/client/src/app/pages/pricing/pricing-page.html - 291 + apps/client/src/app/pages/landing/landing-page.html + 438 @@ -3694,7 +3698,7 @@ C’est gratuit. apps/client/src/app/pages/pricing/pricing-page.html - 294 + 300 @@ -3710,7 +3714,7 @@ apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 + 158 @@ -3726,11 +3730,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 59 + 61 apps/client/src/app/pages/pricing/pricing-page.html - 203 + 207 @@ -3746,15 +3750,15 @@ Import et Export de Données apps/client/src/app/pages/pricing/pricing-page.html - 71 + 73 apps/client/src/app/pages/pricing/pricing-page.html - 138 + 141 apps/client/src/app/pages/pricing/pricing-page.html - 215 + 219 @@ -3770,7 +3774,7 @@ Support de la Communauté apps/client/src/app/pages/pricing/pricing-page.html - 88 + 90 @@ -3778,7 +3782,7 @@ Support par E-mail et Tchat apps/client/src/app/pages/pricing/pricing-page.html - 236 + 240 @@ -3805,12 +3809,12 @@ 2 - + Oops! Could not get the historical exchange rate from Oups ! Nous n’avons pas pu obtenir le taux de change historique à partir de apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 + 234 @@ -3838,7 +3842,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 226 + 230 @@ -3854,15 +3858,15 @@ Renouveler l’Abonnement apps/client/src/app/components/header/header.component.html - 190 + 185 apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 + 21 apps/client/src/app/pages/pricing/pricing-page.html - 276 + 275 @@ -3878,7 +3882,7 @@ Voir en tant que ... apps/client/src/app/components/admin-users/admin-users.html - 222 + 218 @@ -3886,7 +3890,7 @@ Supprimer l’Utilisateur apps/client/src/app/components/admin-users/admin-users.html - 232 + 229 @@ -3910,7 +3914,7 @@ Mettre à jour la Plateforme apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 + 8 @@ -3918,7 +3922,7 @@ Ajouter une Plateforme apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 + 10 @@ -3930,11 +3934,11 @@ apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 + 51 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 + 25 @@ -3958,7 +3962,7 @@ Mettre à jour le Solde apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 + 111 @@ -4034,7 +4038,7 @@ Gérer les Références apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 + 35 @@ -4050,7 +4054,7 @@ Selectionner un Fichier apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 + 22 @@ -4058,7 +4062,7 @@ Selectionner les Dividendes apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 + 113 @@ -4066,7 +4070,7 @@ Selectionner les Activités apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 + 115 @@ -4098,7 +4102,7 @@ Finance Personnelle apps/client/src/app/app.component.html - 55 + 54 @@ -4106,7 +4110,7 @@ Questions Fréquentes (FAQ) apps/client/src/app/app.component.html - 76 + 80 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -4118,7 +4122,7 @@ Série en cours apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 + 318 @@ -4126,7 +4130,7 @@ Série la plus longue apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 + 327 @@ -4378,15 +4382,15 @@ ✅ Oui apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 109 + 115 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 116 + 122 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 130 + 134 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -4394,19 +4398,19 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 155 + 153 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 162 + 160 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 174 + 172 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 181 + 179 @@ -4414,39 +4418,39 @@ ❌ Non apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 111 + 117 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 134 + 136 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 145 + 143 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 157 + 155 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 164 + 162 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 176 + 174 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 183 + 181 - + ❌ No ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 118 + 124 @@ -4454,7 +4458,7 @@ Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 123 + 129 @@ -4462,7 +4466,7 @@ Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 150 + 148 @@ -4470,7 +4474,7 @@ Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 169 + 167 @@ -4478,7 +4482,7 @@ Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 202 + 201 @@ -4518,11 +4522,11 @@ Stocks, ETFs, bonds, cryptocurrencies, commodities apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 + 25 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 + 65 @@ -4530,7 +4534,7 @@ Mortgages, personal loans, credit cards apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 + 57 @@ -4538,7 +4542,7 @@ Luxury items, real estate, private companies apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 + 73 @@ -4678,7 +4682,7 @@ apps/client/src/app/pages/public/public-page.html - 123 + 132 libs/ui/src/lib/top-holdings/top-holdings.component.html @@ -4698,7 +4702,7 @@ Setup accounts apps/client/src/app/components/home-overview/home-overview.html - 48 + 44 @@ -4706,7 +4710,7 @@ Biometric Authentication apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 + 184 @@ -4758,7 +4762,7 @@ Stars on GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 88 apps/client/src/app/pages/open/open-page.html @@ -4770,7 +4774,7 @@ Pulls on Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 106 apps/client/src/app/pages/open/open-page.html @@ -4790,7 +4794,7 @@ Export Data apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 + 226 @@ -4862,7 +4866,7 @@ If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. apps/client/src/app/pages/pricing/pricing-page.html - 24 + 26 @@ -4889,16 +4893,8 @@ 41 - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - or - - apps/client/src/app/pages/landing/landing-page.html - 46 + apps/client/src/app/pages/pricing/pricing-page.html + 297 @@ -4906,7 +4902,7 @@ Monthly Active Users apps/client/src/app/pages/landing/landing-page.html - 69 + 70 @@ -4914,7 +4910,7 @@ As seen in apps/client/src/app/pages/landing/landing-page.html - 113 + 115 @@ -4922,7 +4918,7 @@ Protect your assets. Refine your personal investment strategy. apps/client/src/app/pages/landing/landing-page.html - 215 + 217 @@ -4930,7 +4926,7 @@ Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. apps/client/src/app/pages/landing/landing-page.html - 219 + 221 @@ -4938,7 +4934,7 @@ 360° View apps/client/src/app/pages/landing/landing-page.html - 230 + 232 @@ -4946,7 +4942,7 @@ Web3 Ready apps/client/src/app/pages/landing/landing-page.html - 241 + 243 @@ -4954,7 +4950,7 @@ Use Ghostfolio anonymously and own your financial data. apps/client/src/app/pages/landing/landing-page.html - 243 + 245 @@ -4962,7 +4958,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 251 + 253 @@ -4970,7 +4966,7 @@ Benefit from continuous improvements through a strong community. apps/client/src/app/pages/landing/landing-page.html - 253 + 255 @@ -4978,7 +4974,7 @@ Why Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 262 + 264 @@ -4986,7 +4982,7 @@ Ghostfolio is for you if you are... apps/client/src/app/pages/landing/landing-page.html - 263 + 265 @@ -4994,7 +4990,7 @@ trading stocks, ETFs or cryptocurrencies on multiple platforms apps/client/src/app/pages/landing/landing-page.html - 270 + 272 @@ -5002,7 +4998,7 @@ pursuing a buy & hold strategy apps/client/src/app/pages/landing/landing-page.html - 276 + 278 @@ -5010,7 +5006,7 @@ interested in getting insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 281 + 283 @@ -5018,7 +5014,7 @@ valuing privacy and data ownership apps/client/src/app/pages/landing/landing-page.html - 286 + 288 @@ -5026,7 +5022,7 @@ into minimalism apps/client/src/app/pages/landing/landing-page.html - 289 + 291 @@ -5034,7 +5030,7 @@ caring about diversifying your financial resources apps/client/src/app/pages/landing/landing-page.html - 293 + 295 @@ -5042,7 +5038,7 @@ interested in financial independence apps/client/src/app/pages/landing/landing-page.html - 297 + 299 @@ -5050,7 +5046,7 @@ saying no to spreadsheets in apps/client/src/app/pages/landing/landing-page.html - 301 + 303 @@ -5058,7 +5054,7 @@ still reading this list apps/client/src/app/pages/landing/landing-page.html - 304 + 306 @@ -5066,7 +5062,7 @@ Learn more about Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 309 + 311 @@ -5074,23 +5070,23 @@ What our users are saying apps/client/src/app/pages/landing/landing-page.html - 317 + 319 - + Members from around the globe are using Ghostfolio Premium Members from around the globe are using Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 349 + 358 - + How does Ghostfolio work? How does Ghostfolio work? apps/client/src/app/pages/landing/landing-page.html - 361 + 375 @@ -5098,47 +5094,39 @@ Sign up anonymously* apps/client/src/app/pages/landing/landing-page.html - 370 + 384 - + * no e-mail address nor credit card required * no e-mail address nor credit card required apps/client/src/app/pages/landing/landing-page.html - 372 + 386 - + Add any of your historical transactions Add any of your historical transactions apps/client/src/app/pages/landing/landing-page.html - 383 + 397 - + Get valuable insights of your portfolio composition Get valuable insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 + 409 - - Join now or check out the example account - Join now or check out the example account + + Are you ready? + Are you ready? apps/client/src/app/pages/landing/landing-page.html - 408 + 423 @@ -5150,7 +5138,7 @@ apps/client/src/app/pages/landing/landing-page.html - 424 + 443 @@ -5158,7 +5146,7 @@ Get the full picture of your personal finances across multiple platforms. apps/client/src/app/pages/landing/landing-page.html - 232 + 234 @@ -5166,7 +5154,7 @@ Get started in only 3 steps apps/client/src/app/pages/landing/landing-page.html - 364 + 378 @@ -5506,7 +5494,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 31 + 29 apps/client/src/app/pages/landing/landing-page.component.ts @@ -5554,7 +5542,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 32 + 30 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts @@ -5718,7 +5706,7 @@ Choose or drop a file here apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 + 84 @@ -5726,7 +5714,7 @@ You are using the Live Demo. apps/client/src/app/app.component.html - 17 + 12 @@ -5734,7 +5722,7 @@ One-time fee, annual account fees apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 + 33 @@ -5742,7 +5730,7 @@ Distribution of corporate earnings apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 + 41 @@ -5750,7 +5738,7 @@ Oops! Could not get the historical exchange rate from apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 + 312 @@ -5774,7 +5762,7 @@ Revenue for lending out money apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 + 49 @@ -5798,7 +5786,7 @@ Update tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 + 8 @@ -5806,7 +5794,7 @@ Add tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 + 10 @@ -5822,7 +5810,7 @@ Currency Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 + 134 @@ -5830,7 +5818,7 @@ Account Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 + 146 @@ -5838,7 +5826,7 @@ Transfer Cash Balance apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + 10 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -5882,7 +5870,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 + 32 @@ -5890,7 +5878,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 + 72 @@ -5937,12 +5925,12 @@ 84 - - Asset Profile - Asset Profile + + Asset Profile + Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + 35 @@ -6094,11 +6082,11 @@ Starting from apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 190 + 188 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 195 + 193 @@ -6106,11 +6094,11 @@ year apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 191 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 197 + 195 @@ -6129,12 +6117,12 @@ 129 - + If a translation is missing, kindly support us in extending it here. If a translation is missing, kindly support us in extending it here. apps/client/src/app/components/user-account-settings/user-account-settings.html - 55 + 50 @@ -6246,7 +6234,7 @@ Asset Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 51 + 50 @@ -6254,7 +6242,7 @@ Absolute Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 73 + 72 @@ -6262,7 +6250,7 @@ Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 98 + 96 @@ -6270,7 +6258,7 @@ Absolute Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 121 + 119 @@ -6278,7 +6266,7 @@ Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 140 + 138 @@ -6341,12 +6329,12 @@ 8 - + If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 68 + 67 @@ -6394,7 +6382,7 @@ Data Gathering apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 141 @@ -6502,7 +6490,7 @@ Execute Job apps/client/src/app/components/admin-jobs/admin-jobs.html - 183 + 174 @@ -6510,7 +6498,7 @@ Priority apps/client/src/app/components/admin-jobs/admin-jobs.html - 63 + 62 @@ -6590,7 +6578,7 @@ Danger Zone apps/client/src/app/components/user-account-settings/user-account-settings.html - 243 + 238 @@ -6598,7 +6586,7 @@ Close Account apps/client/src/app/components/user-account-settings/user-account-settings.html - 278 + 273 @@ -6617,6 +6605,14 @@ 340 + + Join now or check out the example account + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 426 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 47048c810..ce5e92498 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -7,23 +7,23 @@ Crea un account apps/client/src/app/app.component.html - 18 + 13 apps/client/src/app/pages/register/register-page.html - 26 + 27 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html 2 - + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. Il rischio di perdita nel trading può essere notevole. Non è consigliabile investire denaro di cui potresti avere bisogno a breve termine. apps/client/src/app/app.component.html - 182 + 194 @@ -39,7 +39,7 @@ Tipo apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + 31 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -47,7 +47,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 15 libs/ui/src/lib/activities-table/activities-table.component.html @@ -67,7 +67,7 @@ Revoca apps/client/src/app/components/access-table/access-table.component.html - 63 + 62 @@ -91,7 +91,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 113 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -103,7 +103,7 @@ apps/client/src/app/components/admin-users/admin-users.html - 134 + 135 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -123,7 +123,7 @@ Nome apps/client/src/app/components/accounts-table/accounts-table.component.html - 39 + 43 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -139,7 +139,7 @@ apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + 15 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -147,7 +147,7 @@ apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + 15 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -155,7 +155,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + 137 libs/ui/src/lib/activities-table/activities-table.component.html @@ -175,7 +175,7 @@ Totale apps/client/src/app/components/accounts-table/accounts-table.component.html - 50 + 55 @@ -183,43 +183,43 @@ Valore apps/client/src/app/components/accounts-table/accounts-table.component.html - 165 + 171 apps/client/src/app/components/accounts-table/accounts-table.component.html - 200 + 206 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + 53 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + 198 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + 201 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + 204 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + 268 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + 271 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + 274 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + 277 libs/ui/src/lib/account-balances/account-balances.component.html @@ -247,19 +247,19 @@ Modifica apps/client/src/app/components/accounts-table/accounts-table.component.html - 271 + 278 apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + 177 apps/client/src/app/components/admin-overview/admin-overview.html - 80 + 83 apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + 92 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -275,11 +275,11 @@ Elimina apps/client/src/app/components/accounts-table/accounts-table.component.html - 281 + 288 apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + 196 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -287,15 +287,15 @@ apps/client/src/app/components/admin-overview/admin-overview.html - 90 + 93 apps/client/src/app/components/admin-overview/admin-overview.html - 199 + 210 apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + 102 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -323,7 +323,7 @@ Elimina i lavori apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + 149 @@ -331,7 +331,7 @@ Simbolo apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + 44 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -343,7 +343,7 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + 36 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -355,11 +355,11 @@ Sorgente dei dati apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + 53 apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 55 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -367,7 +367,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + 153 @@ -375,7 +375,7 @@ Tentativi apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + 81 @@ -383,7 +383,7 @@ Creato apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + 90 @@ -391,7 +391,7 @@ Finito apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + 99 @@ -399,7 +399,7 @@ Stato apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + 108 @@ -410,8 +410,8 @@ 67 - - Historical Market Data + + Historical Market Data Dati storici del mercato apps/client/src/app/components/admin-jobs/admin-jobs.html @@ -423,7 +423,7 @@ Visualizza i dati apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + 164 @@ -431,7 +431,7 @@ Visualizza Stacktrace apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + 171 @@ -439,7 +439,7 @@ Elimina il lavoro apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + 177 @@ -459,7 +459,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + 159 libs/ui/src/lib/account-balances/account-balances.component.html @@ -495,15 +495,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + 43 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + 42 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + 25 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -515,11 +515,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + 65 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + 421 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -539,15 +539,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + 50 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + 49 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + 32 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -559,7 +559,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + 428 @@ -567,7 +567,7 @@ Prima attività apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 82 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -595,7 +595,7 @@ Dati storici apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 100 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -655,7 +655,7 @@ per utente apps/client/src/app/components/admin-overview/admin-overview.html - 32 + 33 @@ -663,7 +663,7 @@ Raccogli dati recenti apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + 146 @@ -671,7 +671,7 @@ Raccogli tutti i dati apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + 149 @@ -679,7 +679,7 @@ Raccogli i dati del profilo apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + 152 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -691,7 +691,7 @@ Tassi di cambio apps/client/src/app/components/admin-overview/admin-overview.html - 37 + 39 @@ -699,7 +699,7 @@ Aggiungi valuta apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 109 @@ -707,7 +707,7 @@ Messaggio di sistema apps/client/src/app/components/admin-overview/admin-overview.html - 145 + 153 @@ -715,7 +715,7 @@ Imposta messaggio apps/client/src/app/components/admin-overview/admin-overview.html - 165 + 175 @@ -723,7 +723,7 @@ Modalità di sola lettura apps/client/src/app/components/admin-overview/admin-overview.html - 123 + 129 @@ -731,7 +731,7 @@ Buoni sconto apps/client/src/app/components/admin-overview/admin-overview.html - 173 + 183 @@ -739,7 +739,7 @@ Aggiungi apps/client/src/app/components/admin-overview/admin-overview.html - 231 + 243 libs/ui/src/lib/account-balances/account-balances.component.html @@ -751,7 +751,7 @@ Bilancio domestico apps/client/src/app/components/admin-overview/admin-overview.html - 238 + 251 @@ -759,7 +759,7 @@ Svuota la cache apps/client/src/app/components/admin-overview/admin-overview.html - 242 + 255 @@ -775,7 +775,7 @@ Utente apps/client/src/app/components/header/header.component.html - 230 + 223 @@ -783,7 +783,7 @@ Iscrizione apps/client/src/app/components/admin-users/admin-users.html - 96 + 97 @@ -791,15 +791,15 @@ Partecipazione giornaliera apps/client/src/app/components/admin-users/admin-users.html - 158 + 157 - + Last Request Ultima richiesta apps/client/src/app/components/admin-users/admin-users.html - 183 + 181 @@ -819,7 +819,7 @@ apps/client/src/app/components/header/header.component.html - 244 + 239 @@ -831,7 +831,7 @@ apps/client/src/app/components/header/header.component.html - 254 + 249 @@ -839,11 +839,11 @@ Account apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 + 65 apps/client/src/app/components/admin-users/admin-users.html - 113 + 114 apps/client/src/app/components/header/header.component.html @@ -851,7 +851,7 @@ apps/client/src/app/components/header/header.component.html - 262 + 257 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -871,11 +871,11 @@ Controllo amministrativo apps/client/src/app/components/header/header.component.html - 67 + 68 apps/client/src/app/components/header/header.component.html - 278 + 273 @@ -883,15 +883,15 @@ Risorse apps/client/src/app/app.component.html - 60 + 61 apps/client/src/app/components/header/header.component.html - 80 + 82 apps/client/src/app/components/header/header.component.html - 289 + 285 apps/client/src/app/pages/resources/resources-page.html @@ -903,7 +903,7 @@ Prezzi apps/client/src/app/app.component.html - 86 + 94 apps/client/src/app/components/header/header.component.html @@ -911,15 +911,15 @@ apps/client/src/app/components/header/header.component.html - 301 + 296 apps/client/src/app/components/header/header.component.html - 370 + 367 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 188 + 186 @@ -927,15 +927,15 @@ Informazioni su apps/client/src/app/app.component.html - 66 + 67 apps/client/src/app/components/header/header.component.html - 111 + 112 apps/client/src/app/components/header/header.component.html - 357 + 353 @@ -943,7 +943,7 @@ Io apps/client/src/app/components/header/header.component.html - 211 + 205 @@ -951,7 +951,7 @@ Il mio Ghostfolio apps/client/src/app/components/header/header.component.html - 269 + 264 @@ -959,7 +959,7 @@ Informazioni su Ghostfolio apps/client/src/app/components/header/header.component.html - 309 + 305 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -971,11 +971,11 @@ Funzionalità apps/client/src/app/app.component.html - 73 + 76 apps/client/src/app/components/header/header.component.html - 344 + 340 apps/client/src/app/pages/features/features-page.html @@ -991,7 +991,7 @@ apps/client/src/app/components/header/header.component.html - 386 + 382 apps/client/src/app/components/home-market/home-market.html @@ -1011,7 +1011,7 @@ apps/client/src/app/pages/public/public-page.html - 153 + 164 @@ -1051,7 +1051,7 @@ Ultimi giorni apps/client/src/app/components/home-market/home-market.html - 6 + 7 @@ -1071,7 +1071,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 + 245 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1087,15 +1087,19 @@ apps/client/src/app/pages/landing/landing-page.html - 423 + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 442 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 + 97 apps/client/src/app/pages/register/register-page.html - 29 + 30 apps/client/src/app/pages/webauthn/webauthn-page.html @@ -1131,7 +1135,7 @@ Accedi apps/client/src/app/components/header/header.component.html - 399 + 396 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1279,11 +1283,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 + 195 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 265 @@ -1311,7 +1315,7 @@ apps/client/src/app/pages/public/public-page.html - 45 + 50 @@ -1343,7 +1347,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 + 377 libs/ui/src/lib/assistant/assistant.html @@ -1491,7 +1495,7 @@ Informativa sulla privacy apps/client/src/app/app.component.html - 90 + 100 apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html @@ -1503,7 +1507,7 @@ Blog apps/client/src/app/app.component.html - 68 + 70 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -1591,7 +1595,7 @@ Registro delle modifiche apps/client/src/app/app.component.html - 71 + 74 apps/client/src/app/pages/about/changelog/changelog-page.html @@ -1603,7 +1607,7 @@ Licenza d'uso apps/client/src/app/app.component.html - 80 + 85 apps/client/src/app/pages/about/license/license-page.html @@ -1675,7 +1679,7 @@ Account apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 + 85 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1695,11 +1699,11 @@ per anno apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 + 33 apps/client/src/app/pages/pricing/pricing-page.html - 254 + 256 @@ -1707,7 +1711,7 @@ Prova Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 + 40 @@ -1715,7 +1719,7 @@ Riscatta il buono apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 + 54 @@ -1739,7 +1743,7 @@ Locale apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 + 117 @@ -1747,7 +1751,7 @@ Formato data e numero apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 + 119 @@ -1755,7 +1759,7 @@ Modalità Zen apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 + 167 apps/client/src/app/pages/features/features-page.html @@ -1767,7 +1771,7 @@ Accesso con impronta digitale apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 + 185 @@ -1779,7 +1783,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 + 218 @@ -1843,7 +1847,7 @@ Valuta apps/client/src/app/components/accounts-table/accounts-table.component.html - 60 + 65 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1859,7 +1863,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + 143 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1875,7 +1879,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 130 + 136 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1891,7 +1895,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 81 + 86 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1927,7 +1931,7 @@ Poiché hai già effettuato l'accesso, non puoi accedere all'account demo. apps/client/src/app/pages/demo/demo-page.component.ts - 35 + 33 @@ -2071,7 +2075,7 @@ apps/client/src/app/pages/public/public-page.html - 76 + 87 @@ -2099,7 +2103,7 @@ Cronologia degli investimenti apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 + 297 @@ -2107,7 +2111,7 @@ In alto apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 + 166 @@ -2115,7 +2119,7 @@ In basso apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 + 215 @@ -2147,7 +2151,7 @@ Regola del 4% apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 + 40 @@ -2195,7 +2199,7 @@ Aggiorna l'attività apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 + 8 @@ -2203,11 +2207,11 @@ Aggiungi un'attività apps/client/src/app/components/home-overview/home-overview.html - 56 + 52 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 + 10 @@ -2223,11 +2227,11 @@ Nome, simbolo o ISIN apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + 26 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + 123 @@ -2239,7 +2243,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 + 182 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2251,11 +2255,11 @@ Prezzo unitario apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 + 207 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 + 280 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2267,11 +2271,11 @@ Commissione apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 300 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 324 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2291,7 +2295,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + 333 @@ -2299,7 +2303,7 @@ Classe asset apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 64 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2315,7 +2319,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + 348 @@ -2371,7 +2375,7 @@ Valute apps/client/src/app/pages/public/public-page.html - 30 + 32 @@ -2379,7 +2383,7 @@ Continenti apps/client/src/app/pages/public/public-page.html - 60 + 68 @@ -2387,7 +2391,7 @@ Ghostfolio ti permette di tenere traccia della tua ricchezza. apps/client/src/app/pages/public/public-page.html - 148 + 159 @@ -2403,7 +2407,7 @@ Continua con Internet Identity apps/client/src/app/pages/register/register-page.html - 41 + 42 @@ -2411,7 +2415,7 @@ Continua con Google apps/client/src/app/pages/register/register-page.html - 51 + 53 @@ -2579,7 +2583,7 @@ Lingua apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 + 48 @@ -2587,7 +2591,7 @@ Inizia apps/client/src/app/components/header/header.component.html - 411 + 406 @@ -2647,7 +2651,7 @@ apps/client/src/app/pages/public/public-page.html - 93 + 104 @@ -2655,7 +2659,7 @@ Sottoclasse asset apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 73 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2671,7 +2675,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + 364 @@ -2699,7 +2703,7 @@ apps/client/src/app/pages/public/public-page.html - 111 + 122 @@ -2711,7 +2715,7 @@ apps/client/src/app/pages/public/public-page.html - 102 + 113 @@ -2799,7 +2803,7 @@ Numero di settori apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + 109 @@ -2807,7 +2811,7 @@ Numero di paesi apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + 118 @@ -2867,7 +2871,7 @@ Funzionalità sperimentali apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 + 200 @@ -2883,7 +2887,7 @@ Confronta con... apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 + 18 @@ -2915,7 +2919,7 @@ Aspetto apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 + 142 @@ -2923,7 +2927,7 @@ Auto apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 + 156 @@ -2931,7 +2935,7 @@ Chiaro apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 + 157 @@ -2939,7 +2943,7 @@ Scuro apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 + 158 @@ -2955,7 +2959,7 @@ Evoluzione del portafoglio apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 + 268 @@ -3179,7 +3183,7 @@ Sono supportati i seguenti formati di file: apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 + 90 @@ -3187,11 +3191,11 @@ Indietro apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 + 144 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 + 178 @@ -3199,11 +3203,15 @@ Comunità apps/client/src/app/app.component.html - 105 + 118 apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + 77 + + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 82 apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -3219,20 +3227,16 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + 99 apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + 104 apps/client/src/app/components/user-account-settings/user-account-settings.html 108 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 - apps/client/src/app/pages/features/features-page.html 256 @@ -3243,7 +3247,7 @@ Conteggio attività apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 91 @@ -3279,7 +3283,7 @@ Cronologia dei dividendi apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 + 356 @@ -3295,7 +3299,7 @@ Registrazione utente apps/client/src/app/components/admin-overview/admin-overview.html - 110 + 115 @@ -3315,11 +3319,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 + 153 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 + 186 @@ -3363,7 +3367,7 @@ Partecipazione apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 + 32 @@ -3371,7 +3375,7 @@ Carica i dividendi apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 + 68 @@ -3459,15 +3463,15 @@ Esperienza priva di distrazioni per i periodi più turbolenti apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 + 168 - + Sneak peek at upcoming functionality Un'anteprima delle funzionalità in arrivo apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 + 201 @@ -3487,11 +3491,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 55 + 57 apps/client/src/app/pages/pricing/pricing-page.html - 199 + 203 @@ -3503,11 +3507,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 63 + 65 apps/client/src/app/pages/pricing/pricing-page.html - 207 + 211 @@ -3519,11 +3523,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 67 + 69 apps/client/src/app/pages/pricing/pricing-page.html - 211 + 215 @@ -3535,11 +3539,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 83 + 85 apps/client/src/app/pages/pricing/pricing-page.html - 231 + 235 @@ -3555,7 +3559,7 @@ Aggiorna il piano apps/client/src/app/components/header/header.component.html - 182 + 180 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3563,11 +3567,11 @@ apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 + 16 apps/client/src/app/pages/pricing/pricing-page.html - 268 + 270 @@ -3575,7 +3579,7 @@ Per gli investitori esperti di tecnologia che preferiscono gestire Ghostfolio sulla propria infrastruttura. apps/client/src/app/pages/pricing/pricing-page.html - 36 + 38 @@ -3583,15 +3587,15 @@ Transazioni illimitate apps/client/src/app/pages/pricing/pricing-page.html - 43 + 45 apps/client/src/app/pages/pricing/pricing-page.html - 126 + 129 apps/client/src/app/pages/pricing/pricing-page.html - 187 + 191 @@ -3599,15 +3603,15 @@ Account illimitati apps/client/src/app/pages/pricing/pricing-page.html - 47 + 49 apps/client/src/app/pages/pricing/pricing-page.html - 130 + 133 apps/client/src/app/pages/pricing/pricing-page.html - 191 + 195 @@ -3615,15 +3619,15 @@ Prestazioni del portafoglio apps/client/src/app/pages/pricing/pricing-page.html - 51 + 53 apps/client/src/app/pages/pricing/pricing-page.html - 134 + 137 apps/client/src/app/pages/pricing/pricing-page.html - 195 + 199 @@ -3631,7 +3635,7 @@ Self-hosted, aggiornamento manuale. apps/client/src/app/pages/pricing/pricing-page.html - 92 + 94 @@ -3639,11 +3643,11 @@ Free apps/client/src/app/pages/pricing/pricing-page.html - 93 + 95 apps/client/src/app/pages/pricing/pricing-page.html - 150 + 153 @@ -3651,7 +3655,7 @@ Per i nuovi investitori che hanno appena iniziato a fare trading. apps/client/src/app/pages/pricing/pricing-page.html - 120 + 123 @@ -3659,11 +3663,11 @@ Offerta cloud Ghostfolio completamente gestita. apps/client/src/app/pages/pricing/pricing-page.html - 149 + 152 apps/client/src/app/pages/pricing/pricing-page.html - 240 + 244 @@ -3671,7 +3675,7 @@ Per gli investitori ambiziosi che hanno bisogno di un quadro completo dei propri asset finanziari. apps/client/src/app/pages/pricing/pricing-page.html - 180 + 184 @@ -3679,15 +3683,15 @@ Pagamento una tantum, senza rinnovo automatico. apps/client/src/app/pages/pricing/pricing-page.html - 280 + 279 - + Get Started Inizia - apps/client/src/app/pages/pricing/pricing-page.html - 291 + apps/client/src/app/pages/landing/landing-page.html + 438 @@ -3695,7 +3699,7 @@ È gratuito. apps/client/src/app/pages/pricing/pricing-page.html - 294 + 300 @@ -3711,7 +3715,7 @@ apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 + 158 @@ -3727,11 +3731,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 59 + 61 apps/client/src/app/pages/pricing/pricing-page.html - 203 + 207 @@ -3747,15 +3751,15 @@ Importazione ed esportazione dei dati apps/client/src/app/pages/pricing/pricing-page.html - 71 + 73 apps/client/src/app/pages/pricing/pricing-page.html - 138 + 141 apps/client/src/app/pages/pricing/pricing-page.html - 215 + 219 @@ -3771,7 +3775,7 @@ Supporto della comunità apps/client/src/app/pages/pricing/pricing-page.html - 88 + 90 @@ -3779,7 +3783,7 @@ Supporto via email e chat apps/client/src/app/pages/pricing/pricing-page.html - 236 + 240 @@ -3806,12 +3810,12 @@ 2 - + Oops! Could not get the historical exchange rate from Ops! Impossibile ottenere il tasso di cambio storico da apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 + 234 @@ -3839,7 +3843,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 226 + 230 @@ -3855,15 +3859,15 @@ Rinnova il piano apps/client/src/app/components/header/header.component.html - 190 + 185 apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 + 21 apps/client/src/app/pages/pricing/pricing-page.html - 276 + 275 @@ -3879,7 +3883,7 @@ Imita l'utente apps/client/src/app/components/admin-users/admin-users.html - 222 + 218 @@ -3887,7 +3891,7 @@ Elimina l'utente apps/client/src/app/components/admin-users/admin-users.html - 232 + 229 @@ -3911,7 +3915,7 @@ Aggiorna la piattaforma apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 + 8 @@ -3919,7 +3923,7 @@ Aggiungi la piattaforma apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 + 10 @@ -3931,11 +3935,11 @@ apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 + 51 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 + 25 @@ -3959,7 +3963,7 @@ Aggiornamento del saldo di cassa apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 + 111 @@ -4035,7 +4039,7 @@ Gestisci i benchmark apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 + 35 @@ -4051,7 +4055,7 @@ Seleziona il file apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 + 22 @@ -4059,7 +4063,7 @@ Seleziona i dividendi apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 + 113 @@ -4067,7 +4071,7 @@ Seleziona le attività apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 + 115 @@ -4099,7 +4103,7 @@ Finanza personale apps/client/src/app/app.component.html - 55 + 54 @@ -4107,7 +4111,7 @@ Domande più frequenti (FAQ) apps/client/src/app/app.component.html - 76 + 80 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -4119,7 +4123,7 @@ Serie attuale apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 + 318 @@ -4127,7 +4131,7 @@ Serie più lunga apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 + 327 @@ -4379,15 +4383,15 @@ ✅ Si apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 109 + 115 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 116 + 122 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 130 + 134 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -4395,19 +4399,19 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 155 + 153 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 162 + 160 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 174 + 172 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 181 + 179 @@ -4415,39 +4419,39 @@ ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 111 + 117 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 134 + 136 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 145 + 143 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 157 + 155 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 164 + 162 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 176 + 174 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 183 + 181 - + ❌ No ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 118 + 124 @@ -4455,7 +4459,7 @@ Self-hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 123 + 129 @@ -4463,7 +4467,7 @@ Usalo in modo anonimo apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 150 + 148 @@ -4471,7 +4475,7 @@ Piano gratuito apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 169 + 167 @@ -4479,7 +4483,7 @@ Note apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 202 + 201 @@ -4519,11 +4523,11 @@ Azioni, ETF, obbligazioni, criptovalute e materie prime apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 + 25 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 + 65 @@ -4531,7 +4535,7 @@ Mutui, prestiti personali, carte di credito apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 + 57 @@ -4539,7 +4543,7 @@ Articoli di lusso, immobili, aziende private apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 + 73 @@ -4679,7 +4683,7 @@ apps/client/src/app/pages/public/public-page.html - 123 + 132 libs/ui/src/lib/top-holdings/top-holdings.component.html @@ -4699,7 +4703,7 @@ Configura gli account apps/client/src/app/components/home-overview/home-overview.html - 48 + 44 @@ -4707,7 +4711,7 @@ Autenticazione biometrica apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 + 184 @@ -4759,7 +4763,7 @@ Stelle su GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 88 apps/client/src/app/pages/open/open-page.html @@ -4771,7 +4775,7 @@ Estrazioni su Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 106 apps/client/src/app/pages/open/open-page.html @@ -4791,7 +4795,7 @@ Esporta dati apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 + 226 @@ -4863,7 +4867,7 @@ Se preferisci eseguire Ghostfolio sulla tua infrastruttura, puoi trovare il codice sorgente e ulteriori istruzioni su GitHub. apps/client/src/app/pages/pricing/pricing-page.html - 24 + 26 @@ -4890,16 +4894,8 @@ 41 - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - o - - apps/client/src/app/pages/landing/landing-page.html - 46 + apps/client/src/app/pages/pricing/pricing-page.html + 297 @@ -4907,7 +4903,7 @@ Utenti attivi mensili apps/client/src/app/pages/landing/landing-page.html - 69 + 70 @@ -4915,7 +4911,7 @@ Come si vede su apps/client/src/app/pages/landing/landing-page.html - 113 + 115 @@ -4923,7 +4919,7 @@ Proteggi i tuoi asset. Perfeziona la tua strategia di investimento personale. apps/client/src/app/pages/landing/landing-page.html - 215 + 217 @@ -4931,7 +4927,7 @@ Ghostfolio permette alle persone impegnate di tenere traccia di azioni, ETF o criptovalute senza essere tracciate. apps/client/src/app/pages/landing/landing-page.html - 219 + 221 @@ -4939,7 +4935,7 @@ Vista a 360° apps/client/src/app/pages/landing/landing-page.html - 230 + 232 @@ -4947,7 +4943,7 @@ Pronto per il Web3 apps/client/src/app/pages/landing/landing-page.html - 241 + 243 @@ -4955,7 +4951,7 @@ Usa Ghostfolio in modo anonimo e possiedi i tuoi dati finanziari. apps/client/src/app/pages/landing/landing-page.html - 243 + 245 @@ -4963,7 +4959,7 @@ Open source apps/client/src/app/pages/landing/landing-page.html - 251 + 253 @@ -4971,7 +4967,7 @@ Beneficia dei continui miglioramenti grazie a una forte comunità. apps/client/src/app/pages/landing/landing-page.html - 253 + 255 @@ -4979,7 +4975,7 @@ Perché Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 262 + 264 @@ -4987,7 +4983,7 @@ Ghostfolio è per te se... apps/client/src/app/pages/landing/landing-page.html - 263 + 265 @@ -4995,7 +4991,7 @@ fai trading di azioni, ETF o criptovalute su più piattaforme apps/client/src/app/pages/landing/landing-page.html - 270 + 272 @@ -5003,7 +4999,7 @@ persegui una strategia buy & hold apps/client/src/app/pages/landing/landing-page.html - 276 + 278 @@ -5011,7 +5007,7 @@ sei interessato a conoscere la composizione del tuo portafoglio apps/client/src/app/pages/landing/landing-page.html - 281 + 283 @@ -5019,7 +5015,7 @@ valorizzi la privacy e la proprietà dei dati apps/client/src/app/pages/landing/landing-page.html - 286 + 288 @@ -5027,7 +5023,7 @@ sei per il minimalismo apps/client/src/app/pages/landing/landing-page.html - 289 + 291 @@ -5035,7 +5031,7 @@ ti interessa diversificare le tue risorse finanziarie apps/client/src/app/pages/landing/landing-page.html - 293 + 295 @@ -5043,7 +5039,7 @@ sei interessato all'indipendenza finanziaria apps/client/src/app/pages/landing/landing-page.html - 297 + 299 @@ -5051,7 +5047,7 @@ non vuoi utilizzare il foglio elettronico nel apps/client/src/app/pages/landing/landing-page.html - 301 + 303 @@ -5059,7 +5055,7 @@ stai ancora leggendo questo elenco apps/client/src/app/pages/landing/landing-page.html - 304 + 306 @@ -5067,7 +5063,7 @@ Ulteriori informazioni su Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 309 + 311 @@ -5075,23 +5071,23 @@ Cosa dicono i nostri utenti apps/client/src/app/pages/landing/landing-page.html - 317 + 319 - + Members from around the globe are using Ghostfolio Premium Membri da tutto il mondo utilizzano Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 349 + 358 - + How does Ghostfolio work? Come funziona Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 361 + 375 @@ -5099,47 +5095,39 @@ Iscriviti in modo anonimo* apps/client/src/app/pages/landing/landing-page.html - 370 + 384 - + * no e-mail address nor credit card required * non è richiesto alcun indirizzo email né la carta di credito apps/client/src/app/pages/landing/landing-page.html - 372 + 386 - + Add any of your historical transactions Aggiungi le tue transazioni storiche apps/client/src/app/pages/landing/landing-page.html - 383 + 397 - + Get valuable insights of your portfolio composition Ottieni informazioni preziose sulla composizione del tuo portafoglio apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Seipronto? - - apps/client/src/app/pages/landing/landing-page.html - 407 + 409 - - Join now or check out the example account - Iscriviti adesso o consulta l'account di esempio + + Are you ready? + Seipronto? apps/client/src/app/pages/landing/landing-page.html - 408 + 423 @@ -5151,7 +5139,7 @@ apps/client/src/app/pages/landing/landing-page.html - 424 + 443 @@ -5159,7 +5147,7 @@ Ottieni un quadro completo delle tue finanze personali su più piattaforme. apps/client/src/app/pages/landing/landing-page.html - 232 + 234 @@ -5167,7 +5155,7 @@ Inizia in soli 3 passi apps/client/src/app/pages/landing/landing-page.html - 364 + 378 @@ -5507,7 +5495,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 31 + 29 apps/client/src/app/pages/landing/landing-page.component.ts @@ -5555,7 +5543,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 32 + 30 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts @@ -5719,7 +5707,7 @@ Choose or drop a file here apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 + 84 @@ -5727,7 +5715,7 @@ You are using the Live Demo. apps/client/src/app/app.component.html - 17 + 12 @@ -5735,7 +5723,7 @@ One-time fee, annual account fees apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 + 33 @@ -5743,7 +5731,7 @@ Distribution of corporate earnings apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 + 41 @@ -5751,7 +5739,7 @@ Oops! Could not get the historical exchange rate from apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 + 312 @@ -5775,7 +5763,7 @@ Revenue for lending out money apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 + 49 @@ -5799,7 +5787,7 @@ Update tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 + 8 @@ -5807,7 +5795,7 @@ Add tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 + 10 @@ -5823,7 +5811,7 @@ Currency Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 + 134 @@ -5831,7 +5819,7 @@ Account Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 + 146 @@ -5839,7 +5827,7 @@ Transfer Cash Balance apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + 10 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -5883,7 +5871,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 + 32 @@ -5891,7 +5879,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 + 72 @@ -5938,12 +5926,12 @@ 84 - - Asset Profile - Asset Profile + + Asset Profile + Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + 35 @@ -6095,11 +6083,11 @@ Starting from apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 190 + 188 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 195 + 193 @@ -6107,11 +6095,11 @@ year apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 191 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 197 + 195 @@ -6130,12 +6118,12 @@ 129 - + If a translation is missing, kindly support us in extending it here. If a translation is missing, kindly support us in extending it here. apps/client/src/app/components/user-account-settings/user-account-settings.html - 55 + 50 @@ -6247,7 +6235,7 @@ Asset Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 51 + 50 @@ -6255,7 +6243,7 @@ Absolute Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 73 + 72 @@ -6263,7 +6251,7 @@ Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 98 + 96 @@ -6271,7 +6259,7 @@ Absolute Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 121 + 119 @@ -6279,7 +6267,7 @@ Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 140 + 138 @@ -6342,12 +6330,12 @@ 8 - + If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 68 + 67 @@ -6395,7 +6383,7 @@ Data Gathering apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 141 @@ -6503,7 +6491,7 @@ Execute Job apps/client/src/app/components/admin-jobs/admin-jobs.html - 183 + 174 @@ -6511,7 +6499,7 @@ Priority apps/client/src/app/components/admin-jobs/admin-jobs.html - 63 + 62 @@ -6591,7 +6579,7 @@ Danger Zone apps/client/src/app/components/user-account-settings/user-account-settings.html - 243 + 238 @@ -6599,7 +6587,7 @@ Close Account apps/client/src/app/components/user-account-settings/user-account-settings.html - 278 + 273 @@ -6618,6 +6606,14 @@ 340 + + Join now or check out the example account + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 426 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 5c517853c..d95416b34 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -6,23 +6,23 @@ Account aanmaken apps/client/src/app/app.component.html - 18 + 13 apps/client/src/app/pages/register/register-page.html - 26 + 27 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html 2 - + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. Het risico op verlies bij handelen kan aanzienlijk zijn. Het is niet aan te raden om geld te investeren dat je misschien op korte termijn nodig heeft. apps/client/src/app/app.component.html - 182 + 194 @@ -38,7 +38,7 @@ Type apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + 31 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -46,7 +46,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 15 libs/ui/src/lib/activities-table/activities-table.component.html @@ -66,7 +66,7 @@ Intrekken apps/client/src/app/components/access-table/access-table.component.html - 63 + 62 @@ -90,7 +90,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 113 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -102,7 +102,7 @@ apps/client/src/app/components/admin-users/admin-users.html - 134 + 135 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -122,7 +122,7 @@ Naam apps/client/src/app/components/accounts-table/accounts-table.component.html - 39 + 43 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -138,7 +138,7 @@ apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + 15 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -146,7 +146,7 @@ apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + 15 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -154,7 +154,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + 137 libs/ui/src/lib/activities-table/activities-table.component.html @@ -174,7 +174,7 @@ Totaal apps/client/src/app/components/accounts-table/accounts-table.component.html - 50 + 55 @@ -182,43 +182,43 @@ Waarde apps/client/src/app/components/accounts-table/accounts-table.component.html - 165 + 171 apps/client/src/app/components/accounts-table/accounts-table.component.html - 200 + 206 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + 53 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + 198 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + 201 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + 204 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + 268 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + 271 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + 274 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + 277 libs/ui/src/lib/account-balances/account-balances.component.html @@ -246,19 +246,19 @@ Bewerken apps/client/src/app/components/accounts-table/accounts-table.component.html - 271 + 278 apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + 177 apps/client/src/app/components/admin-overview/admin-overview.html - 80 + 83 apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + 92 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -274,11 +274,11 @@ Verwijderen apps/client/src/app/components/accounts-table/accounts-table.component.html - 281 + 288 apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + 196 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -286,15 +286,15 @@ apps/client/src/app/components/admin-overview/admin-overview.html - 90 + 93 apps/client/src/app/components/admin-overview/admin-overview.html - 199 + 210 apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + 102 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -322,7 +322,7 @@ Taken verwijderen apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + 149 @@ -330,7 +330,7 @@ Symbool apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + 44 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -342,7 +342,7 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + 36 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -354,11 +354,11 @@ Gegevensbron apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + 53 apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 55 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -366,7 +366,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + 153 @@ -374,7 +374,7 @@ Pogingen apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + 81 @@ -382,7 +382,7 @@ Aangemaakt apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + 90 @@ -390,7 +390,7 @@ Voltooid apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + 99 @@ -398,7 +398,7 @@ Status apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + 108 @@ -409,8 +409,8 @@ 67 - - Historical Market Data + + Historical Market Data Historische marktgegevens apps/client/src/app/components/admin-jobs/admin-jobs.html @@ -422,7 +422,7 @@ Bekijk gegevens apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + 164 @@ -430,7 +430,7 @@ Bekijk Stacktrace apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + 171 @@ -438,7 +438,7 @@ Taak verwijderen apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + 177 @@ -458,7 +458,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + 159 libs/ui/src/lib/account-balances/account-balances.component.html @@ -494,15 +494,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + 43 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + 42 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + 25 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -514,11 +514,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + 65 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + 421 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -538,15 +538,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + 50 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + 49 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + 32 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -558,7 +558,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + 428 @@ -566,7 +566,7 @@ Eerste activiteit apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 82 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -594,7 +594,7 @@ Historische gegevens apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 100 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -654,7 +654,7 @@ per gebruiker apps/client/src/app/components/admin-overview/admin-overview.html - 32 + 33 @@ -662,7 +662,7 @@ Verzamel recente gegevens apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + 146 @@ -670,7 +670,7 @@ Verzamel alle gegevens apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + 149 @@ -678,7 +678,7 @@ Verzamel profielgegevens apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + 152 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -690,7 +690,7 @@ Wisselkoersen apps/client/src/app/components/admin-overview/admin-overview.html - 37 + 39 @@ -698,7 +698,7 @@ Valuta toevoegen apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 109 @@ -706,7 +706,7 @@ Systeembericht apps/client/src/app/components/admin-overview/admin-overview.html - 145 + 153 @@ -714,7 +714,7 @@ Bericht instellen apps/client/src/app/components/admin-overview/admin-overview.html - 165 + 175 @@ -722,7 +722,7 @@ Alleen lezen apps/client/src/app/components/admin-overview/admin-overview.html - 123 + 129 @@ -730,7 +730,7 @@ Coupons apps/client/src/app/components/admin-overview/admin-overview.html - 173 + 183 @@ -738,7 +738,7 @@ Toevoegen apps/client/src/app/components/admin-overview/admin-overview.html - 231 + 243 libs/ui/src/lib/account-balances/account-balances.component.html @@ -750,7 +750,7 @@ Huishouding apps/client/src/app/components/admin-overview/admin-overview.html - 238 + 251 @@ -758,7 +758,7 @@ Cache legen apps/client/src/app/components/admin-overview/admin-overview.html - 242 + 255 @@ -774,7 +774,7 @@ Gebruiker apps/client/src/app/components/header/header.component.html - 230 + 223 @@ -782,7 +782,7 @@ Registratie apps/client/src/app/components/admin-users/admin-users.html - 96 + 97 @@ -790,15 +790,15 @@ Betrokkenheid per dag apps/client/src/app/components/admin-users/admin-users.html - 158 + 157 - + Last Request Laatste verzoek apps/client/src/app/components/admin-users/admin-users.html - 183 + 181 @@ -818,7 +818,7 @@ apps/client/src/app/components/header/header.component.html - 244 + 239 @@ -830,7 +830,7 @@ apps/client/src/app/components/header/header.component.html - 254 + 249 @@ -838,11 +838,11 @@ Rekeningen apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 + 65 apps/client/src/app/components/admin-users/admin-users.html - 113 + 114 apps/client/src/app/components/header/header.component.html @@ -850,7 +850,7 @@ apps/client/src/app/components/header/header.component.html - 262 + 257 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -870,11 +870,11 @@ Beheer apps/client/src/app/components/header/header.component.html - 67 + 68 apps/client/src/app/components/header/header.component.html - 278 + 273 @@ -882,15 +882,15 @@ Middelen apps/client/src/app/app.component.html - 60 + 61 apps/client/src/app/components/header/header.component.html - 80 + 82 apps/client/src/app/components/header/header.component.html - 289 + 285 apps/client/src/app/pages/resources/resources-page.html @@ -902,7 +902,7 @@ Prijzen apps/client/src/app/app.component.html - 86 + 94 apps/client/src/app/components/header/header.component.html @@ -910,15 +910,15 @@ apps/client/src/app/components/header/header.component.html - 301 + 296 apps/client/src/app/components/header/header.component.html - 370 + 367 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 188 + 186 @@ -926,15 +926,15 @@ Over apps/client/src/app/app.component.html - 66 + 67 apps/client/src/app/components/header/header.component.html - 111 + 112 apps/client/src/app/components/header/header.component.html - 357 + 353 @@ -942,7 +942,7 @@ Ik apps/client/src/app/components/header/header.component.html - 211 + 205 @@ -950,7 +950,7 @@ Mijn Ghostfolio apps/client/src/app/components/header/header.component.html - 269 + 264 @@ -958,7 +958,7 @@ Over Ghostfolio apps/client/src/app/components/header/header.component.html - 309 + 305 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -970,11 +970,11 @@ Functionaliteiten apps/client/src/app/app.component.html - 73 + 76 apps/client/src/app/components/header/header.component.html - 344 + 340 apps/client/src/app/pages/features/features-page.html @@ -990,7 +990,7 @@ apps/client/src/app/components/header/header.component.html - 386 + 382 apps/client/src/app/components/home-market/home-market.html @@ -1010,7 +1010,7 @@ apps/client/src/app/pages/public/public-page.html - 153 + 164 @@ -1050,7 +1050,7 @@ Laatste Dagen apps/client/src/app/components/home-market/home-market.html - 6 + 7 @@ -1070,7 +1070,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 + 245 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1086,15 +1086,19 @@ apps/client/src/app/pages/landing/landing-page.html - 423 + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 442 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 + 97 apps/client/src/app/pages/register/register-page.html - 29 + 30 apps/client/src/app/pages/webauthn/webauthn-page.html @@ -1130,7 +1134,7 @@ Aanmelden apps/client/src/app/components/header/header.component.html - 399 + 396 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1278,11 +1282,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 + 195 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 265 @@ -1310,7 +1314,7 @@ apps/client/src/app/pages/public/public-page.html - 45 + 50 @@ -1342,7 +1346,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 + 377 libs/ui/src/lib/assistant/assistant.html @@ -1490,7 +1494,7 @@ Privacybeleid apps/client/src/app/app.component.html - 90 + 100 apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html @@ -1502,7 +1506,7 @@ Blog apps/client/src/app/app.component.html - 68 + 70 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -1590,7 +1594,7 @@ Changelog apps/client/src/app/app.component.html - 71 + 74 apps/client/src/app/pages/about/changelog/changelog-page.html @@ -1602,7 +1606,7 @@ Licentie apps/client/src/app/app.component.html - 80 + 85 apps/client/src/app/pages/about/license/license-page.html @@ -1674,7 +1678,7 @@ Rekening apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 + 85 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1694,11 +1698,11 @@ per jaar apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 + 33 apps/client/src/app/pages/pricing/pricing-page.html - 254 + 256 @@ -1706,7 +1710,7 @@ Probeer Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 + 40 @@ -1714,7 +1718,7 @@ Coupon inwisselen apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 + 54 @@ -1738,7 +1742,7 @@ Locatie apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 + 117 @@ -1746,7 +1750,7 @@ Datum- en getalnotatie apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 + 119 @@ -1754,7 +1758,7 @@ Zen-modus apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 + 167 apps/client/src/app/pages/features/features-page.html @@ -1766,7 +1770,7 @@ Aanmelden met vingerafdruk apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 + 185 @@ -1778,7 +1782,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 + 218 @@ -1842,7 +1846,7 @@ Valuta apps/client/src/app/components/accounts-table/accounts-table.component.html - 60 + 65 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1858,7 +1862,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + 143 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1874,7 +1878,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 130 + 136 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1890,7 +1894,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 81 + 86 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -1926,7 +1930,7 @@ Aangezien je al ingelogd bent, heb je geen toegang tot de demo-account. apps/client/src/app/pages/demo/demo-page.component.ts - 35 + 33 @@ -2070,7 +2074,7 @@ apps/client/src/app/pages/public/public-page.html - 76 + 87 @@ -2098,7 +2102,7 @@ Tijdlijn investeringen apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 + 297 @@ -2106,7 +2110,7 @@ Winnaars apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 + 166 @@ -2114,7 +2118,7 @@ Verliezers apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 + 215 @@ -2146,7 +2150,7 @@ 4% regel apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 + 40 @@ -2194,7 +2198,7 @@ Activiteit bijwerken apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 + 8 @@ -2202,11 +2206,11 @@ Activiteit toevoegen apps/client/src/app/components/home-overview/home-overview.html - 56 + 52 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 + 10 @@ -2222,11 +2226,11 @@ Naam, symbool of ISIN apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + 26 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + 123 @@ -2238,7 +2242,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 + 182 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2250,11 +2254,11 @@ Prijs per eenheid apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 + 207 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 + 280 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2266,11 +2270,11 @@ Transactiekosten apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 300 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 324 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2290,7 +2294,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + 333 @@ -2298,7 +2302,7 @@ Asset klasse apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 64 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2314,7 +2318,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + 348 @@ -2370,7 +2374,7 @@ Valuta apps/client/src/app/pages/public/public-page.html - 30 + 32 @@ -2378,7 +2382,7 @@ Continenten apps/client/src/app/pages/public/public-page.html - 60 + 68 @@ -2386,7 +2390,7 @@ Ghostfolio stelt je in staat om je vermogen bij te houden. apps/client/src/app/pages/public/public-page.html - 148 + 159 @@ -2402,7 +2406,7 @@ Ga verder met Internet Identity apps/client/src/app/pages/register/register-page.html - 41 + 42 @@ -2410,7 +2414,7 @@ Verder met Google apps/client/src/app/pages/register/register-page.html - 51 + 53 @@ -2578,7 +2582,7 @@ Taal apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 + 48 @@ -2586,7 +2590,7 @@ Aan de slag apps/client/src/app/components/header/header.component.html - 411 + 406 @@ -2646,7 +2650,7 @@ apps/client/src/app/pages/public/public-page.html - 93 + 104 @@ -2654,7 +2658,7 @@ Asset subklasse apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 73 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -2670,7 +2674,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + 364 @@ -2698,7 +2702,7 @@ apps/client/src/app/pages/public/public-page.html - 111 + 122 @@ -2710,7 +2714,7 @@ apps/client/src/app/pages/public/public-page.html - 102 + 113 @@ -2798,7 +2802,7 @@ Aantal sectoren apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + 109 @@ -2806,7 +2810,7 @@ Aantal landen apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + 118 @@ -2866,7 +2870,7 @@ Experimentele functies apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 + 200 @@ -2882,7 +2886,7 @@ Vergelijk met... apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 + 18 @@ -2914,7 +2918,7 @@ Weergave apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 + 142 @@ -2922,7 +2926,7 @@ Automatisch apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 + 156 @@ -2930,7 +2934,7 @@ Licht apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 + 157 @@ -2938,7 +2942,7 @@ Donker apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 + 158 @@ -2954,7 +2958,7 @@ Waardeontwikkeling van portefeuille apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 + 268 @@ -3178,7 +3182,7 @@ De volgende bestandsformaten worden ondersteund: apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 + 90 @@ -3186,11 +3190,11 @@ Terug apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 + 144 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 + 178 @@ -3198,11 +3202,15 @@ Gemeenschap apps/client/src/app/app.component.html - 105 + 118 apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + 77 + + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 82 apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -3218,20 +3226,16 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + 99 apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + 104 apps/client/src/app/components/user-account-settings/user-account-settings.html 108 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 - apps/client/src/app/pages/features/features-page.html 256 @@ -3242,7 +3246,7 @@ Aantal activiteiten apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 91 @@ -3278,7 +3282,7 @@ Tijdlijn dividend apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 + 356 @@ -3294,7 +3298,7 @@ Account aanmaken apps/client/src/app/components/admin-overview/admin-overview.html - 110 + 115 @@ -3314,11 +3318,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 + 153 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 + 186 @@ -3362,7 +3366,7 @@ Positie apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 + 32 @@ -3370,7 +3374,7 @@ Laad dividenden apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 + 68 @@ -3458,15 +3462,15 @@ Afleidingsvrije ervaring voor roerige tijden apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 + 168 - + Sneak peek at upcoming functionality Voorproefje van nieuwe functionaliteit apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 + 201 @@ -3486,11 +3490,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 55 + 57 apps/client/src/app/pages/pricing/pricing-page.html - 199 + 203 @@ -3502,11 +3506,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 63 + 65 apps/client/src/app/pages/pricing/pricing-page.html - 207 + 211 @@ -3518,11 +3522,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 67 + 69 apps/client/src/app/pages/pricing/pricing-page.html - 211 + 215 @@ -3534,11 +3538,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 83 + 85 apps/client/src/app/pages/pricing/pricing-page.html - 231 + 235 @@ -3554,7 +3558,7 @@ Abonnement uitbreiden apps/client/src/app/components/header/header.component.html - 182 + 180 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3562,11 +3566,11 @@ apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 + 16 apps/client/src/app/pages/pricing/pricing-page.html - 268 + 270 @@ -3574,7 +3578,7 @@ Voor technisch onderlegde beleggers die Ghostfolio liever op hun eigen systemen draaien. apps/client/src/app/pages/pricing/pricing-page.html - 36 + 38 @@ -3582,15 +3586,15 @@ Onbeperkte transacties apps/client/src/app/pages/pricing/pricing-page.html - 43 + 45 apps/client/src/app/pages/pricing/pricing-page.html - 126 + 129 apps/client/src/app/pages/pricing/pricing-page.html - 187 + 191 @@ -3598,15 +3602,15 @@ Onbeperkte rekeningen apps/client/src/app/pages/pricing/pricing-page.html - 47 + 49 apps/client/src/app/pages/pricing/pricing-page.html - 130 + 133 apps/client/src/app/pages/pricing/pricing-page.html - 191 + 195 @@ -3614,15 +3618,15 @@ Portefeuilleprestaties apps/client/src/app/pages/pricing/pricing-page.html - 51 + 53 apps/client/src/app/pages/pricing/pricing-page.html - 134 + 137 apps/client/src/app/pages/pricing/pricing-page.html - 195 + 199 @@ -3630,7 +3634,7 @@ Zelf hosten, handmatig bijwerken. apps/client/src/app/pages/pricing/pricing-page.html - 92 + 94 @@ -3638,11 +3642,11 @@ Gratis apps/client/src/app/pages/pricing/pricing-page.html - 93 + 95 apps/client/src/app/pages/pricing/pricing-page.html - 150 + 153 @@ -3650,7 +3654,7 @@ Voor nieuwe beleggers die net beginnen met handelen. apps/client/src/app/pages/pricing/pricing-page.html - 120 + 123 @@ -3658,11 +3662,11 @@ Volledig beheerd Ghostfolio cloud-aanbod. apps/client/src/app/pages/pricing/pricing-page.html - 149 + 152 apps/client/src/app/pages/pricing/pricing-page.html - 240 + 244 @@ -3670,7 +3674,7 @@ Voor ambitieuze beleggers die een volledig beeld willen hebben van hun financiële assets. apps/client/src/app/pages/pricing/pricing-page.html - 180 + 184 @@ -3678,15 +3682,15 @@ Eenmalige betaling, geen automatische verlenging. apps/client/src/app/pages/pricing/pricing-page.html - 280 + 279 - + Get Started Aan de slag - apps/client/src/app/pages/pricing/pricing-page.html - 291 + apps/client/src/app/pages/landing/landing-page.html + 438 @@ -3694,7 +3698,7 @@ Het is gratis. apps/client/src/app/pages/pricing/pricing-page.html - 294 + 300 @@ -3710,7 +3714,7 @@ apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 + 158 @@ -3726,11 +3730,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 59 + 61 apps/client/src/app/pages/pricing/pricing-page.html - 203 + 207 @@ -3746,15 +3750,15 @@ Data Import and Export apps/client/src/app/pages/pricing/pricing-page.html - 71 + 73 apps/client/src/app/pages/pricing/pricing-page.html - 138 + 141 apps/client/src/app/pages/pricing/pricing-page.html - 215 + 219 @@ -3770,7 +3774,7 @@ Steun van de Gemeenschap apps/client/src/app/pages/pricing/pricing-page.html - 88 + 90 @@ -3778,7 +3782,7 @@ Ondersteuning via e-mail en chat apps/client/src/app/pages/pricing/pricing-page.html - 236 + 240 @@ -3805,12 +3809,12 @@ 2 - + Oops! Could not get the historical exchange rate from Oeps! Kon de historische wisselkoers niet krijgen van apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 + 234 @@ -3838,7 +3842,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 226 + 230 @@ -3854,15 +3858,15 @@ Abonnement Vernieuwen apps/client/src/app/components/header/header.component.html - 190 + 185 apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 + 21 apps/client/src/app/pages/pricing/pricing-page.html - 276 + 275 @@ -3878,7 +3882,7 @@ Gebruiker nadoen apps/client/src/app/components/admin-users/admin-users.html - 222 + 218 @@ -3886,7 +3890,7 @@ Gebruiker verwijderen apps/client/src/app/components/admin-users/admin-users.html - 232 + 229 @@ -3910,7 +3914,7 @@ Platform bijwerken apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 + 8 @@ -3918,7 +3922,7 @@ Platform toevoegen apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 + 10 @@ -3930,11 +3934,11 @@ apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 + 51 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 + 25 @@ -3958,7 +3962,7 @@ Saldo bijwerken apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 + 111 @@ -4034,7 +4038,7 @@ Beheer Benchmarks apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 + 35 @@ -4050,7 +4054,7 @@ Selecteer bestand apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 + 22 @@ -4058,7 +4062,7 @@ Selecteer dividenden apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 + 113 @@ -4066,7 +4070,7 @@ Selecteer activiteiten apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 + 115 @@ -4098,7 +4102,7 @@ Persoonlijke financiën apps/client/src/app/app.component.html - 55 + 54 @@ -4106,7 +4110,7 @@ Veelgestelde Vragen apps/client/src/app/app.component.html - 76 + 80 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -4118,7 +4122,7 @@ Huidige reeks apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 + 318 @@ -4126,7 +4130,7 @@ Langste reeks apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 + 327 @@ -4378,15 +4382,15 @@ ✅ Wel apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 109 + 115 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 116 + 122 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 130 + 134 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -4394,19 +4398,19 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 155 + 153 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 162 + 160 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 174 + 172 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 181 + 179 @@ -4414,39 +4418,39 @@ ❌ Geen apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 111 + 117 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 134 + 136 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 145 + 143 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 157 + 155 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 164 + 162 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 176 + 174 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 183 + 181 - + ❌ No ❌ Geen apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 118 + 124 @@ -4454,7 +4458,7 @@ Zelf hosten apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 123 + 129 @@ -4462,7 +4466,7 @@ Gebruik anoniem apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 150 + 148 @@ -4470,7 +4474,7 @@ Gratis abonnement apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 169 + 167 @@ -4478,7 +4482,7 @@ Notities apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 202 + 201 @@ -4518,11 +4522,11 @@ Aandelen, ETF's, obligaties, cryptocurrencies, grondstoffen apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 + 25 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 + 65 @@ -4530,7 +4534,7 @@ Hypotheken, persoonlijke leningen, creditcards apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 + 57 @@ -4538,7 +4542,7 @@ Luxe artikelen, onroerend goed, particuliere bedrijven apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 + 73 @@ -4678,7 +4682,7 @@ apps/client/src/app/pages/public/public-page.html - 123 + 132 libs/ui/src/lib/top-holdings/top-holdings.component.html @@ -4698,7 +4702,7 @@ Account opzetten apps/client/src/app/components/home-overview/home-overview.html - 48 + 44 @@ -4706,7 +4710,7 @@ Biometrische authenticatie apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 + 184 @@ -4758,7 +4762,7 @@ Sterren op GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 88 apps/client/src/app/pages/open/open-page.html @@ -4770,7 +4774,7 @@ Pulls op Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 106 apps/client/src/app/pages/open/open-page.html @@ -4790,7 +4794,7 @@ Exporteer Data apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 + 226 @@ -4862,7 +4866,7 @@ Als je Ghostfolio liever op je eigen systeem uitvoert, vind je de broncode en verdere instructies op GitHub. apps/client/src/app/pages/pricing/pricing-page.html - 24 + 26 @@ -4889,16 +4893,8 @@ 41 - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - of - - apps/client/src/app/pages/landing/landing-page.html - 46 + apps/client/src/app/pages/pricing/pricing-page.html + 297 @@ -4906,7 +4902,7 @@ Maandelijkse actieve gebruikers apps/client/src/app/pages/landing/landing-page.html - 69 + 70 @@ -4914,7 +4910,7 @@ Zoals te zien in apps/client/src/app/pages/landing/landing-page.html - 113 + 115 @@ -4922,7 +4918,7 @@ Bescherm je financiële bezittingen. Verfijn je persoonlijke investeringsstrategie. apps/client/src/app/pages/landing/landing-page.html - 215 + 217 @@ -4930,7 +4926,7 @@ Ghostfolio stelt drukbezette mensen in staat om aandelen, ETF's of cryptocurrencies bij te houden zonder gevolgd te worden. apps/client/src/app/pages/landing/landing-page.html - 219 + 221 @@ -4938,7 +4934,7 @@ 360°-overzicht apps/client/src/app/pages/landing/landing-page.html - 230 + 232 @@ -4946,7 +4942,7 @@ Klaar voor Web3 apps/client/src/app/pages/landing/landing-page.html - 241 + 243 @@ -4954,7 +4950,7 @@ Gebruik Ghostfolio anoniem en bezit je financiële gegevens. apps/client/src/app/pages/landing/landing-page.html - 243 + 245 @@ -4962,7 +4958,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 251 + 253 @@ -4970,7 +4966,7 @@ Profiteer van voortdurende verbeteringen door een sterke gemeenschap. apps/client/src/app/pages/landing/landing-page.html - 253 + 255 @@ -4978,7 +4974,7 @@ Waarom Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 262 + 264 @@ -4986,7 +4982,7 @@ Ghostfolio is iets voor je als je... apps/client/src/app/pages/landing/landing-page.html - 263 + 265 @@ -4994,7 +4990,7 @@ handelt in aandelen, ETF's of cryptocurrencies op meerdere platforms apps/client/src/app/pages/landing/landing-page.html - 270 + 272 @@ -5002,7 +4998,7 @@ streeft naar een buy & hold strategie apps/client/src/app/pages/landing/landing-page.html - 276 + 278 @@ -5010,7 +5006,7 @@ geïnteresseerd bent in het krijgen van inzicht in je portefeuillesamenstelling apps/client/src/app/pages/landing/landing-page.html - 281 + 283 @@ -5018,7 +5014,7 @@ privacy en eigendom van gegevens waardeert apps/client/src/app/pages/landing/landing-page.html - 286 + 288 @@ -5026,7 +5022,7 @@ houdt van een minimalistisch ontwerp apps/client/src/app/pages/landing/landing-page.html - 289 + 291 @@ -5034,7 +5030,7 @@ zorgdraagt voor het diversifiëren van je financiële middelen apps/client/src/app/pages/landing/landing-page.html - 293 + 295 @@ -5042,7 +5038,7 @@ geïnteresseerd bent in financiële onafhankelijkheid apps/client/src/app/pages/landing/landing-page.html - 297 + 299 @@ -5050,7 +5046,7 @@ "nee" zegt tegen spreadsheets in apps/client/src/app/pages/landing/landing-page.html - 301 + 303 @@ -5058,7 +5054,7 @@ nog steeds deze lijst aan het lezen bent apps/client/src/app/pages/landing/landing-page.html - 304 + 306 @@ -5066,7 +5062,7 @@ Leer meer over Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 309 + 311 @@ -5074,23 +5070,23 @@ Wat onze gebruikers zeggen apps/client/src/app/pages/landing/landing-page.html - 317 + 319 - + Members from around the globe are using Ghostfolio Premium Leden van over de hele wereld gebruikenGhostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 349 + 358 - + How does Ghostfolio work? Hoe Ghostfolio werkt? apps/client/src/app/pages/landing/landing-page.html - 361 + 375 @@ -5098,47 +5094,39 @@ Anoniem aanmelden* apps/client/src/app/pages/landing/landing-page.html - 370 + 384 - + * no e-mail address nor credit card required * geen e-mailadres of creditcard nodig apps/client/src/app/pages/landing/landing-page.html - 372 + 386 - + Add any of your historical transactions Voeg al je historische transacties toe apps/client/src/app/pages/landing/landing-page.html - 383 + 397 - + Get valuable insights of your portfolio composition Krijg waardevolle inzichten in de samenstelling van je portefeuille apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Ben je er klaar voor? - - apps/client/src/app/pages/landing/landing-page.html - 407 + 409 - - Join now or check out the example account - Nu lid worden of bekijk het voorbeeld account + + Are you ready? + Ben je er klaar voor? apps/client/src/app/pages/landing/landing-page.html - 408 + 423 @@ -5150,7 +5138,7 @@ apps/client/src/app/pages/landing/landing-page.html - 424 + 443 @@ -5158,7 +5146,7 @@ Krijg een volledig beeld van je persoonlijke financiën op meerdere platforms. apps/client/src/app/pages/landing/landing-page.html - 232 + 234 @@ -5166,7 +5154,7 @@ Aan de slag in slechts 3 stappen apps/client/src/app/pages/landing/landing-page.html - 364 + 378 @@ -5506,7 +5494,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 31 + 29 apps/client/src/app/pages/landing/landing-page.component.ts @@ -5554,7 +5542,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 32 + 30 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts @@ -5718,7 +5706,7 @@ Choose or drop a file here apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 + 84 @@ -5726,7 +5714,7 @@ You are using the Live Demo. apps/client/src/app/app.component.html - 17 + 12 @@ -5734,7 +5722,7 @@ One-time fee, annual account fees apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 + 33 @@ -5742,7 +5730,7 @@ Distribution of corporate earnings apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 + 41 @@ -5750,7 +5738,7 @@ Oops! Could not get the historical exchange rate from apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 + 312 @@ -5774,7 +5762,7 @@ Revenue for lending out money apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 + 49 @@ -5798,7 +5786,7 @@ Update tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 + 8 @@ -5806,7 +5794,7 @@ Add tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 + 10 @@ -5822,7 +5810,7 @@ Currency Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 + 134 @@ -5830,7 +5818,7 @@ Account Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 + 146 @@ -5838,7 +5826,7 @@ Transfer Cash Balance apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + 10 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -5882,7 +5870,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 + 32 @@ -5890,7 +5878,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 + 72 @@ -5937,12 +5925,12 @@ 84 - - Asset Profile - Asset Profile + + Asset Profile + Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + 35 @@ -6094,11 +6082,11 @@ Starting from apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 190 + 188 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 195 + 193 @@ -6106,11 +6094,11 @@ year apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 191 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 197 + 195 @@ -6129,12 +6117,12 @@ 129 - + If a translation is missing, kindly support us in extending it here. If a translation is missing, kindly support us in extending it here. apps/client/src/app/components/user-account-settings/user-account-settings.html - 55 + 50 @@ -6246,7 +6234,7 @@ Asset Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 51 + 50 @@ -6254,7 +6242,7 @@ Absolute Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 73 + 72 @@ -6262,7 +6250,7 @@ Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 98 + 96 @@ -6270,7 +6258,7 @@ Absolute Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 121 + 119 @@ -6278,7 +6266,7 @@ Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 140 + 138 @@ -6341,12 +6329,12 @@ 8 - + If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 68 + 67 @@ -6394,7 +6382,7 @@ Data Gathering apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 141 @@ -6502,7 +6490,7 @@ Execute Job apps/client/src/app/components/admin-jobs/admin-jobs.html - 183 + 174 @@ -6510,7 +6498,7 @@ Priority apps/client/src/app/components/admin-jobs/admin-jobs.html - 63 + 62 @@ -6590,7 +6578,7 @@ Danger Zone apps/client/src/app/components/user-account-settings/user-account-settings.html - 243 + 238 @@ -6598,7 +6586,7 @@ Close Account apps/client/src/app/components/user-account-settings/user-account-settings.html - 278 + 273 @@ -6617,6 +6605,14 @@ 340 + + Join now or check out the example account + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 426 + + diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index 4b7771dc7..f0d653e5c 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -338,7 +338,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 31 + 29 apps/client/src/app/pages/landing/landing-page.component.ts @@ -386,7 +386,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 32 + 30 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts @@ -406,7 +406,7 @@ You are using the Live Demo. apps/client/src/app/app.component.html - 17 + 12 @@ -414,11 +414,11 @@ Create Account apps/client/src/app/app.component.html - 18 + 13 apps/client/src/app/pages/register/register-page.html - 26 + 27 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -430,7 +430,7 @@ Personal Finance apps/client/src/app/app.component.html - 55 + 54 @@ -442,7 +442,7 @@ apps/client/src/app/components/header/header.component.html - 386 + 382 apps/client/src/app/components/home-market/home-market.html @@ -458,15 +458,15 @@ Resources apps/client/src/app/app.component.html - 60 + 61 apps/client/src/app/components/header/header.component.html - 80 + 82 apps/client/src/app/components/header/header.component.html - 289 + 285 apps/client/src/app/pages/resources/resources-page.html @@ -478,15 +478,15 @@ About apps/client/src/app/app.component.html - 66 + 67 apps/client/src/app/components/header/header.component.html - 111 + 112 apps/client/src/app/components/header/header.component.html - 357 + 353 @@ -494,7 +494,7 @@ Blog apps/client/src/app/app.component.html - 68 + 70 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -582,7 +582,7 @@ Changelog apps/client/src/app/app.component.html - 71 + 74 apps/client/src/app/pages/about/changelog/changelog-page.html @@ -594,11 +594,11 @@ Features apps/client/src/app/app.component.html - 73 + 76 apps/client/src/app/components/header/header.component.html - 344 + 340 apps/client/src/app/pages/features/features-page.html @@ -610,7 +610,7 @@ Frequently Asked Questions (FAQ) apps/client/src/app/app.component.html - 76 + 80 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -622,7 +622,7 @@ License apps/client/src/app/app.component.html - 80 + 85 apps/client/src/app/pages/about/license/license-page.html @@ -634,7 +634,7 @@ Pricing apps/client/src/app/app.component.html - 86 + 94 apps/client/src/app/components/header/header.component.html @@ -642,15 +642,15 @@ apps/client/src/app/components/header/header.component.html - 301 + 296 apps/client/src/app/components/header/header.component.html - 370 + 367 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 188 + 186 @@ -658,7 +658,7 @@ Privacy Policy apps/client/src/app/app.component.html - 90 + 100 apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html @@ -670,11 +670,15 @@ Community apps/client/src/app/app.component.html - 105 + 118 apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + 77 + + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 82 apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -690,31 +694,27 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + 99 apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + 104 apps/client/src/app/components/user-account-settings/user-account-settings.html 108 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 - apps/client/src/app/pages/features/features-page.html 256 - + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. apps/client/src/app/app.component.html - 182 + 194 @@ -742,7 +742,7 @@ Type apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + 31 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -750,7 +750,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 15 libs/ui/src/lib/activities-table/activities-table.component.html @@ -770,7 +770,7 @@ Revoke apps/client/src/app/components/access-table/access-table.component.html - 63 + 62 @@ -790,7 +790,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 130 + 136 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -818,7 +818,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 113 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -830,7 +830,7 @@ apps/client/src/app/components/admin-users/admin-users.html - 134 + 135 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -854,7 +854,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 81 + 86 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -866,7 +866,7 @@ Transfer Cash Balance apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + 10 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -878,7 +878,7 @@ Name apps/client/src/app/components/accounts-table/accounts-table.component.html - 39 + 43 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -894,7 +894,7 @@ apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + 15 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -902,7 +902,7 @@ apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + 15 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -910,7 +910,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + 137 libs/ui/src/lib/activities-table/activities-table.component.html @@ -930,7 +930,7 @@ Total apps/client/src/app/components/accounts-table/accounts-table.component.html - 50 + 55 @@ -938,7 +938,7 @@ Currency apps/client/src/app/components/accounts-table/accounts-table.component.html - 60 + 65 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -954,7 +954,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + 143 libs/ui/src/lib/activities-table/activities-table.component.html @@ -966,43 +966,43 @@ Value apps/client/src/app/components/accounts-table/accounts-table.component.html - 165 + 171 apps/client/src/app/components/accounts-table/accounts-table.component.html - 200 + 206 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + 53 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + 198 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + 201 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + 204 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + 268 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + 271 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + 274 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + 277 libs/ui/src/lib/account-balances/account-balances.component.html @@ -1030,19 +1030,19 @@ Edit apps/client/src/app/components/accounts-table/accounts-table.component.html - 271 + 278 apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + 177 apps/client/src/app/components/admin-overview/admin-overview.html - 80 + 83 apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + 92 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1058,11 +1058,11 @@ Delete apps/client/src/app/components/accounts-table/accounts-table.component.html - 281 + 288 apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + 196 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1070,15 +1070,15 @@ apps/client/src/app/components/admin-overview/admin-overview.html - 90 + 93 apps/client/src/app/components/admin-overview/admin-overview.html - 199 + 210 apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + 102 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1101,17 +1101,17 @@ 101 - - Asset Profile - Asset Profile + + Asset Profile + Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + 35 - - Historical Market Data - Historical Market Data + + Historical Market Data + Historical Market Data apps/client/src/app/components/admin-jobs/admin-jobs.html 37 @@ -1122,7 +1122,7 @@ Symbol apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + 44 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -1134,7 +1134,7 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + 36 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1146,11 +1146,11 @@ Data Source apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + 53 apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 55 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1158,7 +1158,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + 153 @@ -1166,7 +1166,7 @@ Attempts apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + 81 @@ -1174,7 +1174,7 @@ Created apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + 90 @@ -1182,7 +1182,7 @@ Finished apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + 99 @@ -1190,7 +1190,7 @@ Status apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + 108 @@ -1198,7 +1198,7 @@ Delete Jobs apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + 149 @@ -1206,7 +1206,7 @@ View Data apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + 164 @@ -1214,7 +1214,7 @@ View Stacktrace apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + 171 @@ -1222,7 +1222,7 @@ Delete Job apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + 177 @@ -1242,7 +1242,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + 159 libs/ui/src/lib/account-balances/account-balances.component.html @@ -1278,15 +1278,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + 43 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + 42 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + 25 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -1298,11 +1298,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + 65 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + 421 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1322,15 +1322,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + 50 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + 49 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + 32 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -1342,7 +1342,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + 428 @@ -1390,7 +1390,7 @@ Asset Class apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 64 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1406,7 +1406,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + 348 @@ -1414,7 +1414,7 @@ Asset Sub Class apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 73 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1430,7 +1430,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + 364 @@ -1438,7 +1438,7 @@ First Activity apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 82 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1458,7 +1458,7 @@ Activities Count apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 91 @@ -1466,7 +1466,7 @@ Historical Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 100 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1478,7 +1478,7 @@ Sectors Count apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + 109 @@ -1486,7 +1486,7 @@ Countries Count apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + 118 @@ -1494,7 +1494,7 @@ Gather Recent Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + 146 @@ -1502,7 +1502,7 @@ Gather All Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + 149 @@ -1510,7 +1510,7 @@ Gather Profile Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + 152 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1550,11 +1550,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 + 153 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 + 186 @@ -1602,7 +1602,7 @@ apps/client/src/app/pages/public/public-page.html - 45 + 50 @@ -1658,7 +1658,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + 333 @@ -1690,11 +1690,11 @@ Name, symbol or ISIN apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + 26 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + 123 @@ -1774,7 +1774,7 @@ per User apps/client/src/app/components/admin-overview/admin-overview.html - 32 + 33 @@ -1782,7 +1782,7 @@ Exchange Rates apps/client/src/app/components/admin-overview/admin-overview.html - 37 + 39 @@ -1790,7 +1790,7 @@ Add Currency apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 109 @@ -1798,7 +1798,7 @@ User Signup apps/client/src/app/components/admin-overview/admin-overview.html - 110 + 115 @@ -1806,7 +1806,7 @@ Read-only Mode apps/client/src/app/components/admin-overview/admin-overview.html - 123 + 129 @@ -1814,7 +1814,7 @@ System Message apps/client/src/app/components/admin-overview/admin-overview.html - 145 + 153 @@ -1822,7 +1822,7 @@ Set Message apps/client/src/app/components/admin-overview/admin-overview.html - 165 + 175 @@ -1830,7 +1830,7 @@ Coupons apps/client/src/app/components/admin-overview/admin-overview.html - 173 + 183 @@ -1838,7 +1838,7 @@ Add apps/client/src/app/components/admin-overview/admin-overview.html - 231 + 243 libs/ui/src/lib/account-balances/account-balances.component.html @@ -1850,7 +1850,7 @@ Housekeeping apps/client/src/app/components/admin-overview/admin-overview.html - 238 + 251 @@ -1858,7 +1858,7 @@ Flush Cache apps/client/src/app/components/admin-overview/admin-overview.html - 242 + 255 @@ -1878,11 +1878,11 @@ apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 + 51 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 + 25 @@ -1890,11 +1890,11 @@ Accounts apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 + 65 apps/client/src/app/components/admin-users/admin-users.html - 113 + 114 apps/client/src/app/components/header/header.component.html @@ -1902,7 +1902,7 @@ apps/client/src/app/components/header/header.component.html - 262 + 257 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1930,7 +1930,7 @@ Update platform apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 + 8 @@ -1938,7 +1938,7 @@ Add platform apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 + 10 @@ -1962,7 +1962,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 + 377 libs/ui/src/lib/assistant/assistant.html @@ -1990,7 +1990,7 @@ Update tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 + 8 @@ -1998,7 +1998,7 @@ Add tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 + 10 @@ -2022,7 +2022,7 @@ Registration apps/client/src/app/components/admin-users/admin-users.html - 96 + 97 @@ -2030,15 +2030,15 @@ Engagement per Day apps/client/src/app/components/admin-users/admin-users.html - 158 + 157 - + Last Request Last Request apps/client/src/app/components/admin-users/admin-users.html - 183 + 181 @@ -2046,7 +2046,7 @@ Impersonate User apps/client/src/app/components/admin-users/admin-users.html - 222 + 218 @@ -2054,7 +2054,7 @@ Delete User apps/client/src/app/components/admin-users/admin-users.html - 232 + 229 @@ -2078,7 +2078,7 @@ Compare with... apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 + 18 @@ -2086,7 +2086,7 @@ Manage Benchmarks apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 + 35 @@ -2126,7 +2126,7 @@ apps/client/src/app/components/header/header.component.html - 244 + 239 @@ -2138,7 +2138,7 @@ apps/client/src/app/components/header/header.component.html - 254 + 249 @@ -2146,11 +2146,11 @@ Admin Control apps/client/src/app/components/header/header.component.html - 67 + 68 apps/client/src/app/components/header/header.component.html - 278 + 273 @@ -2158,7 +2158,7 @@ Me apps/client/src/app/components/header/header.component.html - 211 + 205 @@ -2166,7 +2166,7 @@ User apps/client/src/app/components/header/header.component.html - 230 + 223 @@ -2174,7 +2174,7 @@ My Ghostfolio apps/client/src/app/components/header/header.component.html - 269 + 264 @@ -2182,7 +2182,7 @@ About Ghostfolio apps/client/src/app/components/header/header.component.html - 309 + 305 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -2194,7 +2194,7 @@ Sign in apps/client/src/app/components/header/header.component.html - 399 + 396 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -2206,7 +2206,7 @@ Get started apps/client/src/app/components/header/header.component.html - 411 + 406 @@ -2270,7 +2270,7 @@ Last Days apps/client/src/app/components/home-market/home-market.html - 6 + 7 @@ -2342,7 +2342,7 @@ Setup accounts apps/client/src/app/components/home-overview/home-overview.html - 48 + 44 @@ -2350,11 +2350,11 @@ Add activity apps/client/src/app/components/home-overview/home-overview.html - 56 + 52 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 + 10 @@ -2390,7 +2390,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 + 245 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -2406,15 +2406,19 @@ apps/client/src/app/pages/landing/landing-page.html - 423 + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 442 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 + 97 apps/client/src/app/pages/register/register-page.html - 29 + 30 apps/client/src/app/pages/webauthn/webauthn-page.html @@ -2510,7 +2514,7 @@ apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 + 158 @@ -2646,11 +2650,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 + 195 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 265 @@ -2706,7 +2710,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 + 182 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2746,11 +2750,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 55 + 57 apps/client/src/app/pages/pricing/pricing-page.html - 199 + 203 @@ -2766,11 +2770,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 59 + 61 apps/client/src/app/pages/pricing/pricing-page.html - 203 + 207 @@ -2782,11 +2786,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 63 + 65 apps/client/src/app/pages/pricing/pricing-page.html - 207 + 211 @@ -2798,11 +2802,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 67 + 69 apps/client/src/app/pages/pricing/pricing-page.html - 211 + 215 @@ -2814,7 +2818,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 226 + 230 @@ -2826,11 +2830,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 83 + 85 apps/client/src/app/pages/pricing/pricing-page.html - 231 + 235 @@ -2854,7 +2858,7 @@ Upgrade Plan apps/client/src/app/components/header/header.component.html - 182 + 180 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -2862,11 +2866,11 @@ apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 + 16 apps/client/src/app/pages/pricing/pricing-page.html - 268 + 270 @@ -2990,11 +2994,11 @@ per year apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 + 33 apps/client/src/app/pages/pricing/pricing-page.html - 254 + 256 @@ -3002,7 +3006,7 @@ Try Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 + 40 @@ -3010,7 +3014,7 @@ Redeem Coupon apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 + 54 @@ -3066,7 +3070,7 @@ Language apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 + 48 @@ -3074,7 +3078,7 @@ Locale apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 + 117 @@ -3082,7 +3086,7 @@ Date and number format apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 + 119 @@ -3090,7 +3094,7 @@ Appearance apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 + 142 @@ -3098,7 +3102,7 @@ Auto apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 + 156 @@ -3106,7 +3110,7 @@ Light apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 + 157 @@ -3114,7 +3118,7 @@ Dark apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 + 158 @@ -3122,7 +3126,7 @@ Zen Mode apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 + 167 apps/client/src/app/pages/features/features-page.html @@ -3134,7 +3138,7 @@ Distraction-free experience for turbulent times apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 + 168 @@ -3142,7 +3146,7 @@ Biometric Authentication apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 + 184 @@ -3150,7 +3154,7 @@ Sign in with fingerprint apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 + 185 @@ -3158,15 +3162,15 @@ Experimental Features apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 + 200 - + Sneak peek at upcoming functionality Sneak peek at upcoming functionality apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 + 201 @@ -3178,7 +3182,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 + 218 @@ -3186,7 +3190,7 @@ Export Data apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 + 226 @@ -3366,7 +3370,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 + 32 @@ -3374,7 +3378,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 + 72 @@ -3470,7 +3474,7 @@ As you are already logged in, you cannot access the demo account. apps/client/src/app/pages/demo/demo-page.component.ts - 35 + 33 @@ -3630,7 +3634,7 @@ apps/client/src/app/pages/public/public-page.html - 153 + 164 @@ -3729,16 +3733,8 @@ 41 - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - or - - apps/client/src/app/pages/landing/landing-page.html - 46 + apps/client/src/app/pages/pricing/pricing-page.html + 297 @@ -3750,7 +3746,7 @@ apps/client/src/app/pages/landing/landing-page.html - 424 + 443 @@ -3758,7 +3754,7 @@ Monthly Active Users apps/client/src/app/pages/landing/landing-page.html - 69 + 70 @@ -3766,7 +3762,7 @@ Stars on GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 88 apps/client/src/app/pages/open/open-page.html @@ -3778,7 +3774,7 @@ Pulls on Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 106 apps/client/src/app/pages/open/open-page.html @@ -3790,7 +3786,7 @@ As seen in apps/client/src/app/pages/landing/landing-page.html - 113 + 115 @@ -3798,7 +3794,7 @@ Protect your assets. Refine your personal investment strategy. apps/client/src/app/pages/landing/landing-page.html - 215 + 217 @@ -3806,7 +3802,7 @@ Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. apps/client/src/app/pages/landing/landing-page.html - 219 + 221 @@ -3814,7 +3810,7 @@ 360° View apps/client/src/app/pages/landing/landing-page.html - 230 + 232 @@ -3822,7 +3818,7 @@ Get the full picture of your personal finances across multiple platforms. apps/client/src/app/pages/landing/landing-page.html - 232 + 234 @@ -3830,7 +3826,7 @@ Web3 Ready apps/client/src/app/pages/landing/landing-page.html - 241 + 243 @@ -3838,7 +3834,7 @@ Use Ghostfolio anonymously and own your financial data. apps/client/src/app/pages/landing/landing-page.html - 243 + 245 @@ -3846,7 +3842,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 251 + 253 @@ -3854,7 +3850,7 @@ Benefit from continuous improvements through a strong community. apps/client/src/app/pages/landing/landing-page.html - 253 + 255 @@ -3862,7 +3858,7 @@ Why Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 262 + 264 @@ -3870,7 +3866,7 @@ Ghostfolio is for you if you are... apps/client/src/app/pages/landing/landing-page.html - 263 + 265 @@ -3878,7 +3874,7 @@ trading stocks, ETFs or cryptocurrencies on multiple platforms apps/client/src/app/pages/landing/landing-page.html - 270 + 272 @@ -3886,7 +3882,7 @@ pursuing a buy & hold strategy apps/client/src/app/pages/landing/landing-page.html - 276 + 278 @@ -3894,7 +3890,7 @@ interested in getting insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 281 + 283 @@ -3902,7 +3898,7 @@ valuing privacy and data ownership apps/client/src/app/pages/landing/landing-page.html - 286 + 288 @@ -3910,7 +3906,7 @@ into minimalism apps/client/src/app/pages/landing/landing-page.html - 289 + 291 @@ -3918,7 +3914,7 @@ caring about diversifying your financial resources apps/client/src/app/pages/landing/landing-page.html - 293 + 295 @@ -3926,7 +3922,7 @@ interested in financial independence apps/client/src/app/pages/landing/landing-page.html - 297 + 299 @@ -3934,7 +3930,7 @@ saying no to spreadsheets in apps/client/src/app/pages/landing/landing-page.html - 301 + 303 @@ -3942,7 +3938,7 @@ still reading this list apps/client/src/app/pages/landing/landing-page.html - 304 + 306 @@ -3950,7 +3946,7 @@ Learn more about Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 309 + 311 @@ -3958,23 +3954,23 @@ What our users are saying apps/client/src/app/pages/landing/landing-page.html - 317 + 319 - + Members from around the globe are using Ghostfolio Premium Members from around the globe are using Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 349 + 358 - + How does Ghostfolio work? How does Ghostfolio work? apps/client/src/app/pages/landing/landing-page.html - 361 + 375 @@ -3982,7 +3978,7 @@ Get started in only 3 steps apps/client/src/app/pages/landing/landing-page.html - 364 + 378 @@ -3990,47 +3986,39 @@ Sign up anonymously* apps/client/src/app/pages/landing/landing-page.html - 370 + 384 - + * no e-mail address nor credit card required * no e-mail address nor credit card required apps/client/src/app/pages/landing/landing-page.html - 372 + 386 - + Add any of your historical transactions Add any of your historical transactions apps/client/src/app/pages/landing/landing-page.html - 383 + 397 - + Get valuable insights of your portfolio composition Get valuable insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 + 409 - - Join now or check out the example account - Join now or check out the example account + + Are you ready? + Are you ready? apps/client/src/app/pages/landing/landing-page.html - 408 + 423 @@ -4138,7 +4126,7 @@ Update activity apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 + 8 @@ -4146,11 +4134,11 @@ Stocks, ETFs, bonds, cryptocurrencies, commodities apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 + 25 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 + 65 @@ -4158,7 +4146,7 @@ One-time fee, annual account fees apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 + 33 @@ -4166,7 +4154,7 @@ Distribution of corporate earnings apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 + 41 @@ -4174,7 +4162,7 @@ Revenue for lending out money apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 + 49 @@ -4182,7 +4170,7 @@ Mortgages, personal loans, credit cards apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 + 57 @@ -4190,7 +4178,7 @@ Luxury items, real estate, private companies apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 + 73 @@ -4198,7 +4186,7 @@ Account apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 + 85 libs/ui/src/lib/activities-table/activities-table.component.html @@ -4210,7 +4198,7 @@ Update Cash Balance apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 + 111 @@ -4218,11 +4206,11 @@ Unit Price apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 + 207 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 + 280 libs/ui/src/lib/activities-table/activities-table.component.html @@ -4234,7 +4222,7 @@ Oops! Could not get the historical exchange rate from apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 + 312 @@ -4242,23 +4230,23 @@ Fee apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 300 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 324 libs/ui/src/lib/activities-table/activities-table.component.html 233 - + Oops! Could not get the historical exchange rate from Oops! Could not get the historical exchange rate from apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 + 234 @@ -4314,7 +4302,7 @@ Select File apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 + 22 @@ -4322,7 +4310,7 @@ Holding apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 + 32 @@ -4330,7 +4318,7 @@ Load Dividends apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 + 68 @@ -4338,7 +4326,7 @@ Choose or drop a file here apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 + 84 @@ -4346,7 +4334,7 @@ The following file formats are supported: apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 + 90 @@ -4354,7 +4342,7 @@ Select Dividends apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 + 113 @@ -4362,7 +4350,7 @@ Select Activities apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 + 115 @@ -4370,11 +4358,11 @@ Back apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 + 144 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 + 178 @@ -4470,7 +4458,7 @@ apps/client/src/app/pages/public/public-page.html - 76 + 87 @@ -4482,7 +4470,7 @@ apps/client/src/app/pages/public/public-page.html - 93 + 104 @@ -4494,7 +4482,7 @@ apps/client/src/app/pages/public/public-page.html - 102 + 113 @@ -4506,7 +4494,7 @@ apps/client/src/app/pages/public/public-page.html - 111 + 122 @@ -4518,7 +4506,7 @@ apps/client/src/app/pages/public/public-page.html - 123 + 132 libs/ui/src/lib/top-holdings/top-holdings.component.html @@ -4610,7 +4598,7 @@ Top apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 + 166 @@ -4618,7 +4606,7 @@ Bottom apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 + 215 @@ -4626,7 +4614,7 @@ Portfolio Evolution apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 + 268 @@ -4634,7 +4622,7 @@ Investment Timeline apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 + 297 @@ -4642,7 +4630,7 @@ Current Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 + 318 @@ -4650,7 +4638,7 @@ Longest Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 + 327 @@ -4658,7 +4646,7 @@ Dividend Timeline apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 + 356 @@ -4690,7 +4678,7 @@ 4% Rule apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 + 40 @@ -4706,7 +4694,7 @@ Currency Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 + 134 @@ -4714,7 +4702,7 @@ Account Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 + 146 @@ -4766,7 +4754,7 @@ If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. apps/client/src/app/pages/pricing/pricing-page.html - 24 + 26 @@ -4774,7 +4762,7 @@ For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. apps/client/src/app/pages/pricing/pricing-page.html - 36 + 38 @@ -4782,15 +4770,15 @@ Unlimited Transactions apps/client/src/app/pages/pricing/pricing-page.html - 43 + 45 apps/client/src/app/pages/pricing/pricing-page.html - 126 + 129 apps/client/src/app/pages/pricing/pricing-page.html - 187 + 191 @@ -4798,15 +4786,15 @@ Unlimited Accounts apps/client/src/app/pages/pricing/pricing-page.html - 47 + 49 apps/client/src/app/pages/pricing/pricing-page.html - 130 + 133 apps/client/src/app/pages/pricing/pricing-page.html - 191 + 195 @@ -4814,15 +4802,15 @@ Portfolio Performance apps/client/src/app/pages/pricing/pricing-page.html - 51 + 53 apps/client/src/app/pages/pricing/pricing-page.html - 134 + 137 apps/client/src/app/pages/pricing/pricing-page.html - 195 + 199 @@ -4830,15 +4818,15 @@ Data Import and Export apps/client/src/app/pages/pricing/pricing-page.html - 71 + 73 apps/client/src/app/pages/pricing/pricing-page.html - 138 + 141 apps/client/src/app/pages/pricing/pricing-page.html - 215 + 219 @@ -4846,7 +4834,7 @@ Community Support apps/client/src/app/pages/pricing/pricing-page.html - 88 + 90 @@ -4854,7 +4842,7 @@ Self-hosted, update manually. apps/client/src/app/pages/pricing/pricing-page.html - 92 + 94 @@ -4862,11 +4850,11 @@ Free apps/client/src/app/pages/pricing/pricing-page.html - 93 + 95 apps/client/src/app/pages/pricing/pricing-page.html - 150 + 153 @@ -4874,7 +4862,7 @@ For new investors who are just getting started with trading. apps/client/src/app/pages/pricing/pricing-page.html - 120 + 123 @@ -4882,11 +4870,11 @@ Fully managed Ghostfolio cloud offering. apps/client/src/app/pages/pricing/pricing-page.html - 149 + 152 apps/client/src/app/pages/pricing/pricing-page.html - 240 + 244 @@ -4894,7 +4882,7 @@ For ambitious investors who need the full picture of their financial assets. apps/client/src/app/pages/pricing/pricing-page.html - 180 + 184 @@ -4902,7 +4890,7 @@ Email and Chat Support apps/client/src/app/pages/pricing/pricing-page.html - 236 + 240 @@ -4910,15 +4898,15 @@ Renew Plan apps/client/src/app/components/header/header.component.html - 190 + 185 apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 + 21 apps/client/src/app/pages/pricing/pricing-page.html - 276 + 275 @@ -4926,15 +4914,15 @@ One-time payment, no auto-renewal. apps/client/src/app/pages/pricing/pricing-page.html - 280 + 279 - + Get Started Get Started - apps/client/src/app/pages/pricing/pricing-page.html - 291 + apps/client/src/app/pages/landing/landing-page.html + 438 @@ -4942,7 +4930,7 @@ It’s free. apps/client/src/app/pages/pricing/pricing-page.html - 294 + 300 @@ -4958,7 +4946,7 @@ Currencies apps/client/src/app/pages/public/public-page.html - 30 + 32 @@ -4966,7 +4954,7 @@ Continents apps/client/src/app/pages/public/public-page.html - 60 + 68 @@ -4974,7 +4962,7 @@ Ghostfolio empowers you to keep track of your wealth. apps/client/src/app/pages/public/public-page.html - 148 + 159 @@ -4990,7 +4978,7 @@ Continue with Internet Identity apps/client/src/app/pages/register/register-page.html - 41 + 42 @@ -4998,7 +4986,7 @@ Continue with Google apps/client/src/app/pages/register/register-page.html - 51 + 53 @@ -5162,15 +5150,15 @@ ✅ Yes apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 109 + 115 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 116 + 122 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 130 + 134 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -5178,19 +5166,19 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 155 + 153 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 162 + 160 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 174 + 172 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 181 + 179 @@ -5198,39 +5186,39 @@ ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 111 + 117 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 134 + 136 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 145 + 143 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 157 + 155 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 164 + 162 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 176 + 174 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 183 + 181 - + ❌ No ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 118 + 124 @@ -5238,7 +5226,7 @@ Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 123 + 129 @@ -5246,7 +5234,7 @@ Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 150 + 148 @@ -5254,7 +5242,7 @@ Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 169 + 167 @@ -5262,7 +5250,7 @@ Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 202 + 201 @@ -6094,11 +6082,11 @@ Starting from apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 190 + 188 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 195 + 193 @@ -6106,11 +6094,11 @@ year apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 191 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 197 + 195 @@ -6129,12 +6117,12 @@ 129 - + If a translation is missing, kindly support us in extending it here. If a translation is missing, kindly support us in extending it here. apps/client/src/app/components/user-account-settings/user-account-settings.html - 55 + 50 @@ -6246,7 +6234,7 @@ Asset Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 51 + 50 @@ -6254,7 +6242,7 @@ Absolute Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 73 + 72 @@ -6262,7 +6250,7 @@ Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 98 + 96 @@ -6270,7 +6258,7 @@ Absolute Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 121 + 119 @@ -6278,7 +6266,7 @@ Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 140 + 138 @@ -6341,12 +6329,12 @@ 8 - + If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 68 + 67 @@ -6394,7 +6382,7 @@ Data Gathering apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 141 @@ -6502,7 +6490,7 @@ Execute Job apps/client/src/app/components/admin-jobs/admin-jobs.html - 183 + 174 @@ -6510,7 +6498,7 @@ Priority apps/client/src/app/components/admin-jobs/admin-jobs.html - 63 + 62 @@ -6590,7 +6578,7 @@ Danger Zone apps/client/src/app/components/user-account-settings/user-account-settings.html - 243 + 238 @@ -6598,7 +6586,7 @@ Close Account apps/client/src/app/components/user-account-settings/user-account-settings.html - 278 + 273 @@ -6617,6 +6605,14 @@ 340 + + Join now or check out the example account + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 426 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index ab455cd68..02cfeca2d 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -1,12 +1,12 @@ - + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. O risco de perda em investimentos pode ser substancial. Não é aconselhável investir dinheiro que possa vir a precisar a curto prazo. apps/client/src/app/app.component.html - 182 + 194 @@ -34,7 +34,7 @@ Tipo apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + 31 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -42,7 +42,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 15 libs/ui/src/lib/activities-table/activities-table.component.html @@ -62,7 +62,7 @@ Revogar apps/client/src/app/components/access-table/access-table.component.html - 63 + 62 @@ -82,7 +82,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 81 + 86 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -102,7 +102,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 113 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -114,7 +114,7 @@ apps/client/src/app/components/admin-users/admin-users.html - 134 + 135 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -134,7 +134,7 @@ Nome apps/client/src/app/components/accounts-table/accounts-table.component.html - 39 + 43 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -150,7 +150,7 @@ apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + 15 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -158,7 +158,7 @@ apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + 15 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -166,7 +166,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + 137 libs/ui/src/lib/activities-table/activities-table.component.html @@ -186,7 +186,7 @@ Total apps/client/src/app/components/accounts-table/accounts-table.component.html - 50 + 55 @@ -194,7 +194,7 @@ Moeda apps/client/src/app/components/accounts-table/accounts-table.component.html - 60 + 65 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -210,7 +210,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + 143 libs/ui/src/lib/activities-table/activities-table.component.html @@ -226,7 +226,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 130 + 136 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -238,43 +238,43 @@ Valor apps/client/src/app/components/accounts-table/accounts-table.component.html - 165 + 171 apps/client/src/app/components/accounts-table/accounts-table.component.html - 200 + 206 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + 53 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + 198 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + 201 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + 204 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + 268 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + 271 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + 274 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + 277 libs/ui/src/lib/account-balances/account-balances.component.html @@ -302,19 +302,19 @@ Editar apps/client/src/app/components/accounts-table/accounts-table.component.html - 271 + 278 apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + 177 apps/client/src/app/components/admin-overview/admin-overview.html - 80 + 83 apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + 92 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -330,11 +330,11 @@ Eliminar apps/client/src/app/components/accounts-table/accounts-table.component.html - 281 + 288 apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + 196 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -342,15 +342,15 @@ apps/client/src/app/components/admin-overview/admin-overview.html - 90 + 93 apps/client/src/app/components/admin-overview/admin-overview.html - 199 + 210 apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + 102 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -378,7 +378,7 @@ Símbolo apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + 44 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -390,7 +390,7 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + 36 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -402,11 +402,11 @@ Fonte de dados apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + 53 apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 55 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -414,7 +414,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + 153 @@ -422,7 +422,7 @@ Tentativas apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + 81 @@ -430,7 +430,7 @@ Criado apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + 90 @@ -438,7 +438,7 @@ Terminado apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + 99 @@ -446,7 +446,7 @@ Estado apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + 108 @@ -454,7 +454,7 @@ Eliminar Tarefas apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + 149 @@ -465,8 +465,8 @@ 67 - - Historical Market Data + + Historical Market Data Histórico de Dados de Mercado apps/client/src/app/components/admin-jobs/admin-jobs.html @@ -478,7 +478,7 @@ Visualizar dados apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + 164 @@ -486,7 +486,7 @@ Ver Stacktrace apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + 171 @@ -494,7 +494,7 @@ Apagar Tarefa apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + 177 @@ -514,7 +514,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + 159 libs/ui/src/lib/account-balances/account-balances.component.html @@ -550,15 +550,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + 43 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + 42 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + 25 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -570,11 +570,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + 65 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + 421 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -594,15 +594,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + 50 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + 49 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + 32 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -614,7 +614,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + 428 @@ -630,7 +630,7 @@ Classe do Ativo apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 64 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -646,7 +646,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + 348 @@ -654,7 +654,7 @@ Subclasse do ativo apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 73 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -670,7 +670,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + 364 @@ -678,7 +678,7 @@ Primeira Atividade apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 82 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -706,7 +706,7 @@ Dados Históricos apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 100 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -718,7 +718,7 @@ Contagem de Países apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + 118 @@ -726,7 +726,7 @@ Contagem de Setores apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + 109 @@ -734,7 +734,7 @@ Atualizar dados mais recentes apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + 146 @@ -742,7 +742,7 @@ Recolher Todos os Dados apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + 149 @@ -750,7 +750,7 @@ Recolher Dados de Perfíl apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + 152 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -810,7 +810,7 @@ por Utilizador apps/client/src/app/components/admin-overview/admin-overview.html - 32 + 33 @@ -818,7 +818,7 @@ Taxas de Câmbio apps/client/src/app/components/admin-overview/admin-overview.html - 37 + 39 @@ -826,7 +826,7 @@ Adicionar Moeda apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 109 @@ -834,7 +834,7 @@ Mensagem de Sistema apps/client/src/app/components/admin-overview/admin-overview.html - 145 + 153 @@ -842,7 +842,7 @@ Definir Mensagem apps/client/src/app/components/admin-overview/admin-overview.html - 165 + 175 @@ -850,7 +850,7 @@ Modo Somente Leitura apps/client/src/app/components/admin-overview/admin-overview.html - 123 + 129 @@ -858,7 +858,7 @@ Cupões apps/client/src/app/components/admin-overview/admin-overview.html - 173 + 183 @@ -866,7 +866,7 @@ Adicionar apps/client/src/app/components/admin-overview/admin-overview.html - 231 + 243 libs/ui/src/lib/account-balances/account-balances.component.html @@ -878,7 +878,7 @@ Manutenção apps/client/src/app/components/admin-overview/admin-overview.html - 238 + 251 @@ -886,7 +886,7 @@ Limpar Cache apps/client/src/app/components/admin-overview/admin-overview.html - 242 + 255 @@ -902,7 +902,7 @@ Utilizador apps/client/src/app/components/header/header.component.html - 230 + 223 @@ -910,7 +910,7 @@ Registo apps/client/src/app/components/admin-users/admin-users.html - 96 + 97 @@ -918,11 +918,11 @@ Contas apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 + 65 apps/client/src/app/components/admin-users/admin-users.html - 113 + 114 apps/client/src/app/components/header/header.component.html @@ -930,7 +930,7 @@ apps/client/src/app/components/header/header.component.html - 262 + 257 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -950,15 +950,15 @@ Envolvimento por Dia apps/client/src/app/components/admin-users/admin-users.html - 158 + 157 - + Last Request Último Pedido apps/client/src/app/components/admin-users/admin-users.html - 183 + 181 @@ -982,7 +982,7 @@ Comparar com... apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 + 18 @@ -1022,7 +1022,7 @@ apps/client/src/app/components/header/header.component.html - 244 + 239 @@ -1034,7 +1034,7 @@ apps/client/src/app/components/header/header.component.html - 254 + 249 @@ -1042,11 +1042,11 @@ Controlo Administrativo apps/client/src/app/components/header/header.component.html - 67 + 68 apps/client/src/app/components/header/header.component.html - 278 + 273 @@ -1054,15 +1054,15 @@ Recursos apps/client/src/app/app.component.html - 60 + 61 apps/client/src/app/components/header/header.component.html - 80 + 82 apps/client/src/app/components/header/header.component.html - 289 + 285 apps/client/src/app/pages/resources/resources-page.html @@ -1074,7 +1074,7 @@ Preços apps/client/src/app/app.component.html - 86 + 94 apps/client/src/app/components/header/header.component.html @@ -1082,15 +1082,15 @@ apps/client/src/app/components/header/header.component.html - 301 + 296 apps/client/src/app/components/header/header.component.html - 370 + 367 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 188 + 186 @@ -1098,15 +1098,15 @@ Sobre apps/client/src/app/app.component.html - 66 + 67 apps/client/src/app/components/header/header.component.html - 111 + 112 apps/client/src/app/components/header/header.component.html - 357 + 353 @@ -1114,7 +1114,7 @@ Eu apps/client/src/app/components/header/header.component.html - 211 + 205 @@ -1122,7 +1122,7 @@ O meu Ghostfolio apps/client/src/app/components/header/header.component.html - 269 + 264 @@ -1130,7 +1130,7 @@ Sobre o Ghostfolio apps/client/src/app/components/header/header.component.html - 309 + 305 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -1142,11 +1142,11 @@ Funcionalidades apps/client/src/app/app.component.html - 73 + 76 apps/client/src/app/components/header/header.component.html - 344 + 340 apps/client/src/app/pages/features/features-page.html @@ -1162,7 +1162,7 @@ apps/client/src/app/components/header/header.component.html - 386 + 382 apps/client/src/app/components/home-market/home-market.html @@ -1178,7 +1178,7 @@ Iniciar sessão apps/client/src/app/components/header/header.component.html - 399 + 396 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -1190,7 +1190,7 @@ Começar apps/client/src/app/components/header/header.component.html - 411 + 406 @@ -1254,7 +1254,7 @@ Últimos Dias apps/client/src/app/components/home-market/home-market.html - 6 + 7 @@ -1298,7 +1298,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 + 245 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1314,15 +1314,19 @@ apps/client/src/app/pages/landing/landing-page.html - 423 + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 442 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 + 97 apps/client/src/app/pages/register/register-page.html - 29 + 30 apps/client/src/app/pages/webauthn/webauthn-page.html @@ -1502,11 +1506,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 + 195 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 265 @@ -1562,7 +1566,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 + 182 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1614,7 +1618,7 @@ apps/client/src/app/pages/public/public-page.html - 45 + 50 @@ -1646,7 +1650,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 + 377 libs/ui/src/lib/assistant/assistant.html @@ -1814,7 +1818,7 @@ Changelog apps/client/src/app/app.component.html - 71 + 74 apps/client/src/app/pages/about/changelog/changelog-page.html @@ -1826,7 +1830,7 @@ Licença apps/client/src/app/app.component.html - 80 + 85 apps/client/src/app/pages/about/license/license-page.html @@ -1850,7 +1854,7 @@ Política de Privacidade apps/client/src/app/app.component.html - 90 + 100 apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html @@ -1918,7 +1922,7 @@ Conta apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 + 85 libs/ui/src/lib/activities-table/activities-table.component.html @@ -1938,11 +1942,11 @@ por ano apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 + 33 apps/client/src/app/pages/pricing/pricing-page.html - 254 + 256 @@ -1950,7 +1954,7 @@ Experimentar Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 + 40 @@ -1958,7 +1962,7 @@ Resgatar Cupão apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 + 54 @@ -1982,7 +1986,7 @@ Língua apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 + 48 @@ -2002,7 +2006,7 @@ Localidade apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 + 117 @@ -2010,7 +2014,7 @@ Formato de números e datas apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 + 119 @@ -2018,7 +2022,7 @@ Modo Zen apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 + 167 apps/client/src/app/pages/features/features-page.html @@ -2030,7 +2034,7 @@ Aparência apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 + 142 @@ -2038,7 +2042,7 @@ Auto apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 + 156 @@ -2046,7 +2050,7 @@ Claro apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 + 157 @@ -2054,7 +2058,7 @@ Escuro apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 + 158 @@ -2062,7 +2066,7 @@ Iniciar sessão com impressão digital apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 + 185 @@ -2070,7 +2074,7 @@ Funcionalidades Experimentais apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 + 200 @@ -2082,7 +2086,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 + 218 @@ -2170,7 +2174,7 @@ Blog apps/client/src/app/app.component.html - 68 + 70 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -2258,7 +2262,7 @@ Como já tem sessão iniciada, não pode aceder à conta de demonstração. apps/client/src/app/pages/demo/demo-page.component.ts - 35 + 33 @@ -2334,7 +2338,7 @@ Atualizar atividade apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 + 8 @@ -2342,11 +2346,11 @@ Adicionar atividade apps/client/src/app/components/home-overview/home-overview.html - 56 + 52 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 + 10 @@ -2362,11 +2366,11 @@ Nome, símbolo or ISIN apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + 26 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + 123 @@ -2374,11 +2378,11 @@ Preço por Unidade apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 + 207 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 + 280 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2390,11 +2394,11 @@ Comissão apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 300 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 324 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2414,7 +2418,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + 333 @@ -2438,7 +2442,7 @@ Os seguintes formatos de ficheiro são suportados: apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 + 90 @@ -2446,11 +2450,11 @@ Anterior apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 + 144 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 + 178 @@ -2546,7 +2550,7 @@ apps/client/src/app/pages/public/public-page.html - 76 + 87 @@ -2558,7 +2562,7 @@ apps/client/src/app/pages/public/public-page.html - 93 + 104 @@ -2570,7 +2574,7 @@ apps/client/src/app/pages/public/public-page.html - 102 + 113 @@ -2582,7 +2586,7 @@ apps/client/src/app/pages/public/public-page.html - 111 + 122 @@ -2618,7 +2622,7 @@ Topo apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 + 166 @@ -2626,7 +2630,7 @@ Fundo apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 + 215 @@ -2634,7 +2638,7 @@ Evolução do Portefólio apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 + 268 @@ -2642,7 +2646,7 @@ Cronograma de Investimento apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 + 297 @@ -2674,7 +2678,7 @@ Regra dos 4% apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 + 40 @@ -2738,7 +2742,7 @@ Moedas apps/client/src/app/pages/public/public-page.html - 30 + 32 @@ -2746,7 +2750,7 @@ Continentes apps/client/src/app/pages/public/public-page.html - 60 + 68 @@ -2754,7 +2758,7 @@ O Ghostfolio permite-lhe estar a par e gerir a sua riqueza. apps/client/src/app/pages/public/public-page.html - 148 + 159 @@ -2766,7 +2770,7 @@ apps/client/src/app/pages/public/public-page.html - 153 + 164 @@ -2782,11 +2786,11 @@ Criar Conta apps/client/src/app/app.component.html - 18 + 13 apps/client/src/app/pages/register/register-page.html - 26 + 27 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -2798,7 +2802,7 @@ Continuar com Internet Identity apps/client/src/app/pages/register/register-page.html - 41 + 42 @@ -2806,7 +2810,7 @@ Continuar com Google apps/client/src/app/pages/register/register-page.html - 51 + 53 @@ -3210,7 +3214,7 @@ Nº de Atividades apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 91 @@ -3234,7 +3238,7 @@ Registo do Utilizador apps/client/src/app/components/admin-overview/admin-overview.html - 110 + 115 @@ -3242,11 +3246,15 @@ Comunidade apps/client/src/app/app.component.html - 105 + 118 apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + 77 + + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 82 apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -3262,20 +3270,16 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + 99 apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + 104 apps/client/src/app/components/user-account-settings/user-account-settings.html 108 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 - apps/client/src/app/pages/features/features-page.html 256 @@ -3322,11 +3326,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 + 153 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 + 186 @@ -3346,7 +3350,7 @@ Cronograma de Dividendos apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 + 356 @@ -3362,7 +3366,7 @@ Detenção apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 + 32 @@ -3370,7 +3374,7 @@ Carregar Dividendos apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 + 68 @@ -3458,15 +3462,15 @@ Experiência sem distrações para tempos turbulentos apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 + 168 - + Sneak peek at upcoming functionality Acesso antecipado a funcionalidades futuras apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 + 201 @@ -3486,11 +3490,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 55 + 57 apps/client/src/app/pages/pricing/pricing-page.html - 199 + 203 @@ -3502,11 +3506,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 63 + 65 apps/client/src/app/pages/pricing/pricing-page.html - 207 + 211 @@ -3518,11 +3522,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 67 + 69 apps/client/src/app/pages/pricing/pricing-page.html - 211 + 215 @@ -3534,11 +3538,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 83 + 85 apps/client/src/app/pages/pricing/pricing-page.html - 231 + 235 @@ -3554,7 +3558,7 @@ Atualizar Plano apps/client/src/app/components/header/header.component.html - 182 + 180 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -3562,11 +3566,11 @@ apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 + 16 apps/client/src/app/pages/pricing/pricing-page.html - 268 + 270 @@ -3574,7 +3578,7 @@ Para investidores experientes que preferem correr o Ghostfolio na sua própria infraestrutura. apps/client/src/app/pages/pricing/pricing-page.html - 36 + 38 @@ -3582,15 +3586,15 @@ Transações Ilimitadas apps/client/src/app/pages/pricing/pricing-page.html - 43 + 45 apps/client/src/app/pages/pricing/pricing-page.html - 126 + 129 apps/client/src/app/pages/pricing/pricing-page.html - 187 + 191 @@ -3598,15 +3602,15 @@ Contas Ilimitadas apps/client/src/app/pages/pricing/pricing-page.html - 47 + 49 apps/client/src/app/pages/pricing/pricing-page.html - 130 + 133 apps/client/src/app/pages/pricing/pricing-page.html - 191 + 195 @@ -3614,15 +3618,15 @@ Desempenho do Portefólio apps/client/src/app/pages/pricing/pricing-page.html - 51 + 53 apps/client/src/app/pages/pricing/pricing-page.html - 134 + 137 apps/client/src/app/pages/pricing/pricing-page.html - 195 + 199 @@ -3630,7 +3634,7 @@ Hospedado localmente, atualização manual. apps/client/src/app/pages/pricing/pricing-page.html - 92 + 94 @@ -3638,11 +3642,11 @@ Grátis apps/client/src/app/pages/pricing/pricing-page.html - 93 + 95 apps/client/src/app/pages/pricing/pricing-page.html - 150 + 153 @@ -3650,7 +3654,7 @@ Para novos investidores que estão a começar a investir agora. apps/client/src/app/pages/pricing/pricing-page.html - 120 + 123 @@ -3658,11 +3662,11 @@ Ghostfolio hospedado na nuvem, totalmente gerido. apps/client/src/app/pages/pricing/pricing-page.html - 149 + 152 apps/client/src/app/pages/pricing/pricing-page.html - 240 + 244 @@ -3670,7 +3674,7 @@ Para investidores ambiciosos que precisam de ter uma visão completa de seus ativos financeiros. apps/client/src/app/pages/pricing/pricing-page.html - 180 + 184 @@ -3678,15 +3682,15 @@ Pagamento único, sem renovação automática. apps/client/src/app/pages/pricing/pricing-page.html - 280 + 279 - + Get Started Começar - apps/client/src/app/pages/pricing/pricing-page.html - 291 + apps/client/src/app/pages/landing/landing-page.html + 438 @@ -3694,7 +3698,7 @@ É gratuito. apps/client/src/app/pages/pricing/pricing-page.html - 294 + 300 @@ -3710,7 +3714,7 @@ apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 + 158 @@ -3726,11 +3730,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 59 + 61 apps/client/src/app/pages/pricing/pricing-page.html - 203 + 207 @@ -3746,15 +3750,15 @@ Importação e Exportação de Dados apps/client/src/app/pages/pricing/pricing-page.html - 71 + 73 apps/client/src/app/pages/pricing/pricing-page.html - 138 + 141 apps/client/src/app/pages/pricing/pricing-page.html - 215 + 219 @@ -3770,7 +3774,7 @@ Suporte da Comunidade apps/client/src/app/pages/pricing/pricing-page.html - 88 + 90 @@ -3778,7 +3782,7 @@ Suporte por Email e Chat apps/client/src/app/pages/pricing/pricing-page.html - 236 + 240 @@ -3805,12 +3809,12 @@ 2 - + Oops! Could not get the historical exchange rate from Oops! Não foi possível obter a taxa de câmbio histórica de apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 + 234 @@ -3838,7 +3842,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 226 + 230 @@ -3854,15 +3858,15 @@ Renovar Plano apps/client/src/app/components/header/header.component.html - 190 + 185 apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 + 21 apps/client/src/app/pages/pricing/pricing-page.html - 276 + 275 @@ -3878,7 +3882,7 @@ Personificar Utilizador apps/client/src/app/components/admin-users/admin-users.html - 222 + 218 @@ -3886,7 +3890,7 @@ Apagar Utilizador apps/client/src/app/components/admin-users/admin-users.html - 232 + 229 @@ -3910,7 +3914,7 @@ Atualizar plataforma apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 + 8 @@ -3918,7 +3922,7 @@ Adicionar plataforma apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 + 10 @@ -3930,11 +3934,11 @@ apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 + 51 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 + 25 @@ -3958,7 +3962,7 @@ Atualizar saldo em Dinheiro apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 + 111 @@ -4034,7 +4038,7 @@ Gerir Referências apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 + 35 @@ -4050,7 +4054,7 @@ Selecionar Ficheiro apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 + 22 @@ -4058,7 +4062,7 @@ Selecionar Dividendos apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 + 113 @@ -4066,7 +4070,7 @@ Selecionar Atividades apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 + 115 @@ -4098,7 +4102,7 @@ Finanças pessoais apps/client/src/app/app.component.html - 55 + 54 @@ -4106,7 +4110,7 @@ Perguntas Frequentes (FAQ) apps/client/src/app/app.component.html - 76 + 80 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -4118,7 +4122,7 @@ Série Atual apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 + 318 @@ -4126,7 +4130,7 @@ Série mais Longa apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 + 327 @@ -4378,15 +4382,15 @@ ✅ Sim apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 109 + 115 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 116 + 122 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 130 + 134 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -4394,19 +4398,19 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 155 + 153 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 162 + 160 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 174 + 172 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 181 + 179 @@ -4414,39 +4418,39 @@ ❌ Não apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 111 + 117 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 134 + 136 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 145 + 143 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 157 + 155 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 164 + 162 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 176 + 174 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 183 + 181 - + ❌ No ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 118 + 124 @@ -4454,7 +4458,7 @@ Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 123 + 129 @@ -4462,7 +4466,7 @@ Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 150 + 148 @@ -4470,7 +4474,7 @@ Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 169 + 167 @@ -4478,7 +4482,7 @@ Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 202 + 201 @@ -4518,11 +4522,11 @@ Stocks, ETFs, bonds, cryptocurrencies, commodities apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 + 25 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 + 65 @@ -4530,7 +4534,7 @@ Mortgages, personal loans, credit cards apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 + 57 @@ -4538,7 +4542,7 @@ Luxury items, real estate, private companies apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 + 73 @@ -4678,7 +4682,7 @@ apps/client/src/app/pages/public/public-page.html - 123 + 132 libs/ui/src/lib/top-holdings/top-holdings.component.html @@ -4698,7 +4702,7 @@ Setup accounts apps/client/src/app/components/home-overview/home-overview.html - 48 + 44 @@ -4706,7 +4710,7 @@ Biometric Authentication apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 + 184 @@ -4758,7 +4762,7 @@ Stars on GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 88 apps/client/src/app/pages/open/open-page.html @@ -4770,7 +4774,7 @@ Pulls on Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 106 apps/client/src/app/pages/open/open-page.html @@ -4790,7 +4794,7 @@ Export Data apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 + 226 @@ -4862,7 +4866,7 @@ If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. apps/client/src/app/pages/pricing/pricing-page.html - 24 + 26 @@ -4889,16 +4893,8 @@ 41 - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - or - - apps/client/src/app/pages/landing/landing-page.html - 46 + apps/client/src/app/pages/pricing/pricing-page.html + 297 @@ -4906,7 +4902,7 @@ Monthly Active Users apps/client/src/app/pages/landing/landing-page.html - 69 + 70 @@ -4914,7 +4910,7 @@ As seen in apps/client/src/app/pages/landing/landing-page.html - 113 + 115 @@ -4922,7 +4918,7 @@ Protect your assets. Refine your personal investment strategy. apps/client/src/app/pages/landing/landing-page.html - 215 + 217 @@ -4930,7 +4926,7 @@ Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. apps/client/src/app/pages/landing/landing-page.html - 219 + 221 @@ -4938,7 +4934,7 @@ 360° View apps/client/src/app/pages/landing/landing-page.html - 230 + 232 @@ -4946,7 +4942,7 @@ Web3 Ready apps/client/src/app/pages/landing/landing-page.html - 241 + 243 @@ -4954,7 +4950,7 @@ Use Ghostfolio anonymously and own your financial data. apps/client/src/app/pages/landing/landing-page.html - 243 + 245 @@ -4962,7 +4958,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 251 + 253 @@ -4970,7 +4966,7 @@ Benefit from continuous improvements through a strong community. apps/client/src/app/pages/landing/landing-page.html - 253 + 255 @@ -4978,7 +4974,7 @@ Why Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 262 + 264 @@ -4986,7 +4982,7 @@ Ghostfolio is for you if you are... apps/client/src/app/pages/landing/landing-page.html - 263 + 265 @@ -4994,7 +4990,7 @@ trading stocks, ETFs or cryptocurrencies on multiple platforms apps/client/src/app/pages/landing/landing-page.html - 270 + 272 @@ -5002,7 +4998,7 @@ pursuing a buy & hold strategy apps/client/src/app/pages/landing/landing-page.html - 276 + 278 @@ -5010,7 +5006,7 @@ interested in getting insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 281 + 283 @@ -5018,7 +5014,7 @@ valuing privacy and data ownership apps/client/src/app/pages/landing/landing-page.html - 286 + 288 @@ -5026,7 +5022,7 @@ into minimalism apps/client/src/app/pages/landing/landing-page.html - 289 + 291 @@ -5034,7 +5030,7 @@ caring about diversifying your financial resources apps/client/src/app/pages/landing/landing-page.html - 293 + 295 @@ -5042,7 +5038,7 @@ interested in financial independence apps/client/src/app/pages/landing/landing-page.html - 297 + 299 @@ -5050,7 +5046,7 @@ saying no to spreadsheets in apps/client/src/app/pages/landing/landing-page.html - 301 + 303 @@ -5058,7 +5054,7 @@ still reading this list apps/client/src/app/pages/landing/landing-page.html - 304 + 306 @@ -5066,7 +5062,7 @@ Learn more about Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 309 + 311 @@ -5074,23 +5070,23 @@ What our users are saying apps/client/src/app/pages/landing/landing-page.html - 317 + 319 - + Members from around the globe are using Ghostfolio Premium Members from around the globe are using Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 349 + 358 - + How does Ghostfolio work? How does Ghostfolio work? apps/client/src/app/pages/landing/landing-page.html - 361 + 375 @@ -5098,47 +5094,39 @@ Sign up anonymously* apps/client/src/app/pages/landing/landing-page.html - 370 + 384 - + * no e-mail address nor credit card required * no e-mail address nor credit card required apps/client/src/app/pages/landing/landing-page.html - 372 + 386 - + Add any of your historical transactions Add any of your historical transactions apps/client/src/app/pages/landing/landing-page.html - 383 + 397 - + Get valuable insights of your portfolio composition Get valuable insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 + 409 - - Join now or check out the example account - Join now or check out the example account + + Are you ready? + Are you ready? apps/client/src/app/pages/landing/landing-page.html - 408 + 423 @@ -5150,7 +5138,7 @@ apps/client/src/app/pages/landing/landing-page.html - 424 + 443 @@ -5158,7 +5146,7 @@ Get the full picture of your personal finances across multiple platforms. apps/client/src/app/pages/landing/landing-page.html - 232 + 234 @@ -5166,7 +5154,7 @@ Get started in only 3 steps apps/client/src/app/pages/landing/landing-page.html - 364 + 378 @@ -5506,7 +5494,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 31 + 29 apps/client/src/app/pages/landing/landing-page.component.ts @@ -5554,7 +5542,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 32 + 30 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts @@ -5718,7 +5706,7 @@ Choose or drop a file here apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 + 84 @@ -5726,7 +5714,7 @@ You are using the Live Demo. apps/client/src/app/app.component.html - 17 + 12 @@ -5734,7 +5722,7 @@ One-time fee, annual account fees apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 + 33 @@ -5742,7 +5730,7 @@ Distribution of corporate earnings apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 + 41 @@ -5750,7 +5738,7 @@ Oops! Could not get the historical exchange rate from apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 + 312 @@ -5774,7 +5762,7 @@ Revenue for lending out money apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 + 49 @@ -5798,7 +5786,7 @@ Update tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 + 8 @@ -5806,7 +5794,7 @@ Add tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 + 10 @@ -5822,7 +5810,7 @@ Currency Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 + 134 @@ -5830,7 +5818,7 @@ Account Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 + 146 @@ -5838,7 +5826,7 @@ Transfer Cash Balance apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + 10 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -5882,7 +5870,7 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 + 32 @@ -5890,7 +5878,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 + 72 @@ -5937,12 +5925,12 @@ 84 - - Asset Profile - Asset Profile + + Asset Profile + Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + 35 @@ -6094,11 +6082,11 @@ Starting from apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 190 + 188 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 195 + 193 @@ -6106,11 +6094,11 @@ year apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 191 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 197 + 195 @@ -6129,12 +6117,12 @@ 129 - + If a translation is missing, kindly support us in extending it here. If a translation is missing, kindly support us in extending it here. apps/client/src/app/components/user-account-settings/user-account-settings.html - 55 + 50 @@ -6246,7 +6234,7 @@ Asset Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 51 + 50 @@ -6254,7 +6242,7 @@ Absolute Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 73 + 72 @@ -6262,7 +6250,7 @@ Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 98 + 96 @@ -6270,7 +6258,7 @@ Absolute Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 121 + 119 @@ -6278,7 +6266,7 @@ Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 140 + 138 @@ -6341,12 +6329,12 @@ 8 - + If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 68 + 67 @@ -6394,7 +6382,7 @@ Data Gathering apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 141 @@ -6502,7 +6490,7 @@ Execute Job apps/client/src/app/components/admin-jobs/admin-jobs.html - 183 + 174 @@ -6510,7 +6498,7 @@ Priority apps/client/src/app/components/admin-jobs/admin-jobs.html - 63 + 62 @@ -6590,7 +6578,7 @@ Danger Zone apps/client/src/app/components/user-account-settings/user-account-settings.html - 243 + 238 @@ -6598,7 +6586,7 @@ Close Account apps/client/src/app/components/user-account-settings/user-account-settings.html - 278 + 273 @@ -6617,6 +6605,14 @@ 340 + + Join now or check out the example account + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 426 + + diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 05e2bae98..dcac786fe 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -338,7 +338,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 31 + 29 apps/client/src/app/pages/landing/landing-page.component.ts @@ -386,7 +386,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 32 + 30 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts @@ -406,7 +406,7 @@ Kişisel Finans apps/client/src/app/app.component.html - 55 + 54 @@ -418,7 +418,7 @@ apps/client/src/app/components/header/header.component.html - 386 + 382 apps/client/src/app/components/home-market/home-market.html @@ -434,15 +434,15 @@ Piyasalar apps/client/src/app/app.component.html - 60 + 61 apps/client/src/app/components/header/header.component.html - 80 + 82 apps/client/src/app/components/header/header.component.html - 289 + 285 apps/client/src/app/pages/resources/resources-page.html @@ -454,15 +454,15 @@ Hakkında apps/client/src/app/app.component.html - 66 + 67 apps/client/src/app/components/header/header.component.html - 111 + 112 apps/client/src/app/components/header/header.component.html - 357 + 353 @@ -470,7 +470,7 @@ Blog apps/client/src/app/app.component.html - 68 + 70 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -558,7 +558,7 @@ Değişiklik Günlüğü apps/client/src/app/app.component.html - 71 + 74 apps/client/src/app/pages/about/changelog/changelog-page.html @@ -570,11 +570,11 @@ Özellikler apps/client/src/app/app.component.html - 73 + 76 apps/client/src/app/components/header/header.component.html - 344 + 340 apps/client/src/app/pages/features/features-page.html @@ -586,7 +586,7 @@ Sıkça Sorulan Sorular (SSS) apps/client/src/app/app.component.html - 76 + 80 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -598,7 +598,7 @@ Lisans apps/client/src/app/app.component.html - 80 + 85 apps/client/src/app/pages/about/license/license-page.html @@ -610,7 +610,7 @@ Fiyatlandırma apps/client/src/app/app.component.html - 86 + 94 apps/client/src/app/components/header/header.component.html @@ -618,15 +618,15 @@ apps/client/src/app/components/header/header.component.html - 301 + 296 apps/client/src/app/components/header/header.component.html - 370 + 367 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 188 + 186 @@ -634,7 +634,7 @@ Gizlilik Politikası apps/client/src/app/app.component.html - 90 + 100 apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html @@ -646,11 +646,15 @@ Topluluk apps/client/src/app/app.component.html - 105 + 118 apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + 77 + + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 82 apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -666,31 +670,27 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + 99 apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + 104 apps/client/src/app/components/user-account-settings/user-account-settings.html 108 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 - apps/client/src/app/pages/features/features-page.html 256 - + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. Alım satımda kayıp riski büyük boyutta olabilir. Kısa vadede ihtiyaç duyabileceğiniz parayla yatırım yapmak tavsiye edilmez. apps/client/src/app/app.component.html - 182 + 194 @@ -718,7 +718,7 @@ Tip apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + 31 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -726,7 +726,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 15 libs/ui/src/lib/activities-table/activities-table.component.html @@ -746,7 +746,7 @@ Geri Al apps/client/src/app/components/access-table/access-table.component.html - 63 + 62 @@ -766,7 +766,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 130 + 136 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -790,7 +790,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 81 + 86 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -810,7 +810,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 113 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -822,7 +822,7 @@ apps/client/src/app/components/admin-users/admin-users.html - 134 + 135 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -842,7 +842,7 @@ Ad apps/client/src/app/components/accounts-table/accounts-table.component.html - 39 + 43 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -858,7 +858,7 @@ apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + 15 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -866,7 +866,7 @@ apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + 15 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -874,7 +874,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + 137 libs/ui/src/lib/activities-table/activities-table.component.html @@ -894,7 +894,7 @@ Toplam apps/client/src/app/components/accounts-table/accounts-table.component.html - 50 + 55 @@ -902,7 +902,7 @@ Para Birimi apps/client/src/app/components/accounts-table/accounts-table.component.html - 60 + 65 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -918,7 +918,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + 143 libs/ui/src/lib/activities-table/activities-table.component.html @@ -930,43 +930,43 @@ Değer apps/client/src/app/components/accounts-table/accounts-table.component.html - 165 + 171 apps/client/src/app/components/accounts-table/accounts-table.component.html - 200 + 206 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + 53 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + 198 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + 201 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + 204 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + 268 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + 271 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + 274 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + 277 libs/ui/src/lib/account-balances/account-balances.component.html @@ -994,19 +994,19 @@ Düzenle apps/client/src/app/components/accounts-table/accounts-table.component.html - 271 + 278 apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + 177 apps/client/src/app/components/admin-overview/admin-overview.html - 80 + 83 apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + 92 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1022,11 +1022,11 @@ Sil apps/client/src/app/components/accounts-table/accounts-table.component.html - 281 + 288 apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + 196 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1034,15 +1034,15 @@ apps/client/src/app/components/admin-overview/admin-overview.html - 90 + 93 apps/client/src/app/components/admin-overview/admin-overview.html - 199 + 210 apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + 102 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1070,7 +1070,7 @@ Sembol apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + 44 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -1082,7 +1082,7 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + 36 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1094,11 +1094,11 @@ Veri Kaynağı apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + 53 apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 55 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1106,7 +1106,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + 153 @@ -1114,7 +1114,7 @@ Deneme apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + 81 @@ -1122,7 +1122,7 @@ Oluşturuldu apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + 90 @@ -1130,7 +1130,7 @@ Tamamlandı apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + 99 @@ -1138,7 +1138,7 @@ Durum apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + 108 @@ -1146,7 +1146,7 @@ İşleri Sil apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + 149 @@ -1157,9 +1157,9 @@ 67 - - Historical Market Data - Tarihsel Piyasa Verisi + + Historical Market Data + Tarihsel Piyasa Verisi apps/client/src/app/components/admin-jobs/admin-jobs.html 37 @@ -1170,7 +1170,7 @@ Veri Gör apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + 164 @@ -1178,7 +1178,7 @@ Hata İzini Görüntüle apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + 171 @@ -1186,7 +1186,7 @@ İşleri Sil apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + 177 @@ -1206,7 +1206,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + 159 libs/ui/src/lib/account-balances/account-balances.component.html @@ -1242,15 +1242,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + 43 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + 42 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + 25 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -1262,11 +1262,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + 65 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + 421 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1286,15 +1286,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + 50 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + 49 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + 32 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -1306,7 +1306,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + 428 @@ -1346,7 +1346,7 @@ Varlık Sınıfı apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 64 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1362,7 +1362,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + 348 @@ -1370,7 +1370,7 @@ Varlık Alt Sınıfı apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 73 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1386,7 +1386,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + 364 @@ -1394,7 +1394,7 @@ İlk İşlem apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 82 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1414,7 +1414,7 @@ İşlem Sayısı apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 91 @@ -1422,7 +1422,7 @@ Tarihsel Veri apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 100 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1434,7 +1434,7 @@ Sektör Sayısı apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + 109 @@ -1442,7 +1442,7 @@ Ülke Sayısı apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + 118 @@ -1450,7 +1450,7 @@ Son Veriyi Getir apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + 146 @@ -1458,7 +1458,7 @@ Tüm Veriyi Getir apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + 149 @@ -1466,7 +1466,7 @@ Profil Verisini Getir apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + 152 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1534,7 +1534,7 @@ apps/client/src/app/pages/public/public-page.html - 45 + 50 @@ -1582,7 +1582,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + 333 @@ -1598,11 +1598,11 @@ Ad, sembol ya da ISIN apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + 26 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + 123 @@ -1666,7 +1666,7 @@ Kullanıcı başına apps/client/src/app/components/admin-overview/admin-overview.html - 32 + 33 @@ -1674,7 +1674,7 @@ Döviz Kurları apps/client/src/app/components/admin-overview/admin-overview.html - 37 + 39 @@ -1682,7 +1682,7 @@ Para Birimi Ekle apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 109 @@ -1698,7 +1698,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 + 377 libs/ui/src/lib/assistant/assistant.html @@ -1710,7 +1710,7 @@ Kullanıcı Kaydı apps/client/src/app/components/admin-overview/admin-overview.html - 110 + 115 @@ -1718,7 +1718,7 @@ Salt okunur mod apps/client/src/app/components/admin-overview/admin-overview.html - 123 + 129 @@ -1726,7 +1726,7 @@ Sistem Mesajı apps/client/src/app/components/admin-overview/admin-overview.html - 145 + 153 @@ -1734,7 +1734,7 @@ Mesaj Belirle apps/client/src/app/components/admin-overview/admin-overview.html - 165 + 175 @@ -1742,7 +1742,7 @@ Kupon apps/client/src/app/components/admin-overview/admin-overview.html - 173 + 183 @@ -1750,7 +1750,7 @@ Ekle apps/client/src/app/components/admin-overview/admin-overview.html - 231 + 243 libs/ui/src/lib/account-balances/account-balances.component.html @@ -1762,7 +1762,7 @@ Genel Ayarlar apps/client/src/app/components/admin-overview/admin-overview.html - 238 + 251 @@ -1770,7 +1770,7 @@ Önbelleği temizle apps/client/src/app/components/admin-overview/admin-overview.html - 242 + 255 @@ -1790,11 +1790,11 @@ apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 + 51 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 + 25 @@ -1802,11 +1802,11 @@ Hesaplar apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 + 65 apps/client/src/app/components/admin-users/admin-users.html - 113 + 114 apps/client/src/app/components/header/header.component.html @@ -1814,7 +1814,7 @@ apps/client/src/app/components/header/header.component.html - 262 + 257 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1842,7 +1842,7 @@ Platformu Güncelle apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 + 8 @@ -1850,7 +1850,7 @@ Platform Ekle apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 + 10 @@ -1874,7 +1874,7 @@ Kullanıcı apps/client/src/app/components/header/header.component.html - 230 + 223 @@ -1882,7 +1882,7 @@ Kayıt apps/client/src/app/components/admin-users/admin-users.html - 96 + 97 @@ -1890,15 +1890,15 @@ Günlük etkileşim apps/client/src/app/components/admin-users/admin-users.html - 158 + 157 - + Last Request Son Talep apps/client/src/app/components/admin-users/admin-users.html - 183 + 181 @@ -1906,7 +1906,7 @@ Kullanıcıyı Taklit Et apps/client/src/app/components/admin-users/admin-users.html - 222 + 218 @@ -1914,7 +1914,7 @@ Kullanıcıyı Sil apps/client/src/app/components/admin-users/admin-users.html - 232 + 229 @@ -1938,7 +1938,7 @@ Karşılaştır... apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 + 18 @@ -1946,7 +1946,7 @@ Karşılaştırma Ölçütlerini Yönet apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 + 35 @@ -1986,7 +1986,7 @@ apps/client/src/app/components/header/header.component.html - 244 + 239 @@ -1998,7 +1998,7 @@ apps/client/src/app/components/header/header.component.html - 254 + 249 @@ -2006,11 +2006,11 @@ Yönetici Kontrolü apps/client/src/app/components/header/header.component.html - 67 + 68 apps/client/src/app/components/header/header.component.html - 278 + 273 @@ -2018,7 +2018,7 @@ Ben apps/client/src/app/components/header/header.component.html - 211 + 205 @@ -2026,7 +2026,7 @@ Ghostfolio'm apps/client/src/app/components/header/header.component.html - 269 + 264 @@ -2034,7 +2034,7 @@ Ghostfolio Hakkında apps/client/src/app/components/header/header.component.html - 309 + 305 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -2046,7 +2046,7 @@ Giriş apps/client/src/app/components/header/header.component.html - 399 + 396 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -2058,7 +2058,7 @@ Haydi Başlayalım apps/client/src/app/components/header/header.component.html - 411 + 406 @@ -2122,7 +2122,7 @@ Son Gün apps/client/src/app/components/home-market/home-market.html - 6 + 7 @@ -2194,7 +2194,7 @@ Hesaplarınızı kurunuz apps/client/src/app/components/home-overview/home-overview.html - 48 + 44 @@ -2202,11 +2202,11 @@ İşlem ekle. apps/client/src/app/components/home-overview/home-overview.html - 56 + 52 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 + 10 @@ -2242,7 +2242,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 + 245 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -2258,15 +2258,19 @@ apps/client/src/app/pages/landing/landing-page.html - 423 + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 442 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 + 97 apps/client/src/app/pages/register/register-page.html - 29 + 30 apps/client/src/app/pages/webauthn/webauthn-page.html @@ -2474,11 +2478,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 + 195 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 265 @@ -2534,7 +2538,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 + 182 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2554,7 +2558,7 @@ apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 + 158 @@ -2590,11 +2594,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 55 + 57 apps/client/src/app/pages/pricing/pricing-page.html - 199 + 203 @@ -2610,11 +2614,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 59 + 61 apps/client/src/app/pages/pricing/pricing-page.html - 203 + 207 @@ -2626,11 +2630,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 63 + 65 apps/client/src/app/pages/pricing/pricing-page.html - 207 + 211 @@ -2642,11 +2646,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 67 + 69 apps/client/src/app/pages/pricing/pricing-page.html - 211 + 215 @@ -2658,7 +2662,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 226 + 230 @@ -2670,11 +2674,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 83 + 85 apps/client/src/app/pages/pricing/pricing-page.html - 231 + 235 @@ -2698,7 +2702,7 @@ Üyeliğinizi Yükseltin apps/client/src/app/components/header/header.component.html - 182 + 180 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -2706,11 +2710,11 @@ apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 + 16 apps/client/src/app/pages/pricing/pricing-page.html - 268 + 270 @@ -3022,7 +3026,7 @@ Oturum açmış olduğunuz için demo hesabına erişemezsiniz. apps/client/src/app/pages/demo/demo-page.component.ts - 35 + 33 @@ -3146,7 +3150,7 @@ Zen Modu apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 + 167 apps/client/src/app/pages/features/features-page.html @@ -3194,7 +3198,7 @@ apps/client/src/app/pages/public/public-page.html - 153 + 164 @@ -3269,16 +3273,8 @@ 41 - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - veya - - apps/client/src/app/pages/landing/landing-page.html - 46 + apps/client/src/app/pages/pricing/pricing-page.html + 297 @@ -3290,7 +3286,7 @@ apps/client/src/app/pages/landing/landing-page.html - 424 + 443 @@ -3298,7 +3294,7 @@ Aylık Aktif Kullanıcılar apps/client/src/app/pages/landing/landing-page.html - 69 + 70 @@ -3306,7 +3302,7 @@ GitHub'daki Beğeniler apps/client/src/app/pages/landing/landing-page.html - 87 + 88 apps/client/src/app/pages/open/open-page.html @@ -3318,7 +3314,7 @@ Docker Hub'ta Çekmeler apps/client/src/app/pages/landing/landing-page.html - 105 + 106 apps/client/src/app/pages/open/open-page.html @@ -3330,7 +3326,7 @@ Şurada görüldüğü gibi apps/client/src/app/pages/landing/landing-page.html - 113 + 115 @@ -3338,7 +3334,7 @@ varlıklarınızı koruyun. Kişisel yatırım stratejinizi geliştirin. apps/client/src/app/pages/landing/landing-page.html - 215 + 217 @@ -3346,7 +3342,7 @@ Ghostfolio, takip edilmeden hisse senetleri, ETF'ler veya kripto paraları izlemek isteyen yoğun insanlara güç verir. apps/client/src/app/pages/landing/landing-page.html - 219 + 221 @@ -3354,7 +3350,7 @@ 360° Görünüm apps/client/src/app/pages/landing/landing-page.html - 230 + 232 @@ -3362,7 +3358,7 @@ Kişisel finansınızın tam resmini birden fazla platformda edinin. apps/client/src/app/pages/landing/landing-page.html - 232 + 234 @@ -3370,7 +3366,7 @@ Web3 Hazır apps/client/src/app/pages/landing/landing-page.html - 241 + 243 @@ -3378,7 +3374,7 @@ Ghostfolio'yu anonim olarak kullanın ve finansal verilerinize sahip çıkın. apps/client/src/app/pages/landing/landing-page.html - 243 + 245 @@ -3386,7 +3382,7 @@ Açık Kaynak apps/client/src/app/pages/landing/landing-page.html - 251 + 253 @@ -3394,7 +3390,7 @@ Güçlü bir topluluk aracılığıyla sürekli gelişmelerden faydalanın. apps/client/src/app/pages/landing/landing-page.html - 253 + 255 @@ -3402,7 +3398,7 @@ Neden Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 262 + 264 @@ -3410,7 +3406,7 @@ Ghostfolio tam size göre, apps/client/src/app/pages/landing/landing-page.html - 263 + 265 @@ -3418,7 +3414,7 @@ Birden fazla platformda hisse senedi, ETF veya kripto para ticareti yapıyorsanız, apps/client/src/app/pages/landing/landing-page.html - 270 + 272 @@ -3426,7 +3422,7 @@ al ve tut stratejisi izliyorsanız, apps/client/src/app/pages/landing/landing-page.html - 276 + 278 @@ -3434,7 +3430,7 @@ Portföy bileşimine dair içgörüleri edinmek istiyorsanız, apps/client/src/app/pages/landing/landing-page.html - 281 + 283 @@ -3442,7 +3438,7 @@ Gizliliğe ve verilerinize sahip çıkmayı önemsiyorsanız apps/client/src/app/pages/landing/landing-page.html - 286 + 288 @@ -3450,7 +3446,7 @@ minimalizme ilgi duyuyorsanız apps/client/src/app/pages/landing/landing-page.html - 289 + 291 @@ -3458,7 +3454,7 @@ finansal kaynaklarınızı çeşitlendirmeye önem veriyorsanız apps/client/src/app/pages/landing/landing-page.html - 293 + 295 @@ -3466,7 +3462,7 @@ finansal özgürlük peşindeyseniz apps/client/src/app/pages/landing/landing-page.html - 297 + 299 @@ -3474,7 +3470,7 @@ elektronik tablo uygulamalarına hayır diyorsanız apps/client/src/app/pages/landing/landing-page.html - 301 + 303 @@ -3482,7 +3478,7 @@ bu listeyi hala okuyorsanız apps/client/src/app/pages/landing/landing-page.html - 304 + 306 @@ -3490,7 +3486,7 @@ Ghostfolio hakkında daha fazla bilgi edinin apps/client/src/app/pages/landing/landing-page.html - 309 + 311 @@ -3498,23 +3494,23 @@ What our users are saying apps/client/src/app/pages/landing/landing-page.html - 317 + 319 - + Members from around the globe are using Ghostfolio Premium Dünyanın dört bir yanındaki kullanıcılar Ghostfolio Premium kullanıyorlar. apps/client/src/app/pages/landing/landing-page.html - 349 + 358 - + How does Ghostfolio work? How does Ghostfolio work? apps/client/src/app/pages/landing/landing-page.html - 361 + 375 @@ -3522,7 +3518,7 @@ Sadece 3 adımda başlayın apps/client/src/app/pages/landing/landing-page.html - 364 + 378 @@ -3530,47 +3526,39 @@ Anonim olarak kaydolun* apps/client/src/app/pages/landing/landing-page.html - 370 + 384 - + * no e-mail address nor credit card required * e-posta adresi veya kredi kartı gerekmez apps/client/src/app/pages/landing/landing-page.html - 372 + 386 - + Add any of your historical transactions Herhangi bir geçmiş işleminizi ekleyin apps/client/src/app/pages/landing/landing-page.html - 383 + 397 - + Get valuable insights of your portfolio composition Portföy bileşiminizle ilgili değerli bilgiler edinin apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 + 409 - - Join now or check out the example account - Şİmdi katılın ya da örnek hesabı inceleyin + + Are you ready? + Are you ready? apps/client/src/app/pages/landing/landing-page.html - 408 + 423 @@ -3650,7 +3638,7 @@ İşlemi Güncelle apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 + 8 @@ -3658,11 +3646,11 @@ Hisse senetleri, ETF'ler, tahviller, kripto paralar, emtialar apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 + 25 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 + 65 @@ -3670,7 +3658,7 @@ Mortgage, kişisel krediler, kredi kartları apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 + 57 @@ -3678,7 +3666,7 @@ Lüks eşyalar, gayrimenkuller, özel şirketler apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 + 73 @@ -3686,7 +3674,7 @@ Hesap apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 + 85 libs/ui/src/lib/activities-table/activities-table.component.html @@ -3698,7 +3686,7 @@ Nakit Bakiyesini Güncelle apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 + 111 @@ -3706,23 +3694,23 @@ Birim Fiyat apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 + 207 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 + 280 libs/ui/src/lib/activities-table/activities-table.component.html 209 - + Oops! Could not get the historical exchange rate from Hay Allah! Geçmiş döviz kuru alınamadı: apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 + 234 @@ -3730,11 +3718,11 @@ Komisyon apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 300 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 324 libs/ui/src/lib/activities-table/activities-table.component.html @@ -3794,7 +3782,7 @@ Dosya Seç apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 + 22 @@ -3802,7 +3790,7 @@ Varlık apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 + 32 @@ -3810,7 +3798,7 @@ Temettü Yükle apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 + 68 @@ -3818,7 +3806,7 @@ Aşağıdaki dosya formatları desteklenmektedir: apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 + 90 @@ -3826,7 +3814,7 @@ Temettü Seç apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 + 113 @@ -3834,7 +3822,7 @@ İşlemleri Seç apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 + 115 @@ -3842,11 +3830,11 @@ Geri apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 + 144 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 + 178 @@ -3858,11 +3846,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 + 153 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 + 186 @@ -3958,7 +3946,7 @@ apps/client/src/app/pages/public/public-page.html - 76 + 87 @@ -3970,7 +3958,7 @@ apps/client/src/app/pages/public/public-page.html - 93 + 104 @@ -3982,7 +3970,7 @@ apps/client/src/app/pages/public/public-page.html - 102 + 113 @@ -3994,7 +3982,7 @@ apps/client/src/app/pages/public/public-page.html - 111 + 122 @@ -4006,7 +3994,7 @@ apps/client/src/app/pages/public/public-page.html - 123 + 132 libs/ui/src/lib/top-holdings/top-holdings.component.html @@ -4098,7 +4086,7 @@ Üst apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 + 166 @@ -4106,7 +4094,7 @@ Alt apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 + 215 @@ -4114,7 +4102,7 @@ Portföyün Gelişimi apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 + 268 @@ -4122,7 +4110,7 @@ Yatırım Zaman Çizelgesi apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 + 297 @@ -4130,7 +4118,7 @@ Güncel Seri apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 + 318 @@ -4138,7 +4126,7 @@ En Uzun Seri apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 + 327 @@ -4146,7 +4134,7 @@ Temettü Zaman Çizelgesi apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 + 356 @@ -4178,7 +4166,7 @@ %4 Kuralı apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 + 40 @@ -4230,7 +4218,7 @@ Ghostfolio'yu kendi altyapınızda çalıştırmayı tercih ederseniz, lütfen kaynak kodunu ve daha fazla talimatı GitHub adresinde bulun. apps/client/src/app/pages/pricing/pricing-page.html - 24 + 26 @@ -4238,7 +4226,7 @@ Kendi altyapılarında Ghostfolio'yu çalıştırmayı tercih eden teknolojiye hakim yatırımcılar için. apps/client/src/app/pages/pricing/pricing-page.html - 36 + 38 @@ -4246,15 +4234,15 @@ Sınırsız İşlem apps/client/src/app/pages/pricing/pricing-page.html - 43 + 45 apps/client/src/app/pages/pricing/pricing-page.html - 126 + 129 apps/client/src/app/pages/pricing/pricing-page.html - 187 + 191 @@ -4262,15 +4250,15 @@ Kısıtsız Hesaplar apps/client/src/app/pages/pricing/pricing-page.html - 47 + 49 apps/client/src/app/pages/pricing/pricing-page.html - 130 + 133 apps/client/src/app/pages/pricing/pricing-page.html - 191 + 195 @@ -4278,15 +4266,15 @@ Portföy Performansı apps/client/src/app/pages/pricing/pricing-page.html - 51 + 53 apps/client/src/app/pages/pricing/pricing-page.html - 134 + 137 apps/client/src/app/pages/pricing/pricing-page.html - 195 + 199 @@ -4294,15 +4282,15 @@ Veri İçe Aktarma ve Dışa Aktarma apps/client/src/app/pages/pricing/pricing-page.html - 71 + 73 apps/client/src/app/pages/pricing/pricing-page.html - 138 + 141 apps/client/src/app/pages/pricing/pricing-page.html - 215 + 219 @@ -4310,7 +4298,7 @@ Topluluk Desteği apps/client/src/app/pages/pricing/pricing-page.html - 88 + 90 @@ -4318,7 +4306,7 @@ Tarafınızca barındırılıyor, elle güncelleyiniz. apps/client/src/app/pages/pricing/pricing-page.html - 92 + 94 @@ -4326,11 +4314,11 @@ Ücretsiz apps/client/src/app/pages/pricing/pricing-page.html - 93 + 95 apps/client/src/app/pages/pricing/pricing-page.html - 150 + 153 @@ -4338,7 +4326,7 @@ Alım satıma henüz başlamış yeni yatırımcılar için. apps/client/src/app/pages/pricing/pricing-page.html - 120 + 123 @@ -4346,11 +4334,11 @@ Eksiksiz yönetilen Ghostfolio bulut teklifi. apps/client/src/app/pages/pricing/pricing-page.html - 149 + 152 apps/client/src/app/pages/pricing/pricing-page.html - 240 + 244 @@ -4358,7 +4346,7 @@ Finansal varlıklarının tamamını görmeye ihtiyaç duyan hırslı yatırımcılar için. apps/client/src/app/pages/pricing/pricing-page.html - 180 + 184 @@ -4366,7 +4354,7 @@ E-posta ve Sohbet Desteği apps/client/src/app/pages/pricing/pricing-page.html - 236 + 240 @@ -4374,15 +4362,15 @@ Aboneliği Yenile apps/client/src/app/components/header/header.component.html - 190 + 185 apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 + 21 apps/client/src/app/pages/pricing/pricing-page.html - 276 + 275 @@ -4390,15 +4378,15 @@ Tek seferlik ödeme, otomatik yenileme yok. apps/client/src/app/pages/pricing/pricing-page.html - 280 + 279 - + Get Started Başla - apps/client/src/app/pages/pricing/pricing-page.html - 291 + apps/client/src/app/pages/landing/landing-page.html + 438 @@ -4406,7 +4394,7 @@ Ücretsiz. apps/client/src/app/pages/pricing/pricing-page.html - 294 + 300 @@ -4422,7 +4410,7 @@ Para birimleri apps/client/src/app/pages/public/public-page.html - 30 + 32 @@ -4430,7 +4418,7 @@ Kıtalar apps/client/src/app/pages/public/public-page.html - 60 + 68 @@ -4438,7 +4426,7 @@ Ghostfolio, varlıklarınızı takip etmenizi sağlar. apps/client/src/app/pages/public/public-page.html - 148 + 159 @@ -4454,11 +4442,11 @@ Hesap Oluştur apps/client/src/app/app.component.html - 18 + 13 apps/client/src/app/pages/register/register-page.html - 26 + 27 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -4470,7 +4458,7 @@ İnternet Kimliği ile Devam Et apps/client/src/app/pages/register/register-page.html - 41 + 42 @@ -4478,7 +4466,7 @@ Google ile Devam Et apps/client/src/app/pages/register/register-page.html - 51 + 53 @@ -4634,15 +4622,15 @@ ✅ Evet apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 109 + 115 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 116 + 122 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 130 + 134 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -4650,19 +4638,19 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 155 + 153 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 162 + 160 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 174 + 172 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 181 + 179 @@ -4670,39 +4658,39 @@ ❌ Hayır apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 111 + 117 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 134 + 136 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 145 + 143 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 157 + 155 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 164 + 162 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 176 + 174 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 183 + 181 - + ❌ No ❌ Hayır apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 118 + 124 @@ -4710,7 +4698,7 @@ Tarafınızca Barındırma apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 123 + 129 @@ -4718,7 +4706,7 @@ Anonim olarak kullan apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 150 + 148 @@ -4726,7 +4714,7 @@ Ücretsiz Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 169 + 167 @@ -4734,7 +4722,7 @@ Notlar apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 202 + 201 @@ -4910,11 +4898,11 @@ yıllık apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 + 33 apps/client/src/app/pages/pricing/pricing-page.html - 254 + 256 @@ -4922,7 +4910,7 @@ Premium'u Deneyin apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 + 40 @@ -4930,7 +4918,7 @@ Kupon Kullan apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 + 54 @@ -4962,7 +4950,7 @@ Dil apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 + 48 @@ -4970,7 +4958,7 @@ Yerel Ayarlar apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 + 117 @@ -4978,7 +4966,7 @@ Tarih ve Sayı Formatları apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 + 119 @@ -4986,7 +4974,7 @@ Görünüm apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 + 142 @@ -4994,7 +4982,7 @@ Otomatik apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 + 156 @@ -5002,7 +4990,7 @@ Açık apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 + 157 @@ -5010,7 +4998,7 @@ Koyu apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 + 158 @@ -5018,7 +5006,7 @@ Çalkantılı zamanlar için dikkat dağıtmayan bir deneyim apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 + 168 @@ -5026,7 +5014,7 @@ Biyometrik Kimlik Doğrulama apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 + 184 @@ -5034,7 +5022,7 @@ Parmak iziyle oturum aç apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 + 185 @@ -5042,15 +5030,15 @@ Deneysel Özellikler apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 + 200 - + Sneak peek at upcoming functionality Gelecek özelliklere göz atın apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 + 201 @@ -5062,7 +5050,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 + 218 @@ -5070,7 +5058,7 @@ Verileri Dışa Aktar apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 + 226 @@ -5690,7 +5678,7 @@ Canlı demoyu kullanmaktasınız. apps/client/src/app/app.component.html - 17 + 12 @@ -5734,7 +5722,7 @@ Tek seferlik ücret, yıllık hesap ücreti apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 + 33 @@ -5742,7 +5730,7 @@ Şirket gelirinin dağıtımı apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 + 41 @@ -5750,7 +5738,7 @@ Borç verme getirisi apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 + 49 @@ -5758,7 +5746,7 @@ Hay Allah! Tarihsel kur verisi elde edilemedi apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 + 312 @@ -5766,7 +5754,7 @@ Dosya seçin ya da sürükleyin apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 + 84 @@ -5798,7 +5786,7 @@ Etiketi güncelle apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 + 8 @@ -5806,7 +5794,7 @@ Etiket ekle apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 + 10 @@ -5822,7 +5810,7 @@ Kur Kümelenme Riskleri (Currency Cluster Risks) apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 + 134 @@ -5830,7 +5818,7 @@ Hesap Kümelenme Riski (Account Cluster Risks) apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 + 146 @@ -5838,7 +5826,7 @@ Nakit Bakiyesini Transfer Et apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + 10 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -5882,7 +5870,7 @@ Bitiş apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 + 32 @@ -5890,7 +5878,7 @@ Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 + 72 @@ -5937,12 +5925,12 @@ 84 - - Asset Profile - Varlık Profili + + Asset Profile + Varlık Profili apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + 35 @@ -6094,11 +6082,11 @@ Başlangıç apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 190 + 188 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 195 + 193 @@ -6106,11 +6094,11 @@ Yıl apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 191 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 197 + 195 @@ -6129,12 +6117,12 @@ 129 - + If a translation is missing, kindly support us in extending it here. If a translation is missing, kindly support us in extending it here. apps/client/src/app/components/user-account-settings/user-account-settings.html - 55 + 50 @@ -6246,7 +6234,7 @@ Asset Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 51 + 50 @@ -6254,7 +6242,7 @@ Absolute Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 73 + 72 @@ -6262,7 +6250,7 @@ Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 98 + 96 @@ -6270,7 +6258,7 @@ Absolute Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 121 + 119 @@ -6278,7 +6266,7 @@ Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 140 + 138 @@ -6341,12 +6329,12 @@ 8 - + If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 68 + 67 @@ -6394,7 +6382,7 @@ Data Gathering apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 141 @@ -6502,7 +6490,7 @@ Execute Job apps/client/src/app/components/admin-jobs/admin-jobs.html - 183 + 174 @@ -6510,7 +6498,7 @@ Priority apps/client/src/app/components/admin-jobs/admin-jobs.html - 63 + 62 @@ -6590,7 +6578,7 @@ Danger Zone apps/client/src/app/components/user-account-settings/user-account-settings.html - 243 + 238 @@ -6598,7 +6586,7 @@ Close Account apps/client/src/app/components/user-account-settings/user-account-settings.html - 278 + 273 @@ -6617,6 +6605,14 @@ 340 + + Join now or check out the example account + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 426 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index c001e4a3c..c7bc327c5 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -331,7 +331,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 31 + 29 apps/client/src/app/pages/landing/landing-page.component.ts @@ -378,7 +378,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 32 + 30 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts @@ -397,18 +397,18 @@ You are using the Live Demo. apps/client/src/app/app.component.html - 17 + 12 Create Account apps/client/src/app/app.component.html - 18 + 13 apps/client/src/app/pages/register/register-page.html - 26 + 27 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -419,7 +419,7 @@ Personal Finance apps/client/src/app/app.component.html - 55 + 54 @@ -430,7 +430,7 @@ apps/client/src/app/components/header/header.component.html - 386 + 382 apps/client/src/app/components/home-market/home-market.html @@ -445,15 +445,15 @@ Resources apps/client/src/app/app.component.html - 60 + 61 apps/client/src/app/components/header/header.component.html - 80 + 82 apps/client/src/app/components/header/header.component.html - 289 + 285 apps/client/src/app/pages/resources/resources-page.html @@ -464,22 +464,22 @@ About apps/client/src/app/app.component.html - 66 + 67 apps/client/src/app/components/header/header.component.html - 111 + 112 apps/client/src/app/components/header/header.component.html - 357 + 353 Blog apps/client/src/app/app.component.html - 68 + 70 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -566,7 +566,7 @@ Changelog apps/client/src/app/app.component.html - 71 + 74 apps/client/src/app/pages/about/changelog/changelog-page.html @@ -577,11 +577,11 @@ Features apps/client/src/app/app.component.html - 73 + 76 apps/client/src/app/components/header/header.component.html - 344 + 340 apps/client/src/app/pages/features/features-page.html @@ -592,7 +592,7 @@ Frequently Asked Questions (FAQ) apps/client/src/app/app.component.html - 76 + 80 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -603,7 +603,7 @@ License apps/client/src/app/app.component.html - 80 + 85 apps/client/src/app/pages/about/license/license-page.html @@ -614,7 +614,7 @@ Pricing apps/client/src/app/app.component.html - 86 + 94 apps/client/src/app/components/header/header.component.html @@ -622,22 +622,22 @@ apps/client/src/app/components/header/header.component.html - 301 + 296 apps/client/src/app/components/header/header.component.html - 370 + 367 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 188 + 186 Privacy Policy apps/client/src/app/app.component.html - 90 + 100 apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html @@ -648,11 +648,15 @@ Community apps/client/src/app/app.component.html - 105 + 118 apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + 77 + + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 82 apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -668,30 +672,26 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + 99 apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + 104 apps/client/src/app/components/user-account-settings/user-account-settings.html 108 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 - apps/client/src/app/pages/features/features-page.html 256 - + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. apps/client/src/app/app.component.html - 182 + 194 @@ -716,7 +716,7 @@ Type apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + 31 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -724,7 +724,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 15 libs/ui/src/lib/activities-table/activities-table.component.html @@ -742,7 +742,7 @@ Revoke apps/client/src/app/components/access-table/access-table.component.html - 63 + 62 @@ -760,7 +760,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 130 + 136 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -786,7 +786,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 113 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -798,7 +798,7 @@ apps/client/src/app/components/admin-users/admin-users.html - 134 + 135 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -821,7 +821,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 81 + 86 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -839,7 +839,7 @@ Transfer Cash Balance apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + 10 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -850,7 +850,7 @@ Name apps/client/src/app/components/accounts-table/accounts-table.component.html - 39 + 43 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -866,7 +866,7 @@ apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + 15 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -874,7 +874,7 @@ apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + 15 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -882,7 +882,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + 137 libs/ui/src/lib/activities-table/activities-table.component.html @@ -901,14 +901,14 @@ Total apps/client/src/app/components/accounts-table/accounts-table.component.html - 50 + 55 Currency apps/client/src/app/components/accounts-table/accounts-table.component.html - 60 + 65 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -924,7 +924,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + 143 libs/ui/src/lib/activities-table/activities-table.component.html @@ -935,43 +935,43 @@ Value apps/client/src/app/components/accounts-table/accounts-table.component.html - 165 + 171 apps/client/src/app/components/accounts-table/accounts-table.component.html - 200 + 206 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + 53 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + 198 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + 201 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + 204 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + 268 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + 271 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + 274 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + 277 libs/ui/src/lib/account-balances/account-balances.component.html @@ -998,19 +998,19 @@ Edit apps/client/src/app/components/accounts-table/accounts-table.component.html - 271 + 278 apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + 177 apps/client/src/app/components/admin-overview/admin-overview.html - 80 + 83 apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + 92 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1025,11 +1025,11 @@ Delete apps/client/src/app/components/accounts-table/accounts-table.component.html - 281 + 288 apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + 196 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1037,15 +1037,15 @@ apps/client/src/app/components/admin-overview/admin-overview.html - 90 + 93 apps/client/src/app/components/admin-overview/admin-overview.html - 199 + 210 apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + 102 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1067,15 +1067,15 @@ 101 - - Asset Profile + + Asset Profile apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + 35 - - Historical Market Data + + Historical Market Data apps/client/src/app/components/admin-jobs/admin-jobs.html 37 @@ -1085,7 +1085,7 @@ Symbol apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + 44 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -1097,7 +1097,7 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + 36 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1108,11 +1108,11 @@ Data Source apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + 53 apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 55 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1120,63 +1120,63 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + 153 Attempts apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + 81 Created apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + 90 Finished apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + 99 Status apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + 108 Delete Jobs apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + 149 View Data apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + 164 View Stacktrace apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + 171 Delete Job apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + 177 @@ -1194,7 +1194,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + 159 libs/ui/src/lib/account-balances/account-balances.component.html @@ -1228,15 +1228,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + 43 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + 42 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + 25 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -1248,11 +1248,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + 65 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + 421 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1271,15 +1271,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + 50 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + 49 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + 32 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -1291,7 +1291,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + 428 @@ -1333,7 +1333,7 @@ Asset Class apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 64 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1349,14 +1349,14 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + 348 Asset Sub Class apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 73 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1372,14 +1372,14 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + 364 First Activity apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 82 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1398,14 +1398,14 @@ Activities Count apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 91 Historical Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 100 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1416,35 +1416,35 @@ Sectors Count apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + 109 Countries Count apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + 118 Gather Recent Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + 146 Gather All Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + 149 Gather Profile Data apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + 152 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1480,11 +1480,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 + 153 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 + 186 @@ -1529,7 +1529,7 @@ apps/client/src/app/pages/public/public-page.html - 45 + 50 @@ -1580,7 +1580,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + 333 @@ -1608,11 +1608,11 @@ Name, symbol or ISIN apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + 26 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + 123 @@ -1689,63 +1689,63 @@ per User apps/client/src/app/components/admin-overview/admin-overview.html - 32 + 33 Exchange Rates apps/client/src/app/components/admin-overview/admin-overview.html - 37 + 39 Add Currency apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 109 User Signup apps/client/src/app/components/admin-overview/admin-overview.html - 110 + 115 Read-only Mode apps/client/src/app/components/admin-overview/admin-overview.html - 123 + 129 System Message apps/client/src/app/components/admin-overview/admin-overview.html - 145 + 153 Set Message apps/client/src/app/components/admin-overview/admin-overview.html - 165 + 175 Coupons apps/client/src/app/components/admin-overview/admin-overview.html - 173 + 183 Add apps/client/src/app/components/admin-overview/admin-overview.html - 231 + 243 libs/ui/src/lib/account-balances/account-balances.component.html @@ -1756,14 +1756,14 @@ Housekeeping apps/client/src/app/components/admin-overview/admin-overview.html - 238 + 251 Flush Cache apps/client/src/app/components/admin-overview/admin-overview.html - 242 + 255 @@ -1781,22 +1781,22 @@ apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 + 51 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 + 25 Accounts apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 + 65 apps/client/src/app/components/admin-users/admin-users.html - 113 + 114 apps/client/src/app/components/header/header.component.html @@ -1804,7 +1804,7 @@ apps/client/src/app/components/header/header.component.html - 262 + 257 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1830,14 +1830,14 @@ Update platform apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 + 8 Add platform apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 + 10 @@ -1859,7 +1859,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 + 377 libs/ui/src/lib/assistant/assistant.html @@ -1884,14 +1884,14 @@ Update tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 + 8 Add tag apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 + 10 @@ -1912,35 +1912,35 @@ Registration apps/client/src/app/components/admin-users/admin-users.html - 96 + 97 Engagement per Day apps/client/src/app/components/admin-users/admin-users.html - 158 + 157 - + Last Request apps/client/src/app/components/admin-users/admin-users.html - 183 + 181 Impersonate User apps/client/src/app/components/admin-users/admin-users.html - 222 + 218 Delete User apps/client/src/app/components/admin-users/admin-users.html - 232 + 229 @@ -1962,14 +1962,14 @@ Compare with... apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 + 18 Manage Benchmarks apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 + 35 @@ -2005,7 +2005,7 @@ apps/client/src/app/components/header/header.component.html - 244 + 239 @@ -2016,46 +2016,46 @@ apps/client/src/app/components/header/header.component.html - 254 + 249 Admin Control apps/client/src/app/components/header/header.component.html - 67 + 68 apps/client/src/app/components/header/header.component.html - 278 + 273 Me apps/client/src/app/components/header/header.component.html - 211 + 205 User apps/client/src/app/components/header/header.component.html - 230 + 223 My Ghostfolio apps/client/src/app/components/header/header.component.html - 269 + 264 About Ghostfolio apps/client/src/app/components/header/header.component.html - 309 + 305 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -2066,7 +2066,7 @@ Sign in apps/client/src/app/components/header/header.component.html - 399 + 396 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -2077,7 +2077,7 @@ Get started apps/client/src/app/components/header/header.component.html - 411 + 406 @@ -2135,7 +2135,7 @@ Last Days apps/client/src/app/components/home-market/home-market.html - 6 + 7 @@ -2198,18 +2198,18 @@ Setup accounts apps/client/src/app/components/home-overview/home-overview.html - 48 + 44 Add activity apps/client/src/app/components/home-overview/home-overview.html - 56 + 52 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 + 10 @@ -2241,7 +2241,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 + 245 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -2256,15 +2256,19 @@ apps/client/src/app/pages/landing/landing-page.html - 423 + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 442 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 + 97 apps/client/src/app/pages/register/register-page.html - 29 + 30 apps/client/src/app/pages/webauthn/webauthn-page.html @@ -2350,7 +2354,7 @@ apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 + 158 @@ -2472,11 +2476,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 + 195 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 265 @@ -2526,7 +2530,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 + 182 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2562,11 +2566,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 55 + 57 apps/client/src/app/pages/pricing/pricing-page.html - 199 + 203 @@ -2581,11 +2585,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 59 + 61 apps/client/src/app/pages/pricing/pricing-page.html - 203 + 207 @@ -2596,11 +2600,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 63 + 65 apps/client/src/app/pages/pricing/pricing-page.html - 207 + 211 @@ -2611,11 +2615,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 67 + 69 apps/client/src/app/pages/pricing/pricing-page.html - 211 + 215 @@ -2626,7 +2630,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 226 + 230 @@ -2637,11 +2641,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 83 + 85 apps/client/src/app/pages/pricing/pricing-page.html - 231 + 235 @@ -2662,7 +2666,7 @@ Upgrade Plan apps/client/src/app/components/header/header.component.html - 182 + 180 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -2670,11 +2674,11 @@ apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 + 16 apps/client/src/app/pages/pricing/pricing-page.html - 268 + 270 @@ -2785,25 +2789,25 @@ per year apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 + 33 apps/client/src/app/pages/pricing/pricing-page.html - 254 + 256 Try Premium apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 + 40 Redeem Coupon apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 + 54 @@ -2852,56 +2856,56 @@ Language apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 + 48 Locale apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 + 117 Date and number format apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 + 119 Appearance apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 + 142 Auto apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 + 156 Light apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 + 157 Dark apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 + 158 Zen Mode apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 + 167 apps/client/src/app/pages/features/features-page.html @@ -2912,35 +2916,35 @@ Distraction-free experience for turbulent times apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 + 168 Biometric Authentication apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 + 184 Sign in with fingerprint apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 + 185 Experimental Features apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 + 200 - + Sneak peek at upcoming functionality apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 + 201 @@ -2951,14 +2955,14 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 + 218 Export Data apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 + 226 @@ -3120,14 +3124,14 @@ To apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 + 32 Transfer apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 + 72 @@ -3215,7 +3219,7 @@ As you are already logged in, you cannot access the demo account. apps/client/src/app/pages/demo/demo-page.component.ts - 35 + 33 @@ -3357,7 +3361,7 @@ apps/client/src/app/pages/public/public-page.html - 153 + 164 @@ -3447,15 +3451,8 @@ 41 - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - - apps/client/src/app/pages/landing/landing-page.html - 46 + apps/client/src/app/pages/pricing/pricing-page.html + 297 @@ -3466,21 +3463,21 @@ apps/client/src/app/pages/landing/landing-page.html - 424 + 443 Monthly Active Users apps/client/src/app/pages/landing/landing-page.html - 69 + 70 Stars on GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 88 apps/client/src/app/pages/open/open-page.html @@ -3491,7 +3488,7 @@ Pulls on Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 106 apps/client/src/app/pages/open/open-page.html @@ -3502,217 +3499,210 @@ As seen in apps/client/src/app/pages/landing/landing-page.html - 113 + 115 Protect your assets. Refine your personal investment strategy. apps/client/src/app/pages/landing/landing-page.html - 215 + 217 Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. apps/client/src/app/pages/landing/landing-page.html - 219 + 221 360° View apps/client/src/app/pages/landing/landing-page.html - 230 + 232 Get the full picture of your personal finances across multiple platforms. apps/client/src/app/pages/landing/landing-page.html - 232 + 234 Web3 Ready apps/client/src/app/pages/landing/landing-page.html - 241 + 243 Use Ghostfolio anonymously and own your financial data. apps/client/src/app/pages/landing/landing-page.html - 243 + 245 Open Source apps/client/src/app/pages/landing/landing-page.html - 251 + 253 Benefit from continuous improvements through a strong community. apps/client/src/app/pages/landing/landing-page.html - 253 + 255 Why Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 262 + 264 Ghostfolio is for you if you are... apps/client/src/app/pages/landing/landing-page.html - 263 + 265 trading stocks, ETFs or cryptocurrencies on multiple platforms apps/client/src/app/pages/landing/landing-page.html - 270 + 272 pursuing a buy & hold strategy apps/client/src/app/pages/landing/landing-page.html - 276 + 278 interested in getting insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 281 + 283 valuing privacy and data ownership apps/client/src/app/pages/landing/landing-page.html - 286 + 288 into minimalism apps/client/src/app/pages/landing/landing-page.html - 289 + 291 caring about diversifying your financial resources apps/client/src/app/pages/landing/landing-page.html - 293 + 295 interested in financial independence apps/client/src/app/pages/landing/landing-page.html - 297 + 299 saying no to spreadsheets in apps/client/src/app/pages/landing/landing-page.html - 301 + 303 still reading this list apps/client/src/app/pages/landing/landing-page.html - 304 + 306 Learn more about Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 309 + 311 What our users are saying apps/client/src/app/pages/landing/landing-page.html - 317 + 319 - + Members from around the globe are using Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 349 + 358 - + How does Ghostfolio work? apps/client/src/app/pages/landing/landing-page.html - 361 + 375 Get started in only 3 steps apps/client/src/app/pages/landing/landing-page.html - 364 + 378 Sign up anonymously* apps/client/src/app/pages/landing/landing-page.html - 370 + 384 - + * no e-mail address nor credit card required apps/client/src/app/pages/landing/landing-page.html - 372 + 386 - + Add any of your historical transactions apps/client/src/app/pages/landing/landing-page.html - 383 + 397 - + Get valuable insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - - apps/client/src/app/pages/landing/landing-page.html - 407 + 409 - - Join now or check out the example account + + Are you ready? apps/client/src/app/pages/landing/landing-page.html - 408 + 423 @@ -3808,60 +3798,60 @@ Update activity apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 + 8 Stocks, ETFs, bonds, cryptocurrencies, commodities apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 + 25 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 + 65 One-time fee, annual account fees apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 + 33 Distribution of corporate earnings apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 + 41 Revenue for lending out money apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 + 49 Mortgages, personal loans, credit cards apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 + 57 Luxury items, real estate, private companies apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 + 73 Account apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 + 85 libs/ui/src/lib/activities-table/activities-table.component.html @@ -3872,18 +3862,18 @@ Update Cash Balance apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 + 111 Unit Price apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 + 207 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 + 280 libs/ui/src/lib/activities-table/activities-table.component.html @@ -3894,29 +3884,29 @@ Oops! Could not get the historical exchange rate from apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 + 312 Fee apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 300 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 324 libs/ui/src/lib/activities-table/activities-table.component.html 233 - + Oops! Could not get the historical exchange rate from apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 + 234 @@ -3965,60 +3955,60 @@ Select File apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 + 22 Holding apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 + 32 Load Dividends apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 + 68 Choose or drop a file here apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 + 84 The following file formats are supported: apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 + 90 Select Dividends apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 + 113 Select Activities apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 + 115 Back apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 + 144 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 + 178 @@ -4103,7 +4093,7 @@ apps/client/src/app/pages/public/public-page.html - 76 + 87 @@ -4114,7 +4104,7 @@ apps/client/src/app/pages/public/public-page.html - 93 + 104 @@ -4125,7 +4115,7 @@ apps/client/src/app/pages/public/public-page.html - 102 + 113 @@ -4136,7 +4126,7 @@ apps/client/src/app/pages/public/public-page.html - 111 + 122 @@ -4147,7 +4137,7 @@ apps/client/src/app/pages/public/public-page.html - 123 + 132 libs/ui/src/lib/top-holdings/top-holdings.component.html @@ -4229,49 +4219,49 @@ Top apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 + 166 Bottom apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 + 215 Portfolio Evolution apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 + 268 Investment Timeline apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 + 297 Current Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 + 318 Longest Streak apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 + 327 Dividend Timeline apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 + 356 @@ -4299,7 +4289,7 @@ 4% Rule apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 + 40 @@ -4313,14 +4303,14 @@ Currency Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 + 134 Account Cluster Risks apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 + 146 @@ -4367,167 +4357,167 @@ If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. apps/client/src/app/pages/pricing/pricing-page.html - 24 + 26 For tech-savvy investors who prefer to run Ghostfolio on their own infrastructure. apps/client/src/app/pages/pricing/pricing-page.html - 36 + 38 Unlimited Transactions apps/client/src/app/pages/pricing/pricing-page.html - 43 + 45 apps/client/src/app/pages/pricing/pricing-page.html - 126 + 129 apps/client/src/app/pages/pricing/pricing-page.html - 187 + 191 Unlimited Accounts apps/client/src/app/pages/pricing/pricing-page.html - 47 + 49 apps/client/src/app/pages/pricing/pricing-page.html - 130 + 133 apps/client/src/app/pages/pricing/pricing-page.html - 191 + 195 Portfolio Performance apps/client/src/app/pages/pricing/pricing-page.html - 51 + 53 apps/client/src/app/pages/pricing/pricing-page.html - 134 + 137 apps/client/src/app/pages/pricing/pricing-page.html - 195 + 199 Data Import and Export apps/client/src/app/pages/pricing/pricing-page.html - 71 + 73 apps/client/src/app/pages/pricing/pricing-page.html - 138 + 141 apps/client/src/app/pages/pricing/pricing-page.html - 215 + 219 Community Support apps/client/src/app/pages/pricing/pricing-page.html - 88 + 90 Self-hosted, update manually. apps/client/src/app/pages/pricing/pricing-page.html - 92 + 94 Free apps/client/src/app/pages/pricing/pricing-page.html - 93 + 95 apps/client/src/app/pages/pricing/pricing-page.html - 150 + 153 For new investors who are just getting started with trading. apps/client/src/app/pages/pricing/pricing-page.html - 120 + 123 Fully managed Ghostfolio cloud offering. apps/client/src/app/pages/pricing/pricing-page.html - 149 + 152 apps/client/src/app/pages/pricing/pricing-page.html - 240 + 244 For ambitious investors who need the full picture of their financial assets. apps/client/src/app/pages/pricing/pricing-page.html - 180 + 184 Email and Chat Support apps/client/src/app/pages/pricing/pricing-page.html - 236 + 240 Renew Plan apps/client/src/app/components/header/header.component.html - 190 + 185 apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 + 21 apps/client/src/app/pages/pricing/pricing-page.html - 276 + 275 One-time payment, no auto-renewal. apps/client/src/app/pages/pricing/pricing-page.html - 280 + 279 - + Get Started - apps/client/src/app/pages/pricing/pricing-page.html - 291 + apps/client/src/app/pages/landing/landing-page.html + 438 It’s free. apps/client/src/app/pages/pricing/pricing-page.html - 294 + 300 @@ -4541,21 +4531,21 @@ Currencies apps/client/src/app/pages/public/public-page.html - 30 + 32 Continents apps/client/src/app/pages/public/public-page.html - 60 + 68 Ghostfolio empowers you to keep track of your wealth. apps/client/src/app/pages/public/public-page.html - 148 + 159 @@ -4569,14 +4559,14 @@ Continue with Internet Identity apps/client/src/app/pages/register/register-page.html - 41 + 42 Continue with Google apps/client/src/app/pages/register/register-page.html - 51 + 53 @@ -4720,15 +4710,15 @@ ✅ Yes apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 109 + 115 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 116 + 122 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 130 + 134 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -4736,107 +4726,107 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 155 + 153 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 162 + 160 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 174 + 172 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 181 + 179 ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 111 + 117 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 134 + 136 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 145 + 143 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 157 + 155 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 164 + 162 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 176 + 174 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 183 + 181 - + ❌ No apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 118 + 124 Self-Hosting apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 123 + 129 Use anonymously apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 150 + 148 Free Plan apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 169 + 167 Starting from apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 190 + 188 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 195 + 193 year apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 191 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 197 + 195 Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 202 + 201 @@ -5566,11 +5556,11 @@ 404 - + If a translation is missing, kindly support us in extending it here. apps/client/src/app/components/user-account-settings/user-account-settings.html - 55 + 50 @@ -5652,14 +5642,14 @@ Absolute Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 73 + 72 Absolute Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 121 + 119 @@ -5684,21 +5674,21 @@ Asset Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 51 + 50 Net Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 140 + 138 Currency Performance apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 98 + 96 @@ -5761,11 +5751,11 @@ 155 - + If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. apps/client/src/app/pages/portfolio/fire/fire-page.html - 68 + 67 @@ -5829,7 +5819,7 @@ Data Gathering apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 141 @@ -5896,7 +5886,7 @@ Execute Job apps/client/src/app/components/admin-jobs/admin-jobs.html - 183 + 174 @@ -5910,7 +5900,7 @@ Priority apps/client/src/app/components/admin-jobs/admin-jobs.html - 63 + 62 @@ -5966,7 +5956,7 @@ Close Account apps/client/src/app/components/user-account-settings/user-account-settings.html - 278 + 273 @@ -5980,7 +5970,7 @@ Danger Zone apps/client/src/app/components/user-account-settings/user-account-settings.html - 243 + 238 @@ -5997,6 +5987,13 @@ 333 + + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 426 + + diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index fd5fca75e..65d08b840 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -339,7 +339,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 31 + 29 apps/client/src/app/pages/landing/landing-page.component.ts @@ -387,7 +387,7 @@ apps/client/src/app/pages/features/features-page.component.ts - 32 + 30 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.component.ts @@ -407,7 +407,7 @@ 您正在使用现场演示。 apps/client/src/app/app.component.html - 17 + 12 @@ -415,11 +415,11 @@ 创建账户 apps/client/src/app/app.component.html - 18 + 13 apps/client/src/app/pages/register/register-page.html - 26 + 27 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -431,7 +431,7 @@ 个人财务 apps/client/src/app/app.component.html - 55 + 54 @@ -443,7 +443,7 @@ apps/client/src/app/components/header/header.component.html - 386 + 382 apps/client/src/app/components/home-market/home-market.html @@ -459,15 +459,15 @@ 资源 apps/client/src/app/app.component.html - 60 + 61 apps/client/src/app/components/header/header.component.html - 80 + 82 apps/client/src/app/components/header/header.component.html - 289 + 285 apps/client/src/app/pages/resources/resources-page.html @@ -479,15 +479,15 @@ 关于 apps/client/src/app/app.component.html - 66 + 67 apps/client/src/app/components/header/header.component.html - 111 + 112 apps/client/src/app/components/header/header.component.html - 357 + 353 @@ -495,7 +495,7 @@ 博客 apps/client/src/app/app.component.html - 68 + 70 apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html @@ -583,7 +583,7 @@ 变更日志 apps/client/src/app/app.component.html - 71 + 74 apps/client/src/app/pages/about/changelog/changelog-page.html @@ -595,11 +595,11 @@ 功能 apps/client/src/app/app.component.html - 73 + 76 apps/client/src/app/components/header/header.component.html - 344 + 340 apps/client/src/app/pages/features/features-page.html @@ -611,7 +611,7 @@ 常见问题 (FAQ) apps/client/src/app/app.component.html - 76 + 80 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -623,7 +623,7 @@ 许可 apps/client/src/app/app.component.html - 80 + 85 apps/client/src/app/pages/about/license/license-page.html @@ -635,7 +635,7 @@ 价钱 apps/client/src/app/app.component.html - 86 + 94 apps/client/src/app/components/header/header.component.html @@ -643,15 +643,15 @@ apps/client/src/app/components/header/header.component.html - 301 + 296 apps/client/src/app/components/header/header.component.html - 370 + 367 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 188 + 186 @@ -659,7 +659,7 @@ 隐私政策 apps/client/src/app/app.component.html - 90 + 100 apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html @@ -671,11 +671,15 @@ 社区 apps/client/src/app/app.component.html - 105 + 118 apps/client/src/app/components/user-account-settings/user-account-settings.html - 81 + 77 + + + apps/client/src/app/components/user-account-settings/user-account-settings.html + 82 apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -691,31 +695,27 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 98 + 99 apps/client/src/app/components/user-account-settings/user-account-settings.html - 103 + 104 apps/client/src/app/components/user-account-settings/user-account-settings.html 108 - - apps/client/src/app/components/user-account-settings/user-account-settings.html - 112 - apps/client/src/app/pages/features/features-page.html 256 - + The risk of loss in trading can be substantial. It is not advisable to invest money you may need in the short term. 交易损失的风险可能很大。不建议将短期内可能需要的资金进行投资。 apps/client/src/app/app.component.html - 182 + 194 @@ -743,7 +743,7 @@ 类型 apps/client/src/app/components/admin-jobs/admin-jobs.html - 28 + 31 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -751,7 +751,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 12 + 15 libs/ui/src/lib/activities-table/activities-table.component.html @@ -771,7 +771,7 @@ 撤销 apps/client/src/app/components/access-table/access-table.component.html - 63 + 62 @@ -791,7 +791,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 130 + 136 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -819,7 +819,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 113 + 119 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -831,7 +831,7 @@ apps/client/src/app/components/admin-users/admin-users.html - 134 + 135 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -855,7 +855,7 @@ apps/client/src/app/components/accounts-table/accounts-table.component.html - 81 + 86 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -875,7 +875,7 @@ 转移现金余额 apps/client/src/app/components/accounts-table/accounts-table.component.html - 9 + 10 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html @@ -887,7 +887,7 @@ 名称 apps/client/src/app/components/accounts-table/accounts-table.component.html - 39 + 43 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -903,7 +903,7 @@ apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 12 + 15 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -911,7 +911,7 @@ apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 12 + 15 apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html @@ -919,7 +919,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 134 + 137 libs/ui/src/lib/activities-table/activities-table.component.html @@ -939,7 +939,7 @@ 全部的 apps/client/src/app/components/accounts-table/accounts-table.component.html - 50 + 55 @@ -947,7 +947,7 @@ 货币 apps/client/src/app/components/accounts-table/accounts-table.component.html - 60 + 65 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -963,7 +963,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 140 + 143 libs/ui/src/lib/activities-table/activities-table.component.html @@ -975,43 +975,43 @@ 价值 apps/client/src/app/components/accounts-table/accounts-table.component.html - 165 + 171 apps/client/src/app/components/accounts-table/accounts-table.component.html - 200 + 206 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 45 + 53 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 194 + 198 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 195 + 201 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 197 + 204 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 257 + 268 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 258 + 271 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 259 + 274 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 260 + 277 libs/ui/src/lib/account-balances/account-balances.component.html @@ -1039,19 +1039,19 @@ 编辑 apps/client/src/app/components/accounts-table/accounts-table.component.html - 271 + 278 apps/client/src/app/components/admin-market-data/admin-market-data.html - 175 + 177 apps/client/src/app/components/admin-overview/admin-overview.html - 80 + 83 apps/client/src/app/components/admin-platform/admin-platform.component.html - 91 + 92 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1067,11 +1067,11 @@ 删除 apps/client/src/app/components/accounts-table/accounts-table.component.html - 281 + 288 apps/client/src/app/components/admin-market-data/admin-market-data.html - 194 + 196 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1079,15 +1079,15 @@ apps/client/src/app/components/admin-overview/admin-overview.html - 90 + 93 apps/client/src/app/components/admin-overview/admin-overview.html - 199 + 210 apps/client/src/app/components/admin-platform/admin-platform.component.html - 101 + 102 apps/client/src/app/components/admin-tag/admin-tag.component.html @@ -1110,17 +1110,17 @@ 101 - - Asset Profile - 资产概况 + + Asset Profile + 资产概况 apps/client/src/app/components/admin-jobs/admin-jobs.html - 31 + 35 - - Historical Market Data - 历史市场数据 + + Historical Market Data + 历史市场数据 apps/client/src/app/components/admin-jobs/admin-jobs.html 37 @@ -1131,7 +1131,7 @@ 符号 apps/client/src/app/components/admin-jobs/admin-jobs.html - 45 + 44 apps/client/src/app/components/admin-market-data/admin-market-data.html @@ -1143,7 +1143,7 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 34 + 36 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1155,11 +1155,11 @@ 数据源 apps/client/src/app/components/admin-jobs/admin-jobs.html - 54 + 53 apps/client/src/app/components/admin-market-data/admin-market-data.html - 51 + 55 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1167,7 +1167,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 150 + 153 @@ -1175,7 +1175,7 @@ 尝试 apps/client/src/app/components/admin-jobs/admin-jobs.html - 82 + 81 @@ -1183,7 +1183,7 @@ 创建 apps/client/src/app/components/admin-jobs/admin-jobs.html - 91 + 90 @@ -1191,7 +1191,7 @@ 完成的 apps/client/src/app/components/admin-jobs/admin-jobs.html - 100 + 99 @@ -1199,7 +1199,7 @@ 状况 apps/client/src/app/components/admin-jobs/admin-jobs.html - 109 + 108 @@ -1207,7 +1207,7 @@ 删除作业 apps/client/src/app/components/admin-jobs/admin-jobs.html - 158 + 149 @@ -1215,7 +1215,7 @@ 查看数据 apps/client/src/app/components/admin-jobs/admin-jobs.html - 173 + 164 @@ -1223,7 +1223,7 @@ 查看堆栈跟踪 apps/client/src/app/components/admin-jobs/admin-jobs.html - 180 + 171 @@ -1231,7 +1231,7 @@ 删除作业 apps/client/src/app/components/admin-jobs/admin-jobs.html - 186 + 177 @@ -1251,7 +1251,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 156 + 159 libs/ui/src/lib/account-balances/account-balances.component.html @@ -1287,15 +1287,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 40 + 43 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 39 + 42 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 22 + 25 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -1307,11 +1307,11 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 57 + 65 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 399 + 421 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -1331,15 +1331,15 @@ apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 47 + 50 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 46 + 49 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 29 + 32 apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html @@ -1351,7 +1351,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 406 + 428 @@ -1399,7 +1399,7 @@ 资产类别 apps/client/src/app/components/admin-market-data/admin-market-data.html - 60 + 64 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1415,7 +1415,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 326 + 348 @@ -1423,7 +1423,7 @@ 资产子类别 apps/client/src/app/components/admin-market-data/admin-market-data.html - 69 + 73 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1439,7 +1439,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 342 + 364 @@ -1447,7 +1447,7 @@ 第一个活动 apps/client/src/app/components/admin-market-data/admin-market-data.html - 78 + 82 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1467,7 +1467,7 @@ 活动计数 apps/client/src/app/components/admin-market-data/admin-market-data.html - 87 + 91 @@ -1475,7 +1475,7 @@ 历史数据 apps/client/src/app/components/admin-market-data/admin-market-data.html - 96 + 100 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1487,7 +1487,7 @@ 行业数 apps/client/src/app/components/admin-market-data/admin-market-data.html - 105 + 109 @@ -1495,7 +1495,7 @@ 国家数 apps/client/src/app/components/admin-market-data/admin-market-data.html - 114 + 118 @@ -1503,7 +1503,7 @@ 收集最近的数据 apps/client/src/app/components/admin-market-data/admin-market-data.html - 144 + 146 @@ -1511,7 +1511,7 @@ 收集所有数据 apps/client/src/app/components/admin-market-data/admin-market-data.html - 147 + 149 @@ -1519,7 +1519,7 @@ 收集个人资料数据 apps/client/src/app/components/admin-market-data/admin-market-data.html - 150 + 152 apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html @@ -1559,11 +1559,11 @@ apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 155 + 153 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 190 + 186 @@ -1611,7 +1611,7 @@ apps/client/src/app/pages/public/public-page.html - 45 + 50 @@ -1667,7 +1667,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 311 + 333 @@ -1699,11 +1699,11 @@ 名称、符号或 ISIN apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html - 25 + 26 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 120 + 123 @@ -1791,7 +1791,7 @@ 每位用户 apps/client/src/app/components/admin-overview/admin-overview.html - 32 + 33 @@ -1799,7 +1799,7 @@ 汇率 apps/client/src/app/components/admin-overview/admin-overview.html - 37 + 39 @@ -1807,7 +1807,7 @@ 添加货币 apps/client/src/app/components/admin-overview/admin-overview.html - 104 + 109 @@ -1815,7 +1815,7 @@ 用户注册 apps/client/src/app/components/admin-overview/admin-overview.html - 110 + 115 @@ -1823,7 +1823,7 @@ 只读模式 apps/client/src/app/components/admin-overview/admin-overview.html - 123 + 129 @@ -1831,7 +1831,7 @@ 系统信息 apps/client/src/app/components/admin-overview/admin-overview.html - 145 + 153 @@ -1839,7 +1839,7 @@ 设置留言 apps/client/src/app/components/admin-overview/admin-overview.html - 165 + 175 @@ -1847,7 +1847,7 @@ 优惠券 apps/client/src/app/components/admin-overview/admin-overview.html - 173 + 183 @@ -1855,7 +1855,7 @@ 添加 apps/client/src/app/components/admin-overview/admin-overview.html - 231 + 243 libs/ui/src/lib/account-balances/account-balances.component.html @@ -1867,7 +1867,7 @@ 家政 apps/client/src/app/components/admin-overview/admin-overview.html - 238 + 251 @@ -1875,7 +1875,7 @@ 刷新缓存 apps/client/src/app/components/admin-overview/admin-overview.html - 242 + 255 @@ -1895,11 +1895,11 @@ apps/client/src/app/components/admin-platform/admin-platform.component.html - 50 + 51 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 22 + 25 @@ -1907,11 +1907,11 @@ 帐户 apps/client/src/app/components/admin-platform/admin-platform.component.html - 64 + 65 apps/client/src/app/components/admin-users/admin-users.html - 113 + 114 apps/client/src/app/components/header/header.component.html @@ -1919,7 +1919,7 @@ apps/client/src/app/components/header/header.component.html - 262 + 257 apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html @@ -1947,7 +1947,7 @@ 更新平台 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 7 + 8 @@ -1955,7 +1955,7 @@ 添加平台 apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html - 8 + 10 @@ -1979,7 +1979,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 355 + 377 libs/ui/src/lib/assistant/assistant.html @@ -2007,7 +2007,7 @@ 更新标签 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 7 + 8 @@ -2015,7 +2015,7 @@ 添加标签 apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html - 8 + 10 @@ -2039,7 +2039,7 @@ 注册 apps/client/src/app/components/admin-users/admin-users.html - 96 + 97 @@ -2047,15 +2047,15 @@ 每天的参与度 apps/client/src/app/components/admin-users/admin-users.html - 158 + 157 - + Last Request 最后请求 apps/client/src/app/components/admin-users/admin-users.html - 183 + 181 @@ -2063,7 +2063,7 @@ 模拟用户 apps/client/src/app/components/admin-users/admin-users.html - 222 + 218 @@ -2071,7 +2071,7 @@ 删除用户 apps/client/src/app/components/admin-users/admin-users.html - 232 + 229 @@ -2095,7 +2095,7 @@ 与之比较... apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 19 + 18 @@ -2103,7 +2103,7 @@ 管理基准 apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html - 38 + 35 @@ -2143,7 +2143,7 @@ apps/client/src/app/components/header/header.component.html - 244 + 239 @@ -2155,7 +2155,7 @@ apps/client/src/app/components/header/header.component.html - 254 + 249 @@ -2163,11 +2163,11 @@ 管理控制 apps/client/src/app/components/header/header.component.html - 67 + 68 apps/client/src/app/components/header/header.component.html - 278 + 273 @@ -2175,7 +2175,7 @@ apps/client/src/app/components/header/header.component.html - 211 + 205 @@ -2183,7 +2183,7 @@ 用户 apps/client/src/app/components/header/header.component.html - 230 + 223 @@ -2191,7 +2191,7 @@ 我的 Ghostfolio apps/client/src/app/components/header/header.component.html - 269 + 264 @@ -2199,7 +2199,7 @@ 关于 Ghostfolio apps/client/src/app/components/header/header.component.html - 309 + 305 apps/client/src/app/pages/about/overview/about-overview-page.html @@ -2211,7 +2211,7 @@ 登入 apps/client/src/app/components/header/header.component.html - 399 + 396 apps/client/src/app/components/login-with-access-token-dialog/login-with-access-token-dialog.html @@ -2223,7 +2223,7 @@ 开始使用 apps/client/src/app/components/header/header.component.html - 411 + 406 @@ -2287,7 +2287,7 @@ 最后的 apps/client/src/app/components/home-market/home-market.html - 6 + 7 @@ -2359,7 +2359,7 @@ 设置帐户 apps/client/src/app/components/home-overview/home-overview.html - 48 + 44 @@ -2367,11 +2367,11 @@ 添加活动 apps/client/src/app/components/home-overview/home-overview.html - 56 + 52 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 8 + 10 @@ -2407,7 +2407,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 250 + 245 apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html @@ -2423,15 +2423,19 @@ apps/client/src/app/pages/landing/landing-page.html - 423 + 47 + + + apps/client/src/app/pages/landing/landing-page.html + 442 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 99 + 97 apps/client/src/app/pages/register/register-page.html - 29 + 30 apps/client/src/app/pages/webauthn/webauthn-page.html @@ -2527,7 +2531,7 @@ apps/client/src/app/pages/portfolio/fire/fire-page.html - 161 + 158 @@ -2663,11 +2667,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 192 + 195 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 265 @@ -2723,7 +2727,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 179 + 182 libs/ui/src/lib/activities-table/activities-table.component.html @@ -2763,11 +2767,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 55 + 57 apps/client/src/app/pages/pricing/pricing-page.html - 199 + 203 @@ -2783,11 +2787,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 59 + 61 apps/client/src/app/pages/pricing/pricing-page.html - 203 + 207 @@ -2799,11 +2803,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 63 + 65 apps/client/src/app/pages/pricing/pricing-page.html - 207 + 211 @@ -2815,11 +2819,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 67 + 69 apps/client/src/app/pages/pricing/pricing-page.html - 211 + 215 @@ -2831,7 +2835,7 @@ apps/client/src/app/pages/pricing/pricing-page.html - 226 + 230 @@ -2843,11 +2847,11 @@ apps/client/src/app/pages/pricing/pricing-page.html - 83 + 85 apps/client/src/app/pages/pricing/pricing-page.html - 231 + 235 @@ -2871,7 +2875,7 @@ 升级计划 apps/client/src/app/components/header/header.component.html - 182 + 180 apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html @@ -2879,11 +2883,11 @@ apps/client/src/app/components/user-account-membership/user-account-membership.html - 20 + 16 apps/client/src/app/pages/pricing/pricing-page.html - 268 + 270 @@ -3007,11 +3011,11 @@ 每年 apps/client/src/app/components/user-account-membership/user-account-membership.html - 41 + 33 apps/client/src/app/pages/pricing/pricing-page.html - 254 + 256 @@ -3019,7 +3023,7 @@ 尝试高级版 apps/client/src/app/components/user-account-membership/user-account-membership.html - 50 + 40 @@ -3027,7 +3031,7 @@ 兑换优惠券 apps/client/src/app/components/user-account-membership/user-account-membership.html - 63 + 54 @@ -3083,7 +3087,7 @@ 语言 apps/client/src/app/components/user-account-settings/user-account-settings.html - 50 + 48 @@ -3091,7 +3095,7 @@ 语言环境 apps/client/src/app/components/user-account-settings/user-account-settings.html - 121 + 117 @@ -3099,7 +3103,7 @@ 日期和数字格式 apps/client/src/app/components/user-account-settings/user-account-settings.html - 123 + 119 @@ -3107,7 +3111,7 @@ 外貌 apps/client/src/app/components/user-account-settings/user-account-settings.html - 146 + 142 @@ -3115,7 +3119,7 @@ 自动 apps/client/src/app/components/user-account-settings/user-account-settings.html - 160 + 156 @@ -3123,7 +3127,7 @@ 明亮 apps/client/src/app/components/user-account-settings/user-account-settings.html - 161 + 157 @@ -3131,7 +3135,7 @@ 黑暗 apps/client/src/app/components/user-account-settings/user-account-settings.html - 162 + 158 @@ -3139,7 +3143,7 @@ 极简模式 apps/client/src/app/components/user-account-settings/user-account-settings.html - 171 + 167 apps/client/src/app/pages/features/features-page.html @@ -3151,7 +3155,7 @@ 动荡时期的无干扰体验 apps/client/src/app/components/user-account-settings/user-account-settings.html - 172 + 168 @@ -3159,7 +3163,7 @@ 生物识别认证 apps/client/src/app/components/user-account-settings/user-account-settings.html - 188 + 184 @@ -3167,7 +3171,7 @@ 使用指纹登录 apps/client/src/app/components/user-account-settings/user-account-settings.html - 189 + 185 @@ -3175,15 +3179,15 @@ 实验性功能 apps/client/src/app/components/user-account-settings/user-account-settings.html - 206 + 200 - + Sneak peek at upcoming functionality 预览即将推出的功能 apps/client/src/app/components/user-account-settings/user-account-settings.html - 207 + 201 @@ -3195,7 +3199,7 @@ apps/client/src/app/components/user-account-settings/user-account-settings.html - 223 + 218 @@ -3203,7 +3207,7 @@ 导出数据 apps/client/src/app/components/user-account-settings/user-account-settings.html - 231 + 226 @@ -3383,7 +3387,7 @@ apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 28 + 32 @@ -3391,7 +3395,7 @@ 转移 apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html - 64 + 72 @@ -3487,7 +3491,7 @@ 由于您已经登录,因此无法访问模拟帐户。 apps/client/src/app/pages/demo/demo-page.component.ts - 35 + 33 @@ -3647,7 +3651,7 @@ apps/client/src/app/pages/public/public-page.html - 153 + 164 @@ -3746,16 +3750,8 @@ 41 - apps/client/src/app/pages/landing/landing-page.html - 419 - - - - or - - - apps/client/src/app/pages/landing/landing-page.html - 46 + apps/client/src/app/pages/pricing/pricing-page.html + 297 @@ -3767,7 +3763,7 @@ apps/client/src/app/pages/landing/landing-page.html - 424 + 443 @@ -3775,7 +3771,7 @@ 每月活跃用户数 apps/client/src/app/pages/landing/landing-page.html - 69 + 70 @@ -3783,7 +3779,7 @@ GitHub 上的星星 apps/client/src/app/pages/landing/landing-page.html - 87 + 88 apps/client/src/app/pages/open/open-page.html @@ -3795,7 +3791,7 @@ 拉动 Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 106 apps/client/src/app/pages/open/open-page.html @@ -3807,7 +3803,7 @@ 如图所示 apps/client/src/app/pages/landing/landing-page.html - 113 + 115 @@ -3815,7 +3811,7 @@ 保护你的资产。完善你的个人投资策略 apps/client/src/app/pages/landing/landing-page.html - 215 + 217 @@ -3823,7 +3819,7 @@ Ghostfolio 使忙碌的人们能够在不被追踪的情况下跟踪股票、ETF 或加密货币。 apps/client/src/app/pages/landing/landing-page.html - 219 + 221 @@ -3831,7 +3827,7 @@ 360° 视角 apps/client/src/app/pages/landing/landing-page.html - 230 + 232 @@ -3839,7 +3835,7 @@ 跨多个平台全面了解您的个人财务状况。 apps/client/src/app/pages/landing/landing-page.html - 232 + 234 @@ -3847,7 +3843,7 @@ Web3 就绪 apps/client/src/app/pages/landing/landing-page.html - 241 + 243 @@ -3855,7 +3851,7 @@ 匿名使用 Ghostfolio 并拥有您的财务数据。 apps/client/src/app/pages/landing/landing-page.html - 243 + 245 @@ -3863,7 +3859,7 @@ 开源 apps/client/src/app/pages/landing/landing-page.html - 251 + 253 @@ -3871,7 +3867,7 @@ 通过强大的社区不断改进,从中受益。 apps/client/src/app/pages/landing/landing-page.html - 253 + 255 @@ -3879,7 +3875,7 @@ 为什么使用Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 262 + 264 @@ -3887,7 +3883,7 @@ 如果您符合以下条件,那么 Ghostfolio 适合您... apps/client/src/app/pages/landing/landing-page.html - 263 + 265 @@ -3895,7 +3891,7 @@ 在多个平台上交易股票、ETF 或加密货币 apps/client/src/app/pages/landing/landing-page.html - 270 + 272 @@ -3903,7 +3899,7 @@ 采取买入并持有策略 apps/client/src/app/pages/landing/landing-page.html - 276 + 278 @@ -3911,7 +3907,7 @@ 有兴趣深入了解您的投资组合构成 apps/client/src/app/pages/landing/landing-page.html - 281 + 283 @@ -3919,7 +3915,7 @@ 重视隐私和数据所有权 apps/client/src/app/pages/landing/landing-page.html - 286 + 288 @@ -3927,7 +3923,7 @@ 进入极简主义 apps/client/src/app/pages/landing/landing-page.html - 289 + 291 @@ -3935,7 +3931,7 @@ 关心您的财务资源多元化 apps/client/src/app/pages/landing/landing-page.html - 293 + 295 @@ -3943,7 +3939,7 @@ 对财务独立感兴趣 apps/client/src/app/pages/landing/landing-page.html - 297 + 299 @@ -3951,7 +3947,7 @@ 对电子表格说不 apps/client/src/app/pages/landing/landing-page.html - 301 + 303 @@ -3959,7 +3955,7 @@ 仍在阅读此列表 apps/client/src/app/pages/landing/landing-page.html - 304 + 306 @@ -3967,7 +3963,7 @@ 了解有关 Ghostfolio 的更多信息 apps/client/src/app/pages/landing/landing-page.html - 309 + 311 @@ -3975,23 +3971,23 @@ 我们的什么用户正在说 apps/client/src/app/pages/landing/landing-page.html - 317 + 319 - + Members from around the globe are using Ghostfolio Premium 来自世界各地的会员正在使用Ghostfolio 高级版 apps/client/src/app/pages/landing/landing-page.html - 349 + 358 - + How does Ghostfolio work? 如何幽灵作品集工作? apps/client/src/app/pages/landing/landing-page.html - 361 + 375 @@ -3999,7 +3995,7 @@ 只需 3 步即可开始 apps/client/src/app/pages/landing/landing-page.html - 364 + 378 @@ -4007,47 +4003,39 @@ 匿名注册* apps/client/src/app/pages/landing/landing-page.html - 370 + 384 - + * no e-mail address nor credit card required * 无需电子邮件地址或信用卡 apps/client/src/app/pages/landing/landing-page.html - 372 + 386 - + Add any of your historical transactions 添加您的任何历史交易 apps/client/src/app/pages/landing/landing-page.html - 383 + 397 - + Get valuable insights of your portfolio composition 获取有关您的投资组合构成的宝贵见解 apps/client/src/app/pages/landing/landing-page.html - 395 - - - - Are you ready? - 准备好? - - apps/client/src/app/pages/landing/landing-page.html - 407 + 409 - - Join now or check out the example account - 立即加入或查看示例帐户 + + Are you ready? + 准备好? apps/client/src/app/pages/landing/landing-page.html - 408 + 423 @@ -4155,7 +4143,7 @@ 更新活动 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 7 + 8 @@ -4163,11 +4151,11 @@ 股票、ETF、债券、加密货币、大宗商品 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 22 + 25 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 62 + 65 @@ -4175,7 +4163,7 @@ 一次性费用、年度账户费用 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 30 + 33 @@ -4183,7 +4171,7 @@ 企业盈利分配 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 38 + 41 @@ -4191,7 +4179,7 @@ 放贷收入 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 46 + 49 @@ -4199,7 +4187,7 @@ 抵押贷款、个人贷款、信用卡 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 54 + 57 @@ -4207,7 +4195,7 @@ 奢侈品、房地产、私营公司 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 70 + 73 @@ -4215,7 +4203,7 @@ 帐户 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 82 + 85 libs/ui/src/lib/activities-table/activities-table.component.html @@ -4227,7 +4215,7 @@ 更新现金余额 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 108 + 111 @@ -4235,11 +4223,11 @@ 单价 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 199 + 207 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 261 + 280 libs/ui/src/lib/activities-table/activities-table.component.html @@ -4251,7 +4239,7 @@ 哎呀!无法从以下来源获取历史汇率 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 226 + 312 @@ -4259,23 +4247,23 @@ 费用 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 280 + 300 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 324 libs/ui/src/lib/activities-table/activities-table.component.html 233 - + Oops! Could not get the historical exchange rate from 哎呀!无法获取历史汇率 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 292 + 234 @@ -4331,7 +4319,7 @@ 选择文件 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 23 + 22 @@ -4339,7 +4327,7 @@ 保持 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 33 + 32 @@ -4347,7 +4335,7 @@ 加载股息 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 70 + 68 @@ -4355,7 +4343,7 @@ 在此处选择或放置文件 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 86 + 84 @@ -4363,7 +4351,7 @@ 支持以下文件格式: apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 92 + 90 @@ -4371,7 +4359,7 @@ 选择股息 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 115 + 113 @@ -4379,7 +4367,7 @@ 选择活动 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 118 + 115 @@ -4387,11 +4375,11 @@ 后退 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 146 + 144 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html - 182 + 178 @@ -4487,7 +4475,7 @@ apps/client/src/app/pages/public/public-page.html - 76 + 87 @@ -4499,7 +4487,7 @@ apps/client/src/app/pages/public/public-page.html - 93 + 104 @@ -4511,7 +4499,7 @@ apps/client/src/app/pages/public/public-page.html - 102 + 113 @@ -4523,7 +4511,7 @@ apps/client/src/app/pages/public/public-page.html - 111 + 122 @@ -4535,7 +4523,7 @@ apps/client/src/app/pages/public/public-page.html - 123 + 132 libs/ui/src/lib/top-holdings/top-holdings.component.html @@ -4627,7 +4615,7 @@ 顶部 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 168 + 166 @@ -4635,7 +4623,7 @@ 底部 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 214 + 215 @@ -4643,7 +4631,7 @@ 投资组合演变 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 264 + 268 @@ -4651,7 +4639,7 @@ 投资时间表 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 294 + 297 @@ -4659,7 +4647,7 @@ 当前连胜 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 315 + 318 @@ -4667,7 +4655,7 @@ 最长连续纪录 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 324 + 327 @@ -4675,7 +4663,7 @@ 股息时间表 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 352 + 356 @@ -4707,7 +4695,7 @@ 4%规则 apps/client/src/app/pages/portfolio/fire/fire-page.html - 41 + 40 @@ -4723,7 +4711,7 @@ 货币集群风险 apps/client/src/app/pages/portfolio/fire/fire-page.html - 135 + 134 @@ -4731,7 +4719,7 @@ 账户集群风险 apps/client/src/app/pages/portfolio/fire/fire-page.html - 148 + 146 @@ -4783,7 +4771,7 @@ 如果你希望在自己的基础设施上运行 Ghostfolio,请查看源代码和进一步的说明GitHub apps/client/src/app/pages/pricing/pricing-page.html - 24 + 26 @@ -4791,7 +4779,7 @@ 适合喜欢在自己的基础设施上运行 Ghostfolio 的精通技术的投资者。 apps/client/src/app/pages/pricing/pricing-page.html - 36 + 38 @@ -4799,15 +4787,15 @@ 无限交易 apps/client/src/app/pages/pricing/pricing-page.html - 43 + 45 apps/client/src/app/pages/pricing/pricing-page.html - 126 + 129 apps/client/src/app/pages/pricing/pricing-page.html - 187 + 191 @@ -4815,15 +4803,15 @@ 无限账户 apps/client/src/app/pages/pricing/pricing-page.html - 47 + 49 apps/client/src/app/pages/pricing/pricing-page.html - 130 + 133 apps/client/src/app/pages/pricing/pricing-page.html - 191 + 195 @@ -4831,15 +4819,15 @@ 投资组合表现 apps/client/src/app/pages/pricing/pricing-page.html - 51 + 53 apps/client/src/app/pages/pricing/pricing-page.html - 134 + 137 apps/client/src/app/pages/pricing/pricing-page.html - 195 + 199 @@ -4847,15 +4835,15 @@ 数据导入与导出 apps/client/src/app/pages/pricing/pricing-page.html - 71 + 73 apps/client/src/app/pages/pricing/pricing-page.html - 138 + 141 apps/client/src/app/pages/pricing/pricing-page.html - 215 + 219 @@ -4863,7 +4851,7 @@ 社区支持 apps/client/src/app/pages/pricing/pricing-page.html - 88 + 90 @@ -4871,7 +4859,7 @@ 自托管,手动更新。 apps/client/src/app/pages/pricing/pricing-page.html - 92 + 94 @@ -4879,11 +4867,11 @@ 自由的 apps/client/src/app/pages/pricing/pricing-page.html - 93 + 95 apps/client/src/app/pages/pricing/pricing-page.html - 150 + 153 @@ -4891,7 +4879,7 @@ 适合刚开始交易的新投资者。 apps/client/src/app/pages/pricing/pricing-page.html - 120 + 123 @@ -4899,11 +4887,11 @@ 完全托管的 Ghostfolio 云产品。 apps/client/src/app/pages/pricing/pricing-page.html - 149 + 152 apps/client/src/app/pages/pricing/pricing-page.html - 240 + 244 @@ -4911,7 +4899,7 @@ 适合需要全面了解其金融资产的雄心勃勃的投资者。 apps/client/src/app/pages/pricing/pricing-page.html - 180 + 184 @@ -4919,7 +4907,7 @@ 电子邮件和聊天支持 apps/client/src/app/pages/pricing/pricing-page.html - 236 + 240 @@ -4927,15 +4915,15 @@ 更新计划 apps/client/src/app/components/header/header.component.html - 190 + 185 apps/client/src/app/components/user-account-membership/user-account-membership.html - 28 + 21 apps/client/src/app/pages/pricing/pricing-page.html - 276 + 275 @@ -4943,15 +4931,15 @@ 一次性付款,无自动续订。 apps/client/src/app/pages/pricing/pricing-page.html - 280 + 279 - + Get Started 开始使用 - apps/client/src/app/pages/pricing/pricing-page.html - 291 + apps/client/src/app/pages/landing/landing-page.html + 438 @@ -4959,7 +4947,7 @@ 免费。 apps/client/src/app/pages/pricing/pricing-page.html - 294 + 300 @@ -4975,7 +4963,7 @@ 货币 apps/client/src/app/pages/public/public-page.html - 30 + 32 @@ -4983,7 +4971,7 @@ 大陆 apps/client/src/app/pages/public/public-page.html - 60 + 68 @@ -4991,7 +4979,7 @@ Ghostfolio 使您能够跟踪您的财富。 apps/client/src/app/pages/public/public-page.html - 148 + 159 @@ -5007,7 +4995,7 @@ 继续互联网身份 apps/client/src/app/pages/register/register-page.html - 41 + 42 @@ -5015,7 +5003,7 @@ 继续使用谷歌 apps/client/src/app/pages/register/register-page.html - 51 + 53 @@ -5179,15 +5167,15 @@ ✅ 是的 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 109 + 115 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 116 + 122 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 130 + 134 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html @@ -5195,19 +5183,19 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 155 + 153 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 162 + 160 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 174 + 172 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 181 + 179 @@ -5215,39 +5203,39 @@ ❌ 没有 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 111 + 117 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 134 + 136 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 145 + 143 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 157 + 155 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 164 + 162 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 176 + 174 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 183 + 181 - + ❌ No ❌ 没有 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 118 + 124 @@ -5255,7 +5243,7 @@ 自托管 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 123 + 129 @@ -5263,7 +5251,7 @@ 匿名使用 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 150 + 148 @@ -5271,7 +5259,7 @@ 免费计划 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 169 + 167 @@ -5279,11 +5267,11 @@ 从...开始 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 190 + 188 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 195 + 193 @@ -5291,11 +5279,11 @@ apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 191 + 189 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 197 + 195 @@ -5303,7 +5291,7 @@ 笔记 apps/client/src/app/pages/resources/personal-finance-tools/product-page.html - 202 + 201 @@ -6130,12 +6118,12 @@ 404 - + If a translation is missing, kindly support us in extending it here. 如果翻译缺失,请支持我们进行扩展这里 apps/client/src/app/components/user-account-settings/user-account-settings.html - 55 + 50 @@ -6227,7 +6215,7 @@ 绝对货币表现 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 73 + 72 @@ -6235,7 +6223,7 @@ 绝对净性能 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 121 + 119 @@ -6263,7 +6251,7 @@ 资产绩效 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 51 + 50 @@ -6271,7 +6259,7 @@ 净绩效 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 140 + 138 @@ -6279,7 +6267,7 @@ 货币表现 apps/client/src/app/pages/portfolio/analysis/analysis-page.html - 98 + 96 @@ -6350,12 +6338,12 @@ 155 - + If you retire today, you would be able to withdraw per year or per month, based on your total assets of and a withdrawal rate of 4%. 如果你今天退休,你可以领取每年或者每月,根据您的总资产提款率为4%。 apps/client/src/app/pages/portfolio/fire/fire-page.html - 68 + 67 @@ -6427,7 +6415,7 @@ 数据收集 apps/client/src/app/components/admin-overview/admin-overview.html - 134 + 141 @@ -6503,7 +6491,7 @@ Execute Job apps/client/src/app/components/admin-jobs/admin-jobs.html - 183 + 174 @@ -6511,7 +6499,7 @@ Priority apps/client/src/app/components/admin-jobs/admin-jobs.html - 63 + 62 @@ -6591,7 +6579,7 @@ Danger Zone apps/client/src/app/components/user-account-settings/user-account-settings.html - 243 + 238 @@ -6599,7 +6587,7 @@ Close Account apps/client/src/app/components/user-account-settings/user-account-settings.html - 278 + 273 @@ -6618,6 +6606,14 @@ 340 + + Join now or check out the example account + Join now or check out the example account + + apps/client/src/app/pages/landing/landing-page.html + 426 + + From 873fd537158b92c0a47b99f4fb0e0275a751212d Mon Sep 17 00:00:00 2001 From: Eduardo Marinho <87383586+SirZemar@users.noreply.github.com> Date: Wed, 12 Jun 2024 19:28:55 +0100 Subject: [PATCH 71/83] Feature/extend market data with currencies preset by activities count and date (#3460) * Extend market data with currencies preset by activities count and date * Update changelog --- CHANGELOG.md | 4 ++ apps/api/src/app/admin/admin.service.ts | 63 ++++++++++++------- .../interfaces/admin-market-data.interface.ts | 4 +- 3 files changed, 47 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ddc7f796e..ddd17a698 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 historical market data table with currencies preset by date and activities count in the admin control panel + ### Changed - Improved the language localization for German (`de`) diff --git a/apps/api/src/app/admin/admin.service.ts b/apps/api/src/app/admin/admin.service.ts index 3323e775d..c061c996c 100644 --- a/apps/api/src/app/admin/admin.service.ts +++ b/apps/api/src/app/admin/admin.service.ts @@ -409,30 +409,49 @@ export class AdminService { by: ['dataSource', 'symbol'] }); - const marketData: AdminMarketDataItem[] = this.exchangeRateDataService - .getCurrencyPairs() - .map(({ dataSource, symbol }) => { - const marketDataItemCount = - marketDataItems.find((marketDataItem) => { - return ( - marketDataItem.dataSource === dataSource && - marketDataItem.symbol === symbol - ); - })?._count ?? 0; + const marketDataPromise: Promise[] = + this.exchangeRateDataService + .getCurrencyPairs() + .map(async ({ dataSource, symbol }) => { + const currency = symbol.replace(DEFAULT_CURRENCY, ''); + + const { _count, _min } = await this.prismaService.order.aggregate({ + _count: true, + _min: { + date: true + }, + where: { + SymbolProfile: { + currency + } + } + }); - return { - dataSource, - marketDataItemCount, - symbol, - assetClass: AssetClass.LIQUIDITY, - countriesCount: 0, - currency: symbol.replace(DEFAULT_CURRENCY, ''), - id: undefined, - name: symbol, - sectorsCount: 0 - }; - }); + const marketDataItemCount = + marketDataItems.find((marketDataItem) => { + return ( + marketDataItem.dataSource === dataSource && + marketDataItem.symbol === symbol + ); + })?._count ?? 0; + + return { + currency, + dataSource, + marketDataItemCount, + symbol, + activitiesCount: _count as number, + assetClass: AssetClass.LIQUIDITY, + assetSubClass: AssetSubClass.CASH, + countriesCount: 0, + date: _min.date, + id: undefined, + name: symbol, + sectorsCount: 0 + }; + }); + const marketData = await Promise.all(marketDataPromise); return { marketData, count: marketData.length }; } diff --git a/libs/common/src/lib/interfaces/admin-market-data.interface.ts b/libs/common/src/lib/interfaces/admin-market-data.interface.ts index 6f3a82a0b..d52ac03b9 100644 --- a/libs/common/src/lib/interfaces/admin-market-data.interface.ts +++ b/libs/common/src/lib/interfaces/admin-market-data.interface.ts @@ -6,13 +6,13 @@ export interface AdminMarketData { } export interface AdminMarketDataItem { - activitiesCount?: number; + activitiesCount: number; assetClass?: AssetClass; assetSubClass?: AssetSubClass; countriesCount: number; currency: string; dataSource: DataSource; - date?: Date; + date: Date; id: string; isBenchmark?: boolean; marketDataItemCount: number; From f24561cc3d976a0d7532f03b736e26cf5ab2c824 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 13 Jun 2024 12:07:42 +0200 Subject: [PATCH 72/83] Feature/improve style of personal finance tools list (#3486) --- .../personal-finance-tools/personal-finance-tools-page.html | 4 ++-- .../personal-finance-tools/personal-finance-tools-page.scss | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) 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 90b7b3ad1..f3c128433 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 @@ -23,11 +23,11 @@ track personalFinanceTool ) { - +
    Date: Thu, 13 Jun 2024 12:08:15 +0200 Subject: [PATCH 73/83] Feature/improve language localization (#3487) * Update translations --- apps/client/src/locales/messages.es.xlf | 24 ++++++++++++------------ apps/client/src/locales/messages.fr.xlf | 24 ++++++++++++------------ apps/client/src/locales/messages.it.xlf | 2 +- apps/client/src/locales/messages.pt.xlf | 22 +++++++++++----------- apps/client/src/locales/messages.tr.xlf | 4 ++-- 5 files changed, 38 insertions(+), 38 deletions(-) diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 16dd3e6a6..510ac87a5 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -4340,7 +4340,7 @@ Discover Open Source Alternatives for Personal Finance Tools - Discover Open Source Alternatives for Personal Finance Tools + Descubra alternativas de software libre para herramientas de finanzas personales apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html 4 @@ -4348,7 +4348,7 @@ Founded - Founded + Fundada apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 72 @@ -4356,7 +4356,7 @@ Origin - Origin + Origen apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 77 @@ -4364,7 +4364,7 @@ Region - Region + Región apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 82 @@ -4372,7 +4372,7 @@ Available in - Available in + Disponible en apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 87 @@ -4464,7 +4464,7 @@ Use anonymously - Use anonymously + Uso anónimo apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 148 @@ -4472,7 +4472,7 @@ Free Plan - Free Plan + Plan gratuito apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 167 @@ -4480,7 +4480,7 @@ Notes - Notes + Notas apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 201 @@ -4488,7 +4488,7 @@ Effortlessly track, analyze, and visualize your wealth with Ghostfolio. - Effortlessly track, analyze, and visualize your wealth with Ghostfolio. + Siga, analice y visualice su patrimonio sin esfuerzo con Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 227 @@ -4888,7 +4888,7 @@ Get Started - Get Started + Empezar apps/client/src/app/pages/landing/landing-page.html 41 @@ -5644,7 +5644,7 @@ Ready to take your investments to the next level? - Ready to take your investments to the next level? + ¿Listo para llevar sus inversiones al siguiente nivel? apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 223 @@ -5984,7 +5984,7 @@ Ghostfolio vs comparison table - Ghostfolio vs comparison table + Ghostfolio vs tabla comparativa apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 49 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 4921caeb1..53df9ea28 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -3687,7 +3687,7 @@ Get Started - Débuter + Démarrer apps/client/src/app/pages/landing/landing-page.html 438 @@ -4339,7 +4339,7 @@ Discover Open Source Alternatives for Personal Finance Tools - Discover Open Source Alternatives for Personal Finance Tools + Découvrez les alternatives Open Source pour les outils de finance personnelle apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html 4 @@ -4347,7 +4347,7 @@ Founded - Founded + Fondée apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 72 @@ -4355,7 +4355,7 @@ Origin - Origin + L’origine apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 77 @@ -4363,7 +4363,7 @@ Region - Region + La région apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 82 @@ -4371,7 +4371,7 @@ Available in - Available in + Disponible en apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 87 @@ -4463,7 +4463,7 @@ Use anonymously - Use anonymously + Utilisation anonyme apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 148 @@ -4471,7 +4471,7 @@ Free Plan - Free Plan + Plan gratuit apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 167 @@ -4479,7 +4479,7 @@ Notes - Notes + Notes apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 201 @@ -4887,7 +4887,7 @@ Get Started - Get Started + Démarrer apps/client/src/app/pages/landing/landing-page.html 41 @@ -5651,7 +5651,7 @@ Get Started - Get Started + Démarrer apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 232 @@ -5983,7 +5983,7 @@ Ghostfolio vs comparison table - Ghostfolio vs comparison table + Ghostfolio vs tableau comparatif apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 49 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index ce5e92498..dc0c7854b 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -5984,7 +5984,7 @@ Ghostfolio vs comparison table - Ghostfolio vs comparison table + Ghostfolio vs tabella di comparazione apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 49 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 02cfeca2d..fa981c351 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -4339,7 +4339,7 @@ Discover Open Source Alternatives for Personal Finance Tools - Discover Open Source Alternatives for Personal Finance Tools + Descubra alternativas de software livre para ferramentas de finanças pessoais apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html 4 @@ -4347,7 +4347,7 @@ Founded - Founded + Fundada apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 72 @@ -4355,7 +4355,7 @@ Origin - Origin + Origem apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 77 @@ -4363,7 +4363,7 @@ Region - Region + Região apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 82 @@ -4371,7 +4371,7 @@ Available in - Available in + Disponível em apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 87 @@ -4463,7 +4463,7 @@ Use anonymously - Use anonymously + Utilizar anonimamente apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 148 @@ -4471,7 +4471,7 @@ Free Plan - Free Plan + Plano gratuito apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 167 @@ -4479,7 +4479,7 @@ Notes - Notes + Notas apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 201 @@ -4887,7 +4887,7 @@ Get Started - Get Started + Começar apps/client/src/app/pages/landing/landing-page.html 41 @@ -5651,7 +5651,7 @@ Get Started - Get Started + Começar apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 232 @@ -5983,7 +5983,7 @@ Ghostfolio vs comparison table - Ghostfolio vs comparison table + Ghostfolio vs tabela de comparação apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 49 diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index dcac786fe..1871686f4 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -4547,7 +4547,7 @@ Open Source Alternative to - için Açık Kaynak Alternatifi + Open Source Alternative to apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html 42 @@ -4563,7 +4563,7 @@ Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - ? yerine Açık Kaynak Kodlu bir alternatif mi arıyorsunuz? Ghostfolio,kullanıcılara yatırımlarını izlemek, analiz ve optimize etmek için kapsamlı bir platform sunan güçlü bir portföy yönetim aracıdır. Deneyimli bir yatırımcı da olsanuz henüz başlamış da olsanız, Ghostfolio sezgileri güçlü bir kullanıcı arayüzü ile geniş spektrumlu bir fonksiyon seti sunarak bilgiye dayalı kararlar vermenizi ve finansal geleceğinizin kontrolünü elinize almanızı sağlar. + Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 13 From bf20a5de8201e3c6ee8dfb27f62ef3adeb28045c Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Fri, 14 Jun 2024 03:40:47 +0200 Subject: [PATCH 74/83] Feature/improve date validation in activity endpoints (#3489) * Improve date validation * Update changelog --- CHANGELOG.md | 1 + apps/api/src/app/order/create-order.dto.ts | 6 +++++- apps/api/src/app/order/update-order.dto.ts | 6 +++++- ...eate-or-update-activity-dialog.component.ts | 10 +++++++++- .../create-or-update-activity-dialog.html | 7 ++++++- .../lib/validator-constraints/is-after-1970.ts | 16 ++++++++++++++++ test/import/invalid-date-before-min.json | 18 ++++++++++++++++++ 7 files changed, 60 insertions(+), 4 deletions(-) create mode 100644 libs/common/src/lib/validator-constraints/is-after-1970.ts create mode 100644 test/import/invalid-date-before-min.json diff --git a/CHANGELOG.md b/CHANGELOG.md index ddd17a698..a1db2164f 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 ### Changed +- Improved the date validation in the create, import and update activities endpoints - Improved the language localization for German (`de`) ## 2.88.0 - 2024-06-11 diff --git a/apps/api/src/app/order/create-order.dto.ts b/apps/api/src/app/order/create-order.dto.ts index 6d36f036a..72aba3a3b 100644 --- a/apps/api/src/app/order/create-order.dto.ts +++ b/apps/api/src/app/order/create-order.dto.ts @@ -1,3 +1,5 @@ +import { IsAfter1970Constraint } from '@ghostfolio/common/validator-constraints/is-after-1970'; + import { AssetClass, AssetSubClass, @@ -15,7 +17,8 @@ import { IsNumber, IsOptional, IsString, - Min + Min, + Validate } from 'class-validator'; import { isString } from 'lodash'; @@ -51,6 +54,7 @@ export class CreateOrderDto { dataSource?: DataSource; @IsISO8601() + @Validate(IsAfter1970Constraint) date: string; @IsNumber() diff --git a/apps/api/src/app/order/update-order.dto.ts b/apps/api/src/app/order/update-order.dto.ts index be3c2b6e5..2fd33b743 100644 --- a/apps/api/src/app/order/update-order.dto.ts +++ b/apps/api/src/app/order/update-order.dto.ts @@ -1,3 +1,5 @@ +import { IsAfter1970Constraint } from '@ghostfolio/common/validator-constraints/is-after-1970'; + import { AssetClass, AssetSubClass, @@ -14,7 +16,8 @@ import { IsNumber, IsOptional, IsString, - Min + Min, + Validate } from 'class-validator'; import { isString } from 'lodash'; @@ -49,6 +52,7 @@ export class UpdateOrderDto { dataSource: DataSource; @IsISO8601() + @Validate(IsAfter1970Constraint) date: string; @IsNumber() diff --git a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts index 9d3bcc6c9..8ebf936a2 100644 --- a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts +++ b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts @@ -21,7 +21,7 @@ import { DateAdapter, MAT_DATE_LOCALE } from '@angular/material/core'; import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog'; import { AssetClass, AssetSubClass, Tag, Type } from '@prisma/client'; import { isUUID } from 'class-validator'; -import { isToday } from 'date-fns'; +import { isAfter, isToday } from 'date-fns'; import { EMPTY, Observable, Subject, lastValueFrom, of } from 'rxjs'; import { catchError, delay, map, startWith, takeUntil } from 'rxjs/operators'; @@ -426,6 +426,14 @@ export class CreateOrUpdateActivityDialog implements OnDestroy { }); } + public dateFilter(aDate: Date) { + if (!aDate) { + return true; + } + + return isAfter(aDate, new Date(0)); + } + public onAddTag(event: MatAutocompleteSelectedEvent) { this.activityForm.get('tags').setValue([ ...(this.activityForm.get('tags').value ?? []), 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 f57d63559..a3b960d82 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 @@ -157,7 +157,12 @@
    Date - + Date: Fri, 14 Jun 2024 03:43:47 +0200 Subject: [PATCH 75/83] Release 2.89.0 (#3491) --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1db2164f..f5ed45c44 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.89.0 - 2024-06-14 ### Added diff --git a/package.json b/package.json index 21621f3df..9e3fa7b73 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghostfolio", - "version": "2.88.0", + "version": "2.89.0", "homepage": "https://ghostfol.io", "license": "AGPL-3.0", "repository": "https://github.com/ghostfolio/ghostfolio", From 519827045a38013742dbe7eed68309d377d6c40c Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 15 Jun 2024 09:49:54 +0200 Subject: [PATCH 76/83] Feature/add dialog for benchmarks in markets overview (#3493) * Add benchmarks dialog in markets overview * Update changelog --- CHANGELOG.md | 6 ++ apps/api/src/app/app.module.ts | 2 + apps/api/src/app/asset/asset.controller.ts | 29 +++++++ apps/api/src/app/asset/asset.module.ts | 17 ++++ .../src/app/benchmark/benchmark.controller.ts | 4 +- .../src/app/benchmark/benchmark.service.ts | 4 +- .../home-market/home-market.component.ts | 4 + .../components/home-market/home-market.html | 1 + .../analysis/analysis-page.component.ts | 2 +- apps/client/src/app/services/data.service.ts | 17 +++- .../src/lib/interfaces/benchmark.interface.ts | 2 + .../benchmark-detail-dialog.component.scss | 12 +++ .../benchmark-detail-dialog.component.ts | 87 +++++++++++++++++++ .../benchmark-detail-dialog.html | 30 +++++++ .../interfaces/interfaces.ts | 11 +++ .../lib/benchmark/benchmark.component.html | 12 ++- .../src/lib/benchmark/benchmark.component.ts | 75 ++++++++++++++-- 17 files changed, 302 insertions(+), 13 deletions(-) create mode 100644 apps/api/src/app/asset/asset.controller.ts create mode 100644 apps/api/src/app/asset/asset.module.ts create mode 100644 libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.component.scss create mode 100644 libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.component.ts create mode 100644 libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.html create mode 100644 libs/ui/src/lib/benchmark/benchmark-detail-dialog/interfaces/interfaces.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index f5ed45c44..35083a942 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 + +### Added + +- Added a dialog for the benchmarks in the markets overview + ## 2.89.0 - 2024-06-14 ### Added diff --git a/apps/api/src/app/app.module.ts b/apps/api/src/app/app.module.ts index 67bb9e03c..ca19d63bc 100644 --- a/apps/api/src/app/app.module.ts +++ b/apps/api/src/app/app.module.ts @@ -25,6 +25,7 @@ import { AccessModule } from './access/access.module'; import { AccountModule } from './account/account.module'; import { AdminModule } from './admin/admin.module'; import { AppController } from './app.controller'; +import { AssetModule } from './asset/asset.module'; import { AuthDeviceModule } from './auth-device/auth-device.module'; import { AuthModule } from './auth/auth.module'; import { BenchmarkModule } from './benchmark/benchmark.module'; @@ -51,6 +52,7 @@ import { UserModule } from './user/user.module'; AdminModule, AccessModule, AccountModule, + AssetModule, AuthDeviceModule, AuthModule, BenchmarkModule, diff --git a/apps/api/src/app/asset/asset.controller.ts b/apps/api/src/app/asset/asset.controller.ts new file mode 100644 index 000000000..828320f82 --- /dev/null +++ b/apps/api/src/app/asset/asset.controller.ts @@ -0,0 +1,29 @@ +import { AdminService } from '@ghostfolio/api/app/admin/admin.service'; +import { TransformDataSourceInRequestInterceptor } from '@ghostfolio/api/interceptors/transform-data-source-in-request/transform-data-source-in-request.interceptor'; +import { TransformDataSourceInResponseInterceptor } from '@ghostfolio/api/interceptors/transform-data-source-in-response/transform-data-source-in-response.interceptor'; +import type { AdminMarketDataDetails } from '@ghostfolio/common/interfaces'; + +import { Controller, Get, Param, UseInterceptors } from '@nestjs/common'; +import { DataSource } from '@prisma/client'; +import { pick } from 'lodash'; + +@Controller('asset') +export class AssetController { + public constructor(private readonly adminService: AdminService) {} + + @Get(':dataSource/:symbol') + @UseInterceptors(TransformDataSourceInRequestInterceptor) + @UseInterceptors(TransformDataSourceInResponseInterceptor) + public async getAsset( + @Param('dataSource') dataSource: DataSource, + @Param('symbol') symbol: string + ): Promise { + const { assetProfile, marketData } = + await this.adminService.getMarketDataBySymbol({ dataSource, symbol }); + + return { + marketData, + assetProfile: pick(assetProfile, ['dataSource', 'name', 'symbol']) + }; + } +} diff --git a/apps/api/src/app/asset/asset.module.ts b/apps/api/src/app/asset/asset.module.ts new file mode 100644 index 000000000..168585ed8 --- /dev/null +++ b/apps/api/src/app/asset/asset.module.ts @@ -0,0 +1,17 @@ +import { AdminModule } from '@ghostfolio/api/app/admin/admin.module'; +import { TransformDataSourceInRequestModule } from '@ghostfolio/api/interceptors/transform-data-source-in-request/transform-data-source-in-request.module'; +import { TransformDataSourceInResponseModule } from '@ghostfolio/api/interceptors/transform-data-source-in-response/transform-data-source-in-response.module'; + +import { Module } from '@nestjs/common'; + +import { AssetController } from './asset.controller'; + +@Module({ + controllers: [AssetController], + imports: [ + AdminModule, + TransformDataSourceInRequestModule, + TransformDataSourceInResponseModule + ] +}) +export class AssetModule {} diff --git a/apps/api/src/app/benchmark/benchmark.controller.ts b/apps/api/src/app/benchmark/benchmark.controller.ts index 7ac0e8c96..9c6331498 100644 --- a/apps/api/src/app/benchmark/benchmark.controller.ts +++ b/apps/api/src/app/benchmark/benchmark.controller.ts @@ -105,7 +105,7 @@ export class BenchmarkController { @Get(':dataSource/:symbol/:startDateString') @UseGuards(AuthGuard('jwt'), HasPermissionGuard) @UseInterceptors(TransformDataSourceInRequestInterceptor) - public async getBenchmarkMarketDataBySymbol( + public async getBenchmarkMarketDataForUser( @Param('dataSource') dataSource: DataSource, @Param('startDateString') startDateString: string, @Param('symbol') symbol: string, @@ -117,7 +117,7 @@ export class BenchmarkController { ); const userCurrency = this.request.user.Settings.settings.baseCurrency; - return this.benchmarkService.getMarketDataBySymbol({ + return this.benchmarkService.getMarketDataForUser({ dataSource, endDate, startDate, diff --git a/apps/api/src/app/benchmark/benchmark.service.ts b/apps/api/src/app/benchmark/benchmark.service.ts index 6f2047210..f4f2d7848 100644 --- a/apps/api/src/app/benchmark/benchmark.service.ts +++ b/apps/api/src/app/benchmark/benchmark.service.ts @@ -153,6 +153,7 @@ export class BenchmarkService { } return { + dataSource: benchmarkAssetProfiles[index].dataSource, marketCondition: this.getMarketCondition( performancePercentFromAllTimeHigh ), @@ -163,6 +164,7 @@ export class BenchmarkService { performancePercent: performancePercentFromAllTimeHigh } }, + symbol: benchmarkAssetProfiles[index].symbol, trend50d: benchmarkTrends[index].trend50d, trend200d: benchmarkTrends[index].trend200d }; @@ -213,7 +215,7 @@ export class BenchmarkService { .sort((a, b) => a.name.localeCompare(b.name)); } - public async getMarketDataBySymbol({ + public async getMarketDataForUser({ dataSource, endDate = new Date(), startDate, diff --git a/apps/client/src/app/components/home-market/home-market.component.ts b/apps/client/src/app/components/home-market/home-market.component.ts index 481b913fb..3a42a9ebc 100644 --- a/apps/client/src/app/components/home-market/home-market.component.ts +++ b/apps/client/src/app/components/home-market/home-market.component.ts @@ -11,6 +11,7 @@ import { import { hasPermission, permissions } from '@ghostfolio/common/permissions'; import { ChangeDetectorRef, Component, OnDestroy, OnInit } from '@angular/core'; +import { DeviceDetectorService } from 'ngx-device-detector'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; @@ -21,6 +22,7 @@ import { takeUntil } from 'rxjs/operators'; }) export class HomeMarketComponent implements OnDestroy, OnInit { public benchmarks: Benchmark[]; + public deviceType: string; public fearAndGreedIndex: number; public fearLabel = $localize`Fear`; public greedLabel = $localize`Greed`; @@ -36,8 +38,10 @@ export class HomeMarketComponent implements OnDestroy, OnInit { public constructor( private changeDetectorRef: ChangeDetectorRef, private dataService: DataService, + private deviceService: DeviceDetectorService, private userService: UserService ) { + this.deviceType = this.deviceService.getDeviceInfo().deviceType; this.info = this.dataService.fetchInfo(); this.isLoading = true; diff --git a/apps/client/src/app/components/home-market/home-market.html b/apps/client/src/app/components/home-market/home-market.html index 8406cd2ff..c362fdd18 100644 --- a/apps/client/src/app/components/home-market/home-market.html +++ b/apps/client/src/app/components/home-market/home-market.html @@ -32,6 +32,7 @@
    diff --git a/apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts b/apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts index 2ce073b17..0450e32ae 100644 --- a/apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts +++ b/apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts @@ -285,7 +285,7 @@ export class AnalysisPageComponent implements OnDestroy, OnInit { this.isLoadingBenchmarkComparator = true; this.dataService - .fetchBenchmarkBySymbol({ + .fetchBenchmarkForUser({ dataSource, symbol, range: this.user?.settings?.dateRange, diff --git a/apps/client/src/app/services/data.service.ts b/apps/client/src/app/services/data.service.ts index 241bb1d3e..64e498d12 100644 --- a/apps/client/src/app/services/data.service.ts +++ b/apps/client/src/app/services/data.service.ts @@ -19,6 +19,7 @@ import { Access, AccountBalancesResponse, Accounts, + AdminMarketDataDetails, BenchmarkMarketDataDetails, BenchmarkResponse, Export, @@ -284,7 +285,21 @@ export class DataService { return this.http.get('/api/v1/access'); } - public fetchBenchmarkBySymbol({ + public fetchAsset({ + dataSource, + symbol + }: UniqueAsset): Observable { + return this.http.get(`/api/v1/asset/${dataSource}/${symbol}`).pipe( + map((data) => { + for (const item of data.marketData) { + item.date = parseISO(item.date); + } + return data; + }) + ); + } + + public fetchBenchmarkForUser({ dataSource, range, startDate, diff --git a/libs/common/src/lib/interfaces/benchmark.interface.ts b/libs/common/src/lib/interfaces/benchmark.interface.ts index 2d63b677c..bf85cd752 100644 --- a/libs/common/src/lib/interfaces/benchmark.interface.ts +++ b/libs/common/src/lib/interfaces/benchmark.interface.ts @@ -3,6 +3,7 @@ import { BenchmarkTrend } from '@ghostfolio/common/types/'; import { EnhancedSymbolProfile } from './enhanced-symbol-profile.interface'; export interface Benchmark { + dataSource: EnhancedSymbolProfile['dataSource']; marketCondition: 'ALL_TIME_HIGH' | 'BEAR_MARKET' | 'NEUTRAL_MARKET'; name: EnhancedSymbolProfile['name']; performances: { @@ -11,6 +12,7 @@ export interface Benchmark { performancePercent: number; }; }; + symbol: EnhancedSymbolProfile['symbol']; trend50d: BenchmarkTrend; trend200d: BenchmarkTrend; } diff --git a/libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.component.scss b/libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.component.scss new file mode 100644 index 000000000..02f5d58a1 --- /dev/null +++ b/libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.component.scss @@ -0,0 +1,12 @@ +:host { + display: block; + + .mat-mdc-dialog-content { + max-height: unset; + + gf-line-chart { + aspect-ratio: 16 / 9; + margin: 0 -0.5rem; + } + } +} diff --git a/libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.component.ts b/libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.component.ts new file mode 100644 index 000000000..73af9e681 --- /dev/null +++ b/libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.component.ts @@ -0,0 +1,87 @@ +import { GfDialogFooterModule } from '@ghostfolio/client/components/dialog-footer/dialog-footer.module'; +import { GfDialogHeaderModule } from '@ghostfolio/client/components/dialog-header/dialog-header.module'; +import { DataService } from '@ghostfolio/client/services/data.service'; +import { DATE_FORMAT } from '@ghostfolio/common/helper'; +import { + AdminMarketDataDetails, + LineChartItem +} from '@ghostfolio/common/interfaces'; +import { GfLineChartComponent } from '@ghostfolio/ui/line-chart'; + +import { CommonModule } from '@angular/common'; +import { + CUSTOM_ELEMENTS_SCHEMA, + ChangeDetectionStrategy, + ChangeDetectorRef, + Component, + Inject, + OnDestroy, + OnInit +} from '@angular/core'; +import { + MAT_DIALOG_DATA, + MatDialogModule, + MatDialogRef +} from '@angular/material/dialog'; +import { format } from 'date-fns'; +import { Subject } from 'rxjs'; +import { takeUntil } from 'rxjs/operators'; + +import { BenchmarkDetailDialogParams } from './interfaces/interfaces'; + +@Component({ + changeDetection: ChangeDetectionStrategy.OnPush, + host: { class: 'd-flex flex-column h-100' }, + imports: [ + CommonModule, + GfDialogFooterModule, + GfDialogHeaderModule, + GfLineChartComponent, + MatDialogModule + ], + schemas: [CUSTOM_ELEMENTS_SCHEMA], + selector: 'gf-benchmark-detail-dialog', + standalone: true, + styleUrls: ['./benchmark-detail-dialog.component.scss'], + templateUrl: 'benchmark-detail-dialog.html' +}) +export class GfBenchmarkDetailDialogComponent implements OnDestroy, OnInit { + public assetProfile: AdminMarketDataDetails['assetProfile']; + public historicalDataItems: LineChartItem[]; + + private unsubscribeSubject = new Subject(); + + public constructor( + private changeDetectorRef: ChangeDetectorRef, + private dataService: DataService, + public dialogRef: MatDialogRef, + @Inject(MAT_DIALOG_DATA) public data: BenchmarkDetailDialogParams + ) {} + + public ngOnInit() { + this.dataService + .fetchAsset({ + dataSource: this.data.dataSource, + symbol: this.data.symbol + }) + .pipe(takeUntil(this.unsubscribeSubject)) + .subscribe(({ assetProfile, marketData }) => { + this.assetProfile = assetProfile; + + this.historicalDataItems = marketData.map(({ date, marketPrice }) => { + return { date: format(date, DATE_FORMAT), value: marketPrice }; + }); + + this.changeDetectorRef.markForCheck(); + }); + } + + public onClose() { + this.dialogRef.close(); + } + + public ngOnDestroy() { + this.unsubscribeSubject.next(); + this.unsubscribeSubject.complete(); + } +} diff --git a/libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.html b/libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.html new file mode 100644 index 000000000..23196f162 --- /dev/null +++ b/libs/ui/src/lib/benchmark/benchmark-detail-dialog/benchmark-detail-dialog.html @@ -0,0 +1,30 @@ + + +
    +
    + +
    +
    + + diff --git a/libs/ui/src/lib/benchmark/benchmark-detail-dialog/interfaces/interfaces.ts b/libs/ui/src/lib/benchmark/benchmark-detail-dialog/interfaces/interfaces.ts new file mode 100644 index 000000000..291f4c973 --- /dev/null +++ b/libs/ui/src/lib/benchmark/benchmark-detail-dialog/interfaces/interfaces.ts @@ -0,0 +1,11 @@ +import { ColorScheme } from '@ghostfolio/common/types'; + +import { DataSource } from '@prisma/client'; + +export interface BenchmarkDetailDialogParams { + colorScheme: ColorScheme; + dataSource: DataSource; + deviceType: string; + locale: string; + symbol: string; +} diff --git a/libs/ui/src/lib/benchmark/benchmark.component.html b/libs/ui/src/lib/benchmark/benchmark.component.html index 9497c63f4..ec92554de 100644 --- a/libs/ui/src/lib/benchmark/benchmark.component.html +++ b/libs/ui/src/lib/benchmark/benchmark.component.html @@ -110,5 +110,15 @@ - + diff --git a/libs/ui/src/lib/benchmark/benchmark.component.ts b/libs/ui/src/lib/benchmark/benchmark.component.ts index 07e70c2fd..4dd4aa079 100644 --- a/libs/ui/src/lib/benchmark/benchmark.component.ts +++ b/libs/ui/src/lib/benchmark/benchmark.component.ts @@ -1,6 +1,8 @@ import { getLocale, resolveMarketCondition } from '@ghostfolio/common/helper'; -import { Benchmark, User } from '@ghostfolio/common/interfaces'; +import { Benchmark, UniqueAsset, User } from '@ghostfolio/common/interfaces'; import { translate } from '@ghostfolio/ui/i18n'; +import { GfTrendIndicatorComponent } from '@ghostfolio/ui/trend-indicator'; +import { GfValueComponent } from '@ghostfolio/ui/value'; import { CommonModule } from '@angular/common'; import { @@ -8,13 +10,17 @@ import { ChangeDetectionStrategy, Component, Input, - OnChanges + OnChanges, + OnDestroy } from '@angular/core'; +import { MatDialog } from '@angular/material/dialog'; import { MatTableModule } from '@angular/material/table'; +import { ActivatedRoute, Router, RouterModule } from '@angular/router'; import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; +import { Subject, takeUntil } from 'rxjs'; -import { GfTrendIndicatorComponent } from '../trend-indicator'; -import { GfValueComponent } from '../value'; +import { GfBenchmarkDetailDialogComponent } from './benchmark-detail-dialog/benchmark-detail-dialog.component'; +import { BenchmarkDetailDialogParams } from './benchmark-detail-dialog/interfaces/interfaces'; @Component({ changeDetection: ChangeDetectionStrategy.OnPush, @@ -23,7 +29,8 @@ import { GfValueComponent } from '../value'; GfTrendIndicatorComponent, GfValueComponent, MatTableModule, - NgxSkeletonLoaderModule + NgxSkeletonLoaderModule, + RouterModule ], schemas: [CUSTOM_ELEMENTS_SCHEMA], selector: 'gf-benchmark', @@ -31,8 +38,9 @@ import { GfValueComponent } from '../value'; styleUrls: ['./benchmark.component.scss'], templateUrl: './benchmark.component.html' }) -export class GfBenchmarkComponent implements OnChanges { +export class GfBenchmarkComponent implements OnChanges, OnDestroy { @Input() benchmarks: Benchmark[]; + @Input() deviceType: string; @Input() locale = getLocale(); @Input() user: User; @@ -40,7 +48,28 @@ export class GfBenchmarkComponent implements OnChanges { public resolveMarketCondition = resolveMarketCondition; public translate = translate; - public constructor() {} + private unsubscribeSubject = new Subject(); + + public constructor( + private dialog: MatDialog, + private route: ActivatedRoute, + private router: Router + ) { + this.route.queryParams + .pipe(takeUntil(this.unsubscribeSubject)) + .subscribe((params) => { + if ( + params['benchmarkDetailDialog'] && + params['dataSource'] && + params['symbol'] + ) { + this.openBenchmarkDetailDialog({ + dataSource: params['dataSource'], + symbol: params['symbol'] + }); + } + }); + } public ngOnChanges() { if (this.user?.settings?.isExperimentalFeatures) { @@ -54,4 +83,36 @@ export class GfBenchmarkComponent implements OnChanges { ]; } } + + public onOpenBenchmarkDialog({ dataSource, symbol }: UniqueAsset) { + this.router.navigate([], { + queryParams: { dataSource, symbol, benchmarkDetailDialog: true } + }); + } + + public ngOnDestroy() { + this.unsubscribeSubject.next(); + this.unsubscribeSubject.complete(); + } + + private openBenchmarkDetailDialog({ dataSource, symbol }: UniqueAsset) { + const dialogRef = this.dialog.open(GfBenchmarkDetailDialogComponent, { + data: { + dataSource, + symbol, + colorScheme: this.user?.settings?.colorScheme, + deviceType: this.deviceType, + locale: this.locale + }, + height: this.deviceType === 'mobile' ? '97.5vh' : undefined, + width: this.deviceType === 'mobile' ? '100vw' : '50rem' + }); + + dialogRef + .afterClosed() + .pipe(takeUntil(this.unsubscribeSubject)) + .subscribe(() => { + this.router.navigate(['.'], { relativeTo: this.route }); + }); + } } From 6c2acf2aa64e53d51d1e4bf106f6dc51885ef1ed Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Sat, 15 Jun 2024 10:53:20 +0200 Subject: [PATCH 77/83] Feature/set up ssl for local development (#3482) * Set up SSL for local development * Update changelog --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- apps/client/localhost.cert | 18 ++++++++++++++++++ apps/client/localhost.pem | 28 ++++++++++++++++++++++++++++ apps/client/project.json | 5 ++++- libs/common/src/lib/config.ts | 2 +- 6 files changed, 57 insertions(+), 4 deletions(-) create mode 100644 apps/client/localhost.cert create mode 100644 apps/client/localhost.pem diff --git a/CHANGELOG.md b/CHANGELOG.md index 35083a942..e8d63b17f 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 - Added a dialog for the benchmarks in the markets overview +### Changed + +- Set up SSL for local development + ## 2.89.0 - 2024-06-14 ### Added diff --git a/README.md b/README.md index 2d49124b8..cd8af7af2 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ Ghostfolio is available for various home server systems, including [CasaOS](http 1. Run `yarn database:setup` to initialize the database schema 1. Run `git config core.hooksPath ./git-hooks/` to setup git hooks 1. Start the server and the client (see [_Development_](#Development)) -1. Open http://localhost:4200/en in your browser +1. Open https://localhost:4200/en in your browser 1. Create a new user via _Get Started_ (this first user will get the role `ADMIN`) ### Start Server @@ -176,7 +176,7 @@ Run `yarn start:server` ### Start Client -Run `yarn start:client` and open http://localhost:4200/en in your browser +Run `yarn start:client` and open https://localhost:4200/en in your browser ### Start _Storybook_ diff --git a/apps/client/localhost.cert b/apps/client/localhost.cert new file mode 100644 index 000000000..12f31dd27 --- /dev/null +++ b/apps/client/localhost.cert @@ -0,0 +1,18 @@ +-----BEGIN CERTIFICATE----- +MIIC5TCCAc2gAwIBAgIJAJAMHOFnJ6oyMA0GCSqGSIb3DQEBCwUAMBQxEjAQBgNV +BAMMCWxvY2FsaG9zdDAeFw0yNDAyMjcxNTQ2MzFaFw0yNDAzMjgxNTQ2MzFaMBQx +EjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAJ0hRjViikEKVIyukXR4CfuYVvFEFzB6AwAQ9Jrz2MseqpLacLTXFFAS54mp +iDuqPBzs9ta40mlSrqSBuAWKikpW5kTNnmqUnDZ6iSJezbYWx9YyULGqqb1q3C4/ +5pH9m6NHJ+2uaUNKlDxYNKbntqs3drQEdxH9yv672Z53nvogTcf9jz6zjutEQGSV +HgVkCTTQmzf3+3st+VJ5D8JeYFR+tpZ6yleqgXFaTMtPZRfKLvTkQ+KeyCJLnsUJ +BQvdCKI0PGsG6d6ygXFmSePolD9KW3VTKKDPCsndID89vAnRWDj9UhzvycxmKpcF +GrUPH5+Pis1PM1R7OnAvnFygnyECAwEAAaM6MDgwFAYDVR0RBA0wC4IJbG9jYWxo +b3N0MAsGA1UdDwQEAwIHgDATBgNVHSUEDDAKBggrBgEFBQcDATANBgkqhkiG9w0B +AQsFAAOCAQEAOdzrY3RTAPnBVAd3/GKIEkielYyOgKPnvd+RcOB+je8cXZY+vaxX +uEFP0526G00+kRZ2Tx9t0SmjoSpwg3lHUPMko0dIxgRlqISDAohdrEptHpcVujsD +ak88LLnAurr60JNjWX2wbEoJ18KLtqGSnATdmCgKwDPIN5a7+ssp44BGyzH6VYCg +wV3VjJl0pp4C5M0Jfu0p1FrQjzIVhgqR7JFYmvqIogWrGwYAQK/3XRXq8t48J5X3 +IsfWiLAA2ZdCoWAnZ6PAGBOoGivtkJm967pHjd/28qYY6mQo4sN2ksEOjx6/YslF +2mOJdLV/DzqoggUsTpPEG0dRhzQLTGHKDQ== +-----END CERTIFICATE----- diff --git a/apps/client/localhost.pem b/apps/client/localhost.pem new file mode 100644 index 000000000..dc2a7ff5a --- /dev/null +++ b/apps/client/localhost.pem @@ -0,0 +1,28 @@ +-----BEGIN PRIVATE KEY----- +MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQCdIUY1YopBClSM +rpF0eAn7mFbxRBcwegMAEPSa89jLHqqS2nC01xRQEueJqYg7qjwc7PbWuNJpUq6k +gbgFiopKVuZEzZ5qlJw2eokiXs22FsfWMlCxqqm9atwuP+aR/ZujRyftrmlDSpQ8 +WDSm57arN3a0BHcR/cr+u9med576IE3H/Y8+s47rREBklR4FZAk00Js39/t7LflS +eQ/CXmBUfraWespXqoFxWkzLT2UXyi705EPinsgiS57FCQUL3QiiNDxrBunesoFx +Zknj6JQ/Slt1UyigzwrJ3SA/PbwJ0Vg4/VIc78nMZiqXBRq1Dx+fj4rNTzNUezpw +L5xcoJ8hAgMBAAECggEAPU5YOEgELTA8oM8TjV+wdWuQsH2ilpVkSkhTR4nQkh+a +6cU0qDoqgLt/fySYNL9MyPRjso9V+SX7YdAC3paZMjwJh9q57lehQ1g33SMkG+Fz +gs0K0ucFZxQkaB8idN+ANAp1N7UO+ORGRe0cTeqmSNNRCxea5XgiFZVxaPS/IFOR +vVdXS1DulgwHh4H0ljKmkj7jc9zPBSc9ccW5Ml2q4a26Atu4IC/Mlp/DF4GNELbD +ebi9ZOZG33ip2bdhj3WX7NW9GJaaViKtVUpcpR6u+6BfvTXQ6xrqdoxXk9fnPzzf +sSoLPTt8yO4RavP1zQU22PhgIcWudhCiy/2Nv+uLqQKBgQDMPh1/xwdFl8yES8dy +f0xJyCDWPiB+xzGwcOAC90FrNZaqG0WWs3VHE4cilaWjCflvdR6aAEDEY68sZJhl +h+ChT/g61QLMOI+VIDQ1kJXKYgfS/B+BE1PZ0EkuymKFOvbNO8agHodB8CqnZaQh +bLuZaDnZ0JLK4im3KPt70+aKYwKBgQDE8s6xl0SLu+yJLo3VklCRD67Z8/jlvx2t +h3DF6NG8pB3QmvKdJWFKuLAWLGflJwbUW9Pt3hXkc0649KQrtiIYC0ZMh9KMaVCk +WmjS/n2eIUQZ7ZUlwFesi4p4iGynVBavIY8TJ6Y+K3TvsJgXP3IZ96r689PQJo8E +KbSeyYzFqwKBgGQTS4EAlJ+U8bEhMGj51veQCAbyChoUoFRD+n95h6RwbZKMKlzd +MenRt7VKfg6VJJNoX8Y1uYaBEaQ+5i1Zlsdz1718AhLu4+u+C9bzMXIo9ox63TTx +s3RWioVSxVNiwOtvDrQGQWAdvcioFPQLwyA34aDIgiTHDImimxbhjWThAoGAWOqW +Tq9QjxWk0Lpn5ohMP3GpK1VuhasnJvUDARb/uf8ORuPtrOz3Y9jGBvy9W0OnXbCn +mbiugZldbTtl8yYjdl+AuYSIlkPl2I3IzZl/9Shnqp0MvSJ9crT9KzXMeC8Knr6z +7Z30/BR6ksxTngtS5E5grzPt6Qe/gc2ich3kpEkCgYBfBHUhVIKVrDW/8a7U2679 +Wj4i9us/M3iPMxcTv7/ZAg08TEvNBQYtvVQLu0NfDKXx8iGKJJ6evIYgNXVm2sPq +VzSgwGCALi1X0443amZU+mnX+/9RnBqyM+PJU8570mM83jqKlY/BEsi0aqxTioFG +an3xbjjN+Rq9iKLzmPxIMg== +-----END PRIVATE KEY----- diff --git a/apps/client/project.json b/apps/client/project.json index 0cd576e16..153ae02d1 100644 --- a/apps/client/project.json +++ b/apps/client/project.json @@ -163,8 +163,11 @@ "serve": { "executor": "@nx/angular:dev-server", "options": { + "buildTarget": "client:build", "proxyConfig": "apps/client/proxy.conf.json", - "buildTarget": "client:build" + "ssl": true, + "sslCert": "apps/client/localhost.cert", + "sslKey": "apps/client/localhost.pem" }, "configurations": { "development-de": { diff --git a/libs/common/src/lib/config.ts b/libs/common/src/lib/config.ts index cd0f207da..b7f20a978 100644 --- a/libs/common/src/lib/config.ts +++ b/libs/common/src/lib/config.ts @@ -41,7 +41,7 @@ export const DEFAULT_CURRENCY = 'USD'; export const DEFAULT_DATE_FORMAT_MONTH_YEAR = 'MMM yyyy'; export const DEFAULT_LANGUAGE_CODE = 'en'; export const DEFAULT_PAGE_SIZE = 50; -export const DEFAULT_ROOT_URL = 'http://localhost:4200'; +export const DEFAULT_ROOT_URL = 'https://localhost:4200'; // USX is handled separately export const DERIVED_CURRENCIES = [ From a25d5b9dc046fa935b094d07746b321fec7c5e38 Mon Sep 17 00:00:00 2001 From: Juan Abascal Sanchez Date: Mon, 17 Jun 2024 16:41:12 +0200 Subject: [PATCH 78/83] Feature/improve error handling in biometric authentication registration (#3496) * Improve error handling in biometric authentication registration * Update changelog --- CHANGELOG.md | 1 + .../user-account-settings.component.ts | 70 +++++++++++++------ .../user-account-settings.html | 4 +- 3 files changed, 53 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8d63b17f..cd2383efa 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 ### Changed +- Improved the error handling in the biometric authentication registration - Set up SSL for local development ## 2.89.0 - 2024-06-14 diff --git a/apps/client/src/app/components/user-account-settings/user-account-settings.component.ts b/apps/client/src/app/components/user-account-settings/user-account-settings.component.ts index 4f80207aa..a809d5ed2 100644 --- a/apps/client/src/app/components/user-account-settings/user-account-settings.component.ts +++ b/apps/client/src/app/components/user-account-settings/user-account-settings.component.ts @@ -20,9 +20,10 @@ import { } from '@angular/core'; import { FormBuilder, Validators } from '@angular/forms'; import { MatSlideToggleChange } from '@angular/material/slide-toggle'; +import { MatSnackBar } from '@angular/material/snack-bar'; import { format, parseISO } from 'date-fns'; import { uniq } from 'lodash'; -import { EMPTY, Subject } from 'rxjs'; +import { EMPTY, Subject, throwError } from 'rxjs'; import { catchError, takeUntil } from 'rxjs/operators'; @Component({ @@ -42,6 +43,7 @@ export class UserAccountSettingsComponent implements OnDestroy, OnInit { public hasPermissionToUpdateViewMode: boolean; public hasPermissionToUpdateUserSettings: boolean; public isAccessTokenHidden = true; + public isFingerprintSupported = this.doesBrowserSupportAuthn(); public isWebAuthnEnabled: boolean; public language = document.documentElement.lang; public locales = [ @@ -67,6 +69,7 @@ export class UserAccountSettingsComponent implements OnDestroy, OnInit { private dataService: DataService, private formBuilder: FormBuilder, private settingsStorageService: SettingsStorageService, + private snackBar: MatSnackBar, private tokenStorageService: TokenStorageService, private userService: UserService, public webAuthnService: WebAuthnService @@ -222,9 +225,15 @@ export class UserAccountSettingsComponent implements OnDestroy, OnInit { }); } - public onSignInWithFingerprintChange(aEvent: MatSlideToggleChange) { + public async onSignInWithFingerprintChange(aEvent: MatSlideToggleChange) { if (aEvent.checked) { - this.registerDevice(); + try { + await this.registerDevice(); + } catch { + aEvent.source.checked = false; + + this.changeDetectorRef.markForCheck(); + } } else { const confirmation = confirm( $localize`Do you really want to remove this sign in method?` @@ -265,35 +274,54 @@ export class UserAccountSettingsComponent implements OnDestroy, OnInit { this.webAuthnService .deregister() .pipe( - takeUntil(this.unsubscribeSubject), catchError(() => { this.update(); return EMPTY; - }) + }), + takeUntil(this.unsubscribeSubject) ) .subscribe(() => { this.update(); }); } - private registerDevice() { - this.webAuthnService - .register() - .pipe( - takeUntil(this.unsubscribeSubject), - catchError(() => { - this.update(); - - return EMPTY; - }) - ) - .subscribe(() => { - this.settingsStorageService.removeSetting(KEY_STAY_SIGNED_IN); - this.settingsStorageService.removeSetting(KEY_TOKEN); + private doesBrowserSupportAuthn() { + // Authn is built on top of PublicKeyCredential: https://stackoverflow.com/a/55868189 + return typeof PublicKeyCredential !== 'undefined'; + } - this.update(); - }); + private registerDevice(): Promise { + return new Promise((resolve, reject) => { + this.webAuthnService + .register() + .pipe( + catchError((error: Error) => { + this.snackBar.open( + $localize`Oops! There was an error setting up biometric authentication.`, + undefined, + { duration: 3000 } + ); + + return throwError(() => { + return error; + }); + }), + takeUntil(this.unsubscribeSubject) + ) + .subscribe({ + next: () => { + this.settingsStorageService.removeSetting(KEY_STAY_SIGNED_IN); + this.settingsStorageService.removeSetting(KEY_TOKEN); + + this.update(); + resolve(); + }, + error: (error) => { + reject(error); + } + }); + }); } private update() { diff --git a/apps/client/src/app/components/user-account-settings/user-account-settings.html b/apps/client/src/app/components/user-account-settings/user-account-settings.html index 0dd8ac47e..c369f81bd 100644 --- a/apps/client/src/app/components/user-account-settings/user-account-settings.html +++ b/apps/client/src/app/components/user-account-settings/user-account-settings.html @@ -189,7 +189,9 @@ color="primary" hideIcon="true" [checked]="isWebAuthnEnabled === true" - [disabled]="!hasPermissionToUpdateUserSettings" + [disabled]=" + !hasPermissionToUpdateUserSettings || !isFingerprintSupported + " (change)="onSignInWithFingerprintChange($event)" />
    From a97110348cef99c714e7f4ba491eb8dd57ba6998 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 18 Jun 2024 20:11:49 +0200 Subject: [PATCH 79/83] Feature/move active filters indicator to general availability (#3485) * Move to general availability * Update changelog --- CHANGELOG.md | 1 + apps/client/src/app/components/header/header.component.html | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd2383efa..2be539f7c 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 ### Changed +- Moved the indicator for active filters from experimental to general availability - Improved the error handling in the biometric authentication registration - Set up SSL for local development diff --git a/apps/client/src/app/components/header/header.component.html b/apps/client/src/app/components/header/header.component.html index 369f711fd..b545c40aa 100644 --- a/apps/client/src/app/components/header/header.component.html +++ b/apps/client/src/app/components/header/header.component.html @@ -121,9 +121,7 @@ matBadge="✓" matBadgeSize="small" [mat-menu-trigger-for]="assistantMenu" - [matBadgeHidden]=" - !hasFilters || !user?.settings?.isExperimentalFeatures - " + [matBadgeHidden]="!hasFilters" [matMenuTriggerRestoreFocus]="false" (menuOpened)="onOpenAssistant()" > From a201fc7a977ad9e3cbcd0290dfce4c89457cb17a Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 18 Jun 2024 20:37:02 +0200 Subject: [PATCH 80/83] Feature/upgrade stripe dependencies 20240617 (#3499) * Upgrade Stripe dependencies * Update changelog --- CHANGELOG.md | 1 + .../app/subscription/subscription.service.ts | 2 +- package.json | 6 ++--- yarn.lock | 24 +++++++++---------- 4 files changed, 17 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2be539f7c..ba52f3018 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Moved the indicator for active filters from experimental to general availability - Improved the error handling in the biometric authentication registration - Set up SSL for local development +- Upgraded the _Stripe_ dependencies ## 2.89.0 - 2024-06-14 diff --git a/apps/api/src/app/subscription/subscription.service.ts b/apps/api/src/app/subscription/subscription.service.ts index d53944787..545450669 100644 --- a/apps/api/src/app/subscription/subscription.service.ts +++ b/apps/api/src/app/subscription/subscription.service.ts @@ -22,7 +22,7 @@ export class SubscriptionService { this.stripe = new Stripe( this.configurationService.get('STRIPE_SECRET_KEY'), { - apiVersion: '2022-11-15' + apiVersion: '2024-04-10' } ); } diff --git a/package.json b/package.json index 9e3fa7b73..ffebe9b4c 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "@prisma/client": "5.15.0", "@simplewebauthn/browser": "9.0.1", "@simplewebauthn/server": "9.0.3", - "@stripe/stripe-js": "1.47.0", + "@stripe/stripe-js": "3.5.0", "alphavantage": "2.2.0", "big.js": "6.2.1", "body-parser": "1.20.2", @@ -121,7 +121,7 @@ "ngx-device-detector": "5.0.1", "ngx-markdown": "17.1.1", "ngx-skeleton-loader": "7.0.0", - "ngx-stripe": "15.5.0", + "ngx-stripe": "18.0.0", "papaparse": "5.3.1", "passport": "0.7.0", "passport-google-oauth20": "2.0.0", @@ -129,7 +129,7 @@ "prisma": "5.15.0", "reflect-metadata": "0.1.13", "rxjs": "7.5.6", - "stripe": "11.12.0", + "stripe": "15.11.0", "svgmap": "2.6.0", "twitter-api-v2": "1.14.2", "uuid": "9.0.1", diff --git a/yarn.lock b/yarn.lock index 610519b22..227bde2bf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7420,10 +7420,10 @@ "@types/express" "^4.7.0" file-system-cache "2.3.0" -"@stripe/stripe-js@1.47.0": - version "1.47.0" - resolved "https://registry.yarnpkg.com/@stripe/stripe-js/-/stripe-js-1.47.0.tgz#48626a2e43302330aa826ce498a2d9761db4053d" - integrity sha512-jKSClqEIKS2MbPCXlSsseDSZyJ3dVrfUrYMz5LBY1o9iS2tfKbpTZACt8r2g+xyQozI+uHr76pVTyFsmBKA4Mg== +"@stripe/stripe-js@3.5.0": + version "3.5.0" + resolved "https://registry.yarnpkg.com/@stripe/stripe-js/-/stripe-js-3.5.0.tgz#7fff3d9d931e972c24dcc8ee25f7481a58879b2b" + integrity sha512-pKS3wZnJoL1iTyGBXAvCwduNNeghJHY6QSRSNNvpYnrrQrLZ6Owsazjyynu0e0ObRgks0i7Rv+pe2M7/MBTZpQ== "@swc/core-darwin-arm64@1.3.95": version "1.3.95" @@ -16308,10 +16308,10 @@ ngx-skeleton-loader@7.0.0: perf-marks "^1.13.4" tslib "^2.0.0" -ngx-stripe@15.5.0: - version "15.5.0" - resolved "https://registry.yarnpkg.com/ngx-stripe/-/ngx-stripe-15.5.0.tgz#b05fc1cf9f55bb5e7f307ac5cfdf29807a2f48a9" - integrity sha512-Ut3JANfxSzl/4qy+pokHOXGVITgNSlSMv7XGN2Y4tPDk6BVUD9SSl/3VuXW9UdbKAmX0XS68nRACiKCOSet5zw== +ngx-stripe@18.0.0: + version "18.0.0" + resolved "https://registry.yarnpkg.com/ngx-stripe/-/ngx-stripe-18.0.0.tgz#bcd0932426688c89084a22670a87c868a1ae65a7" + integrity sha512-AT67vLeqEUDMnK5TfEaorumYJyOWqecbrh/1UWNtN8vF6Yzb0L/Dty3ANAa/QQi0OvBg6gXrudrhEnT8pT5lng== dependencies: tslib "^2.3.0" @@ -19170,10 +19170,10 @@ strip-json-comments@^3.0.1, strip-json-comments@^3.1.1: resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== -stripe@11.12.0: - version "11.12.0" - resolved "https://registry.yarnpkg.com/stripe/-/stripe-11.12.0.tgz#2d7d4c37a6447a972128b1266e027693241704e3" - integrity sha512-7yzFyVV/eYpYalfjnw1f9sh/N3r5QVdx5MFtmpOg2QikKVAW4AptXC8P0wj1KNCd/LIo23nTDo0+m9788jHswg== +stripe@15.11.0: + version "15.11.0" + resolved "https://registry.yarnpkg.com/stripe/-/stripe-15.11.0.tgz#c50a682a1df34719c03674f5d0ccc37a661049fd" + integrity sha512-qmZF0PN1jRVpiQrXL8eTb9Jy/6S+aUlcDquKBFT2h3PkaD7RZ444FIojVXUg67FK2zFIUNXgMv02c7csdL5qHg== dependencies: "@types/node" ">=8.1.0" qs "^6.11.0" From f96f861341df836a220bfb023a5b084c99368df1 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 18 Jun 2024 20:53:03 +0200 Subject: [PATCH 81/83] Feature/upgrade ngx markdown to version 18.0.0 (#3498) * Upgrade ngx-markdown to version 18.0.0 * Update changelog --- CHANGELOG.md | 2 ++ package.json | 4 ++-- yarn.lock | 16 ++++++++-------- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba52f3018..84858d189 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved the error handling in the biometric authentication registration - Set up SSL for local development - Upgraded the _Stripe_ dependencies +- Upgraded `marked` from version `9.1.6` to `13.0.0` +- Upgraded `ngx-markdown` from version `17.1.1` to `18.0.0` ## 2.89.0 - 2024-06-14 diff --git a/package.json b/package.json index ffebe9b4c..bbe401515 100644 --- a/package.json +++ b/package.json @@ -115,11 +115,11 @@ "ionicons": "7.4.0", "jsonpath": "1.1.1", "lodash": "4.17.21", - "marked": "9.1.6", + "marked": "13.0.0", "ms": "3.0.0-canary.1", "ng-extract-i18n-merge": "2.12.0", "ngx-device-detector": "5.0.1", - "ngx-markdown": "17.1.1", + "ngx-markdown": "18.0.0", "ngx-skeleton-loader": "7.0.0", "ngx-stripe": "18.0.0", "papaparse": "5.3.1", diff --git a/yarn.lock b/yarn.lock index 227bde2bf..c7741864e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15615,10 +15615,10 @@ markdown-to-jsx@^7.1.8: resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.3.2.tgz#f286b4d112dad3028acc1e77dfe1f653b347e131" integrity sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q== -marked@9.1.6: - version "9.1.6" - resolved "https://registry.yarnpkg.com/marked/-/marked-9.1.6.tgz#5d2a3f8180abfbc5d62e3258a38a1c19c0381695" - integrity sha512-jcByLnIFkd5gSXZmjNvS1TlmRhCXZjIzHYlaGkPlLIekG55JDR2Z4va9tZwCiP+/RDERiNhMOFu01xd6O5ct1Q== +marked@13.0.0: + version "13.0.0" + resolved "https://registry.yarnpkg.com/marked/-/marked-13.0.0.tgz#c18cda8a1fd0055859060c971e30f57beb79fd46" + integrity sha512-VTeDCd9txf4KLLljUZ0nljE/Incb9SrWuueE44QVuU0pkOdh4sfCeW1Z6lPcxyDRSVY6rm8db/0OPaN75RNUmw== mdast-util-definitions@^4.0.0: version "4.0.0" @@ -16287,10 +16287,10 @@ ngx-device-detector@5.0.1: dependencies: tslib "^2.0.0" -ngx-markdown@17.1.1: - version "17.1.1" - resolved "https://registry.yarnpkg.com/ngx-markdown/-/ngx-markdown-17.1.1.tgz#6e9c34fe8d470621b4609d68e8a403efb72b4e66" - integrity sha512-BGNWGJ6tmfPx+ScZFq5qeGLgWJwsakjScZ2e+oUzm+97DAHpIHSl8gptNZvZgRhOiFdjLcKBcuY2Rz8WB6J6UQ== +ngx-markdown@18.0.0: + version "18.0.0" + resolved "https://registry.yarnpkg.com/ngx-markdown/-/ngx-markdown-18.0.0.tgz#68435d7b6b82906b442bcd7d10ebd763389e0887" + integrity sha512-sFR9dIOKobdhNKZTlCrX3RmpoAhZ7k3T9h7oWJP676Oe9BsoxuAYZKJmFDT20vrY6xmFD3WtLJDZR7rNRLf6Uw== dependencies: tslib "^2.3.0" optionalDependencies: From 8642b1a7af515b2b150395f220dfefe8fe1e1766 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 19 Jun 2024 13:52:05 +0200 Subject: [PATCH 82/83] Feature/upgrade zone.js to version 0.14.7 (#3501) * Upgrade zone.js to version 0.14.7 * Update changelog --- CHANGELOG.md | 1 + package.json | 2 +- yarn.lock | 10 ++++------ 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 84858d189..64a453634 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 - Upgraded the _Stripe_ dependencies - Upgraded `marked` from version `9.1.6` to `13.0.0` - Upgraded `ngx-markdown` from version `17.1.1` to `18.0.0` +- Upgraded `zone.js` from version `0.14.5` to `0.14.7` ## 2.89.0 - 2024-06-14 diff --git a/package.json b/package.json index bbe401515..de40b7af0 100644 --- a/package.json +++ b/package.json @@ -134,7 +134,7 @@ "twitter-api-v2": "1.14.2", "uuid": "9.0.1", "yahoo-finance2": "2.11.3", - "zone.js": "0.14.5" + "zone.js": "0.14.7" }, "devDependencies": { "@angular-devkit/build-angular": "18.0.3", diff --git a/yarn.lock b/yarn.lock index c7741864e..46e934eec 100644 --- a/yarn.lock +++ b/yarn.lock @@ -20756,12 +20756,10 @@ yocto-queue@^1.0.0: resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== -zone.js@0.14.5: - version "0.14.5" - resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.14.5.tgz#7f3591dc4cad1a030cda86b03d10450b719dd460" - integrity sha512-9XYWZzY6PhHOSdkYryNcMm7L8EK7a4q+GbTvxbIA2a9lMdRUpGuyaYvLDcg8D6bdn+JomSsbPcilVKg6SmUx6w== - dependencies: - tslib "^2.3.0" +zone.js@0.14.7: + version "0.14.7" + resolved "https://registry.yarnpkg.com/zone.js/-/zone.js-0.14.7.tgz#4a9a70599109663b1921165663bbac521995eef3" + integrity sha512-0w6DGkX2BPuiK/NLf+4A8FLE43QwBfuqz2dVgi/40Rj1WmqUskCqj329O/pwrqFJLG5X8wkeG2RhIAro441xtg== zone.js@~0.10.3: version "0.10.3" From 09613f93244ae5995a8ff92e710a9a45c3d2daf8 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 20 Jun 2024 17:45:31 +0200 Subject: [PATCH 83/83] Feature/extend self hosting faq by mobile app question (#3500) * Add question about mobile app * Update changelog --- CHANGELOG.md | 1 + .../pages/faq/self-hosting/self-hosting-page.html | 15 +++++++++++++++ 2 files changed, 16 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64a453634..0d78b059d 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 ### Added - Added a dialog for the benchmarks in the markets overview +- Extended the content of the _Self-Hosting_ section by the mobile app question on the Frequently Asked Questions (FAQ) page ### Changed diff --git a/apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html b/apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html index 4445495fd..9892d160e 100644 --- a/apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html +++ b/apps/client/src/app/pages/faq/self-hosting/self-hosting-page.html @@ -148,6 +148,21 @@ and desktop computers. + + + Is there a mobile app for the self-hosting version of Ghostfolio + available in the app store? + + No, there is no mobile app for the self-hosting version of Ghostfolio + available in the app store. However, you can add the web app to your + home screen (e.g. by selecting Add to Home screen in + Google Chrome), which provides the same user + experience. +