From 6d9191a46f28261f7c02f72cb5de69c8a0ac5d21 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Fri, 22 Sep 2023 20:26:45 +0200 Subject: [PATCH] Feature/setup turkish (#2300) * Setup Turkish * Add Turkish translations * Update changelog --------- Co-authored-by: sadmimye <134071831+sadmimye@users.noreply.github.com> --- CHANGELOG.md | 6 + apps/api/src/assets/sitemap.xml | 4 + .../middlewares/html-template.middleware.ts | 3 +- apps/client/project.json | 14 +- apps/client/src/app/app.component.html | 5 + .../src/app/pages/features/features-page.html | 2 +- .../user-account-page.component.ts | 3 +- .../pages/user-account/user-account-page.html | 4 + apps/client/src/locales/messages.de.xlf | 52 +- apps/client/src/locales/messages.es.xlf | 52 +- apps/client/src/locales/messages.fr.xlf | 52 +- apps/client/src/locales/messages.it.xlf | 52 +- apps/client/src/locales/messages.nl.xlf | 52 +- apps/client/src/locales/messages.pt.xlf | 52 +- apps/client/src/locales/messages.tr.xlf | 9541 +++++++++++++++++ apps/client/src/locales/messages.xlf | 50 +- libs/common/src/lib/config.ts | 3 +- libs/common/src/lib/helper.ts | 4 +- 18 files changed, 9778 insertions(+), 173 deletions(-) create mode 100644 apps/client/src/locales/messages.tr.xlf diff --git a/CHANGELOG.md b/CHANGELOG.md index 8694d30dc..71cd5ef90 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 + +- Set up the language localization for Türkçe (`tr`) + ## 2.4.0 - 2023-09-19 ### Added diff --git a/apps/api/src/assets/sitemap.xml b/apps/api/src/assets/sitemap.xml index 160a4f98e..52b2154e0 100644 --- a/apps/api/src/assets/sitemap.xml +++ b/apps/api/src/assets/sitemap.xml @@ -900,4 +900,8 @@ https://ghostfol.io/pt/sobre/politica-de-privacidade ${currentDate}T00:00:00+00:00 + + https://ghostfol.io/tr + ${currentDate}T00:00:00+00:00 + diff --git a/apps/api/src/middlewares/html-template.middleware.ts b/apps/api/src/middlewares/html-template.middleware.ts index ceb563fd6..2b7d24cb6 100644 --- a/apps/api/src/middlewares/html-template.middleware.ts +++ b/apps/api/src/middlewares/html-template.middleware.ts @@ -18,7 +18,8 @@ const descriptions = { fr: '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.', it: 'Ghostfolio è un dashboard di finanza personale per tenere traccia delle vostre attività come azioni, ETF o criptovalute su più piattaforme.', nl: 'Ghostfolio is een persoonlijk financieel dashboard om uw activa zoals aandelen, ETF’s of cryptocurrencies over meerdere platforms bij te houden.', - pt: 'Ghostfolio é um dashboard de finanças pessoais para acompanhar os seus activos como acções, ETFs ou criptomoedas em múltiplas plataformas.' + pt: 'Ghostfolio é um dashboard de finanças pessoais para acompanhar os seus activos como acções, ETFs ou criptomoedas em múltiplas plataformas.', + tr: '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.' }; const title = 'Ghostfolio – Open Source Wealth Management Software'; diff --git a/apps/client/project.json b/apps/client/project.json index 76da6bd1a..03cbde62d 100644 --- a/apps/client/project.json +++ b/apps/client/project.json @@ -63,6 +63,10 @@ "baseHref": "/pt/", "localize": ["pt"] }, + "development-tr": { + "baseHref": "/tr/", + "localize": ["tr"] + }, "production": { "fileReplacements": [ { @@ -165,6 +169,9 @@ "development-pt": { "browserTarget": "client:build:development-pt" }, + "development-tr": { + "browserTarget": "client:build:development-tr" + }, "production": { "browserTarget": "client:build:production" } @@ -182,7 +189,8 @@ "messages.fr.xlf", "messages.it.xlf", "messages.nl.xlf", - "messages.pt.xlf" + "messages.pt.xlf", + "messages.tr.xlf" ] } }, @@ -226,6 +234,10 @@ "pt": { "baseHref": "/pt/", "translation": "apps/client/src/locales/messages.pt.xlf" + }, + "tr": { + "baseHref": "/tr/", + "translation": "apps/client/src/locales/messages.tr.xlf" } }, "sourceLocale": "en" diff --git a/apps/client/src/app/app.component.html b/apps/client/src/app/app.component.html index b8dfbdb9c..76ccd3ed4 100644 --- a/apps/client/src/app/app.component.html +++ b/apps/client/src/app/app.component.html @@ -152,6 +152,11 @@
  • Português
  • + diff --git a/apps/client/src/app/pages/features/features-page.html b/apps/client/src/app/pages/features/features-page.html index 2495efdd3..c63fa9a49 100644 --- a/apps/client/src/app/pages/features/features-page.html +++ b/apps/client/src/app/pages/features/features-page.html @@ -245,7 +245,7 @@

    Multi-Language

    Use Ghostfolio in multiple languages: English, Dutch, French, - German, Italian, Portuguese and Spanish are currently + German, Italian, Portuguese, Spanish and Turkish are currently supported.

    diff --git a/apps/client/src/app/pages/user-account/user-account-page.component.ts b/apps/client/src/app/pages/user-account/user-account-page.component.ts index f59d1ed40..c02c8bdf1 100644 --- a/apps/client/src/app/pages/user-account/user-account-page.component.ts +++ b/apps/client/src/app/pages/user-account/user-account-page.component.ts @@ -66,7 +66,8 @@ export class UserAccountPageComponent implements OnDestroy, OnInit { 'fr', 'it', 'nl', - 'pt' + 'pt', + 'tr' ]; public price: number; public priceId: string; 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 39948a0b2..debd190c1 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 @@ -160,6 +160,10 @@ >Português (Community) + Türkçe (Community) diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index 624273d90..43da453a1 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -22,7 +22,7 @@ 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 - 169,170 + 172,173 @@ -1608,7 +1608,7 @@ Bitte gebe deinen Gutscheincode ein: apps/client/src/app/pages/user-account/user-account-page.component.ts - 262 + 263 @@ -1616,7 +1616,7 @@ Gutscheincode konnte nicht eingelöst werden apps/client/src/app/pages/user-account/user-account-page.component.ts - 272 + 273 @@ -1624,7 +1624,7 @@ Gutscheincode wurde eingelöst apps/client/src/app/pages/user-account/user-account-page.component.ts - 284 + 285 @@ -1632,7 +1632,7 @@ Neu laden apps/client/src/app/pages/user-account/user-account-page.component.ts - 285 + 286 @@ -1640,7 +1640,7 @@ Möchtest du diese Anmeldemethode wirklich löschen? apps/client/src/app/pages/user-account/user-account-page.component.ts - 331 + 332 @@ -1724,7 +1724,7 @@ Lokalität apps/client/src/app/pages/user-account/user-account-page.html - 169 + 173 @@ -1732,7 +1732,7 @@ Datums- und Zahlenformat apps/client/src/app/pages/user-account/user-account-page.html - 171 + 175 @@ -1744,7 +1744,7 @@ apps/client/src/app/pages/user-account/user-account-page.html - 223 + 227 @@ -1752,7 +1752,7 @@ Einloggen mit Fingerabdruck apps/client/src/app/pages/user-account/user-account-page.html - 240,242 + 244,246 @@ -1760,7 +1760,7 @@ Benutzer ID apps/client/src/app/pages/user-account/user-account-page.html - 273 + 277 @@ -1768,7 +1768,7 @@ Zugangsberechtigung apps/client/src/app/pages/user-account/user-account-page.html - 291 + 295 @@ -2864,7 +2864,7 @@ Experimentelle Funktionen apps/client/src/app/pages/user-account/user-account-page.html - 258 + 262 @@ -2912,7 +2912,7 @@ Aussehen apps/client/src/app/pages/user-account/user-account-page.html - 197 + 201 @@ -2920,7 +2920,7 @@ Automatisch apps/client/src/app/pages/user-account/user-account-page.html - 212 + 216 @@ -2928,7 +2928,7 @@ Hell apps/client/src/app/pages/user-account/user-account-page.html - 213 + 217 @@ -2936,7 +2936,7 @@ Dunkel apps/client/src/app/pages/user-account/user-account-page.html - 214 + 218 @@ -3222,6 +3222,10 @@ apps/client/src/app/pages/user-account/user-account-page.html 160 + + apps/client/src/app/pages/user-account/user-account-page.html + 164 + Activities Count @@ -3452,7 +3456,7 @@ Unbeschwertes Erlebnis für turbulente Zeiten apps/client/src/app/pages/user-account/user-account-page.html - 224,226 + 228,230 @@ -3460,7 +3464,7 @@ Vorschau auf kommende Funktionalität apps/client/src/app/pages/user-account/user-account-page.html - 259,261 + 263,265 @@ -3847,9 +3851,9 @@ 348 - - 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. The revenue is used to cover the hosting infrastructure and to fund the ongoing development of Ghostfolio. - Unser offizielles Ghostfolio Premium Cloud-Angebot ist der einfachste Weg für den Einstieg. Aufgrund der Zeitersparnis ist dies die beste Option für die meisten Nutzer. Die Einnahmen werden zur Deckung der Betriebskosten und zur Finanzierung der Weiterentwicklung von Ghostfolio verwendet. + + 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. + Unser offizielles Ghostfolio Premium Cloud-Angebot ist der einfachste Weg für den Einstieg. Aufgrund der Zeitersparnis ist dies die beste Option für die meisten Nutzer. Die Einnahmen werden zur Deckung der Betriebskosten und zur Finanzierung der Weiterentwicklung verwendet. apps/client/src/app/pages/pricing/pricing-page.html 6,11 @@ -7188,7 +7192,7 @@ Biometrische Authentifizierung apps/client/src/app/pages/user-account/user-account-page.html - 239 + 243 @@ -7272,7 +7276,7 @@ Daten exportieren apps/client/src/app/pages/user-account/user-account-page.html - 280 + 284 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index bfd6de5b5..3a615d0bd 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -23,7 +23,7 @@ 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 - 169,170 + 172,173 @@ -1606,7 +1606,7 @@ Por favor, ingresa tu código de cupón: apps/client/src/app/pages/user-account/user-account-page.component.ts - 262 + 263 @@ -1614,7 +1614,7 @@ No se puede canjear este código de cupón apps/client/src/app/pages/user-account/user-account-page.component.ts - 272 + 273 @@ -1622,7 +1622,7 @@ El codigo de cupón ha sido canjeado apps/client/src/app/pages/user-account/user-account-page.component.ts - 284 + 285 @@ -1630,7 +1630,7 @@ Refrescar apps/client/src/app/pages/user-account/user-account-page.component.ts - 285 + 286 @@ -1638,7 +1638,7 @@ ¿Estás seguro de eliminar este método de acceso? apps/client/src/app/pages/user-account/user-account-page.component.ts - 331 + 332 @@ -1722,7 +1722,7 @@ Ubicación apps/client/src/app/pages/user-account/user-account-page.html - 169 + 173 @@ -1730,7 +1730,7 @@ Formato de fecha y número apps/client/src/app/pages/user-account/user-account-page.html - 171 + 175 @@ -1742,7 +1742,7 @@ apps/client/src/app/pages/user-account/user-account-page.html - 223 + 227 @@ -1750,7 +1750,7 @@ Accede con huella digital apps/client/src/app/pages/user-account/user-account-page.html - 240,242 + 244,246 @@ -1758,7 +1758,7 @@ ID usuario apps/client/src/app/pages/user-account/user-account-page.html - 273 + 277 @@ -1766,7 +1766,7 @@ Acceso concedido apps/client/src/app/pages/user-account/user-account-page.html - 291 + 295 @@ -2862,7 +2862,7 @@ Funcionalidades experimentales apps/client/src/app/pages/user-account/user-account-page.html - 258 + 262 @@ -2910,7 +2910,7 @@ Apariencia apps/client/src/app/pages/user-account/user-account-page.html - 197 + 201 @@ -2918,7 +2918,7 @@ Automático apps/client/src/app/pages/user-account/user-account-page.html - 212 + 216 @@ -2926,7 +2926,7 @@ Claro apps/client/src/app/pages/user-account/user-account-page.html - 213 + 217 @@ -2934,7 +2934,7 @@ Oscuro apps/client/src/app/pages/user-account/user-account-page.html - 214 + 218 @@ -3220,6 +3220,10 @@ apps/client/src/app/pages/user-account/user-account-page.html 160 + + apps/client/src/app/pages/user-account/user-account-page.html + 164 + Activities Count @@ -3450,7 +3454,7 @@ Distraction-free experience for turbulent times apps/client/src/app/pages/user-account/user-account-page.html - 224,226 + 228,230 @@ -3458,7 +3462,7 @@ Sneak peek at upcoming functionality apps/client/src/app/pages/user-account/user-account-page.html - 259,261 + 263,265 @@ -3845,9 +3849,9 @@ 348 - - 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. The revenue is used to cover the hosting infrastructure and to fund the ongoing development of Ghostfolio. - 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. The revenue is used to cover the hosting infrastructure and to fund the ongoing development of Ghostfolio. + + 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,11 @@ -7186,7 +7190,7 @@ Biometric Authentication apps/client/src/app/pages/user-account/user-account-page.html - 239 + 243 @@ -7270,7 +7274,7 @@ Export Data apps/client/src/app/pages/user-account/user-account-page.html - 280 + 284 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index fd78f38c4..1ade12a0d 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -6,7 +6,7 @@ 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 - 169,170 + 172,173 @@ -1877,7 +1877,7 @@ Veuillez entrer votre code promotionnel : apps/client/src/app/pages/user-account/user-account-page.component.ts - 262 + 263 @@ -1885,7 +1885,7 @@ Le code promotionnel n'a pas pu être appliqué apps/client/src/app/pages/user-account/user-account-page.component.ts - 272 + 273 @@ -1893,7 +1893,7 @@ Le code promotionnel a été appliqué apps/client/src/app/pages/user-account/user-account-page.component.ts - 284 + 285 @@ -1901,7 +1901,7 @@ Rafraîchir apps/client/src/app/pages/user-account/user-account-page.component.ts - 285 + 286 @@ -1909,7 +1909,7 @@ Voulez-vous vraiment supprimer cette méthode de connexion ? apps/client/src/app/pages/user-account/user-account-page.component.ts - 331 + 332 @@ -2027,13 +2027,17 @@ apps/client/src/app/pages/user-account/user-account-page.html 160 + + apps/client/src/app/pages/user-account/user-account-page.html + 164 + Locale Paramètres régionaux apps/client/src/app/pages/user-account/user-account-page.html - 169 + 173 @@ -2041,7 +2045,7 @@ Format de date et d'heure apps/client/src/app/pages/user-account/user-account-page.html - 171 + 175 @@ -2049,7 +2053,7 @@ Apparence apps/client/src/app/pages/user-account/user-account-page.html - 197 + 201 @@ -2057,7 +2061,7 @@ Auto apps/client/src/app/pages/user-account/user-account-page.html - 212 + 216 @@ -2065,7 +2069,7 @@ Clair apps/client/src/app/pages/user-account/user-account-page.html - 213 + 217 @@ -2073,7 +2077,7 @@ Sombre apps/client/src/app/pages/user-account/user-account-page.html - 214 + 218 @@ -2085,7 +2089,7 @@ apps/client/src/app/pages/user-account/user-account-page.html - 223 + 227 @@ -2093,7 +2097,7 @@ Se connecter avec empreinte apps/client/src/app/pages/user-account/user-account-page.html - 240,242 + 244,246 @@ -2101,7 +2105,7 @@ Fonctionnalités expérimentales apps/client/src/app/pages/user-account/user-account-page.html - 258 + 262 @@ -2109,7 +2113,7 @@ ID d'utilisateur apps/client/src/app/pages/user-account/user-account-page.html - 273 + 277 @@ -2117,7 +2121,7 @@ Accès donné apps/client/src/app/pages/user-account/user-account-page.html - 291 + 295 @@ -3449,7 +3453,7 @@ Expérience sans distraction pour les périodes tumultueuses apps/client/src/app/pages/user-account/user-account-page.html - 224,226 + 228,230 @@ -3457,7 +3461,7 @@ Avant-première de fonctionnalités futures apps/client/src/app/pages/user-account/user-account-page.html - 259,261 + 263,265 @@ -3844,9 +3848,9 @@ 348 - - 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. The revenue is used to cover the hosting infrastructure and to fund the ongoing development of 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. + + 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. apps/client/src/app/pages/pricing/pricing-page.html 6,11 @@ -7185,7 +7189,7 @@ Biometric Authentication apps/client/src/app/pages/user-account/user-account-page.html - 239 + 243 @@ -7269,7 +7273,7 @@ Export Data apps/client/src/app/pages/user-account/user-account-page.html - 280 + 284 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index c539336dd..2740564e6 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -23,7 +23,7 @@ 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 - 169,170 + 172,173 @@ -1606,7 +1606,7 @@ Inserisci il tuo codice del buono: apps/client/src/app/pages/user-account/user-account-page.component.ts - 262 + 263 @@ -1614,7 +1614,7 @@ Impossibile riscattare il codice del buono apps/client/src/app/pages/user-account/user-account-page.component.ts - 272 + 273 @@ -1622,7 +1622,7 @@ Il codice del buono è stato riscattato apps/client/src/app/pages/user-account/user-account-page.component.ts - 284 + 285 @@ -1630,7 +1630,7 @@ Ricarica apps/client/src/app/pages/user-account/user-account-page.component.ts - 285 + 286 @@ -1638,7 +1638,7 @@ Vuoi davvero rimuovere questo metodo di accesso? apps/client/src/app/pages/user-account/user-account-page.component.ts - 331 + 332 @@ -1722,7 +1722,7 @@ Locale apps/client/src/app/pages/user-account/user-account-page.html - 169 + 173 @@ -1730,7 +1730,7 @@ Formato data e numero apps/client/src/app/pages/user-account/user-account-page.html - 171 + 175 @@ -1742,7 +1742,7 @@ apps/client/src/app/pages/user-account/user-account-page.html - 223 + 227 @@ -1750,7 +1750,7 @@ Accesso con impronta digitale apps/client/src/app/pages/user-account/user-account-page.html - 240,242 + 244,246 @@ -1758,7 +1758,7 @@ ID utente apps/client/src/app/pages/user-account/user-account-page.html - 273 + 277 @@ -1766,7 +1766,7 @@ Accesso concesso apps/client/src/app/pages/user-account/user-account-page.html - 291 + 295 @@ -2862,7 +2862,7 @@ Funzionalità sperimentali apps/client/src/app/pages/user-account/user-account-page.html - 258 + 262 @@ -2910,7 +2910,7 @@ Aspetto apps/client/src/app/pages/user-account/user-account-page.html - 197 + 201 @@ -2918,7 +2918,7 @@ Auto apps/client/src/app/pages/user-account/user-account-page.html - 212 + 216 @@ -2926,7 +2926,7 @@ Chiaro apps/client/src/app/pages/user-account/user-account-page.html - 213 + 217 @@ -2934,7 +2934,7 @@ Scuro apps/client/src/app/pages/user-account/user-account-page.html - 214 + 218 @@ -3220,6 +3220,10 @@ apps/client/src/app/pages/user-account/user-account-page.html 160 + + apps/client/src/app/pages/user-account/user-account-page.html + 164 + Activities Count @@ -3450,7 +3454,7 @@ Esperienza priva di distrazioni per i periodi più turbolenti apps/client/src/app/pages/user-account/user-account-page.html - 224,226 + 228,230 @@ -3458,7 +3462,7 @@ Un'anteprima delle funzionalità in arrivo apps/client/src/app/pages/user-account/user-account-page.html - 259,261 + 263,265 @@ -3845,9 +3849,9 @@ 348 - - 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. The revenue is used to cover the hosting infrastructure and to fund the ongoing development of Ghostfolio. - La nostra offerta cloud ufficiale Ghostfolio Premium è il modo più semplice per iniziare. Grazie al risparmio di tempo, questa è l'opzione migliore per la maggior parte delle persone. I ricavi vengono utilizzati per coprire l'infrastruttura di hosting e per finanziare lo sviluppo continuo di Ghostfolio. + + 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. + La nostra offerta cloud ufficiale Ghostfolio Premium è il modo più semplice per iniziare. Grazie al risparmio di tempo, questa è l'opzione migliore per la maggior parte delle persone. I ricavi vengono utilizzati per coprire l'infrastruttura di hosting e per finanziare lo sviluppo continuo di Ghostfolio. apps/client/src/app/pages/pricing/pricing-page.html 6,11 @@ -7186,7 +7190,7 @@ Autenticazione biometrica apps/client/src/app/pages/user-account/user-account-page.html - 239 + 243 @@ -7270,7 +7274,7 @@ Esporta dati apps/client/src/app/pages/user-account/user-account-page.html - 280 + 284 diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 295184644..a146eb5b9 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -22,7 +22,7 @@ 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 - 169,170 + 172,173 @@ -1605,7 +1605,7 @@ Voer je couponcode in: apps/client/src/app/pages/user-account/user-account-page.component.ts - 262 + 263 @@ -1613,7 +1613,7 @@ Kon je kortingscode niet inwisselen apps/client/src/app/pages/user-account/user-account-page.component.ts - 272 + 273 @@ -1621,7 +1621,7 @@ Je couponcode is ingewisseld apps/client/src/app/pages/user-account/user-account-page.component.ts - 284 + 285 @@ -1629,7 +1629,7 @@ Herladen apps/client/src/app/pages/user-account/user-account-page.component.ts - 285 + 286 @@ -1637,7 +1637,7 @@ Wil je deze aanmeldingsmethode echt verwijderen? apps/client/src/app/pages/user-account/user-account-page.component.ts - 331 + 332 @@ -1721,7 +1721,7 @@ Locatie apps/client/src/app/pages/user-account/user-account-page.html - 169 + 173 @@ -1729,7 +1729,7 @@ Datum- en getalnotatie apps/client/src/app/pages/user-account/user-account-page.html - 171 + 175 @@ -1741,7 +1741,7 @@ apps/client/src/app/pages/user-account/user-account-page.html - 223 + 227 @@ -1749,7 +1749,7 @@ Aanmelden met vingerafdruk apps/client/src/app/pages/user-account/user-account-page.html - 240,242 + 244,246 @@ -1757,7 +1757,7 @@ Gebruikers-ID apps/client/src/app/pages/user-account/user-account-page.html - 273 + 277 @@ -1765,7 +1765,7 @@ Verleende toegang apps/client/src/app/pages/user-account/user-account-page.html - 291 + 295 @@ -2861,7 +2861,7 @@ Experimentele functies apps/client/src/app/pages/user-account/user-account-page.html - 258 + 262 @@ -2909,7 +2909,7 @@ Weergave apps/client/src/app/pages/user-account/user-account-page.html - 197 + 201 @@ -2917,7 +2917,7 @@ Automatisch apps/client/src/app/pages/user-account/user-account-page.html - 212 + 216 @@ -2925,7 +2925,7 @@ Licht apps/client/src/app/pages/user-account/user-account-page.html - 213 + 217 @@ -2933,7 +2933,7 @@ Donker apps/client/src/app/pages/user-account/user-account-page.html - 214 + 218 @@ -3219,6 +3219,10 @@ apps/client/src/app/pages/user-account/user-account-page.html 160 + + apps/client/src/app/pages/user-account/user-account-page.html + 164 + Activities Count @@ -3449,7 +3453,7 @@ Afleidingsvrije ervaring voor roerige tijden apps/client/src/app/pages/user-account/user-account-page.html - 224,226 + 228,230 @@ -3457,7 +3461,7 @@ Voorproefje van nieuwe functionaliteit apps/client/src/app/pages/user-account/user-account-page.html - 259,261 + 263,265 @@ -3844,9 +3848,9 @@ 348 - - 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. The revenue is used to cover the hosting infrastructure and to fund the ongoing development of Ghostfolio. - Ons officiële Ghostfolio Premium cloud-aanbod is de eenvoudigste manier om te beginnen. Vanwege de tijd die het bespaart, zal dit voor de meeste mensen de beste optie zijn. De inkomsten worden gebruikt om de hostinginfrastructuur te dekken en de voortdurende ontwikkeling van Ghostfolio te financieren. + + 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. + Ons officiële Ghostfolio Premium cloud-aanbod is de eenvoudigste manier om te beginnen. Vanwege de tijd die het bespaart, zal dit voor de meeste mensen de beste optie zijn. De inkomsten worden gebruikt om de hostinginfrastructuur te dekken en de voortdurende ontwikkeling van Ghostfolio te financieren. apps/client/src/app/pages/pricing/pricing-page.html 6,11 @@ -7185,7 +7189,7 @@ Biometrische authenticatie apps/client/src/app/pages/user-account/user-account-page.html - 239 + 243 @@ -7269,7 +7273,7 @@ Exporteer Data apps/client/src/app/pages/user-account/user-account-page.html - 280 + 284 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index 689f2b292..a9abda1af 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -6,7 +6,7 @@ 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 - 169,170 + 172,173 @@ -1861,7 +1861,7 @@ Por favor, insira o seu código de cupão: apps/client/src/app/pages/user-account/user-account-page.component.ts - 262 + 263 @@ -1869,7 +1869,7 @@ Não foi possível resgatar o código de cupão apps/client/src/app/pages/user-account/user-account-page.component.ts - 272 + 273 @@ -1877,7 +1877,7 @@ Código de cupão foi resgatado apps/client/src/app/pages/user-account/user-account-page.component.ts - 284 + 285 @@ -1885,7 +1885,7 @@ Atualizar apps/client/src/app/pages/user-account/user-account-page.component.ts - 285 + 286 @@ -1893,7 +1893,7 @@ Deseja realmente remover este método de início de sessão? apps/client/src/app/pages/user-account/user-account-page.component.ts - 331 + 332 @@ -1997,7 +1997,7 @@ Localidade apps/client/src/app/pages/user-account/user-account-page.html - 169 + 173 @@ -2005,7 +2005,7 @@ Formato de números e datas apps/client/src/app/pages/user-account/user-account-page.html - 171 + 175 @@ -2017,7 +2017,7 @@ apps/client/src/app/pages/user-account/user-account-page.html - 223 + 227 @@ -2025,7 +2025,7 @@ Aparência apps/client/src/app/pages/user-account/user-account-page.html - 197 + 201 @@ -2033,7 +2033,7 @@ Auto apps/client/src/app/pages/user-account/user-account-page.html - 212 + 216 @@ -2041,7 +2041,7 @@ Claro apps/client/src/app/pages/user-account/user-account-page.html - 213 + 217 @@ -2049,7 +2049,7 @@ Escuro apps/client/src/app/pages/user-account/user-account-page.html - 214 + 218 @@ -2057,7 +2057,7 @@ Iniciar sessão com impressão digital apps/client/src/app/pages/user-account/user-account-page.html - 240,242 + 244,246 @@ -2065,7 +2065,7 @@ Funcionalidades Experimentais apps/client/src/app/pages/user-account/user-account-page.html - 258 + 262 @@ -2073,7 +2073,7 @@ ID do Utilizador apps/client/src/app/pages/user-account/user-account-page.html - 273 + 277 @@ -2081,7 +2081,7 @@ Acesso Concedido apps/client/src/app/pages/user-account/user-account-page.html - 291 + 295 @@ -3275,6 +3275,10 @@ apps/client/src/app/pages/user-account/user-account-page.html 160 + + apps/client/src/app/pages/user-account/user-account-page.html + 164 + Market Data @@ -3449,7 +3453,7 @@ Experiência sem distrações para tempos turbulentos apps/client/src/app/pages/user-account/user-account-page.html - 224,226 + 228,230 @@ -3457,7 +3461,7 @@ Acesso antecipado a funcionalidades futuras apps/client/src/app/pages/user-account/user-account-page.html - 259,261 + 263,265 @@ -3844,9 +3848,9 @@ 348 - - 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. The revenue is used to cover the hosting infrastructure and to fund the ongoing development of Ghostfolio. - A nossa oferta oficial Ghostfolio Premium na nuvem é a maneira mais fácil de começar. Com o tempo que poupa, esta será a melhor opção para a maioria das pessoas. A receita é utilizada para cobrir a infraestrutura de hospedagem e financiar o desenvolvimento contínuo do Ghostfolio. + + 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. + A nossa oferta oficial Ghostfolio Premium na nuvem é a maneira mais fácil de começar. Com o tempo que poupa, esta será a melhor opção para a maioria das pessoas. A receita é utilizada para cobrir a infraestrutura de hospedagem e financiar o desenvolvimento contínuo do Ghostfolio. apps/client/src/app/pages/pricing/pricing-page.html 6,11 @@ -7185,7 +7189,7 @@ Biometric Authentication apps/client/src/app/pages/user-account/user-account-page.html - 239 + 243 @@ -7269,7 +7273,7 @@ Export Data apps/client/src/app/pages/user-account/user-account-page.html - 280 + 284 diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf new file mode 100644 index 000000000..493726879 --- /dev/null +++ b/apps/client/src/locales/messages.tr.xlf @@ -0,0 +1,9541 @@ + + + + + about + hakkinda + + apps/client/src/app/app-routing.module.ts + 8 + + + apps/client/src/app/app.component.ts + 48 + + + apps/client/src/app/app.component.ts + 49 + + + apps/client/src/app/app.component.ts + 50 + + + apps/client/src/app/app.component.ts + 52 + + + apps/client/src/app/components/header/header.component.ts + 46 + + + apps/client/src/app/components/header/header.component.ts + 51 + + + apps/client/src/app/pages/about/about-page.component.ts + 44 + + + apps/client/src/app/pages/about/about-page.component.ts + 49 + + + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + apps/client/src/app/pages/about/about-page.component.ts + 73 + + + 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/landing/landing-page.component.ts + 25 + + + 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/products/altoo-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 25 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 25 + + + + faq + sss + + apps/client/src/app/app-routing.module.ts + 9 + + + apps/client/src/app/app.component.ts + 55 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 20 + + + + features + oezellikler + + apps/client/src/app/app-routing.module.ts + 10 + + + apps/client/src/app/app.component.ts + 56 + + + apps/client/src/app/components/header/header.component.ts + 47 + + + apps/client/src/app/components/header/header.component.ts + 52 + + + apps/client/src/app/pages/about/overview/about-overview-page.component.ts + 21 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 14 + + + 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/faq/faq-page.component.ts + 13 + + + apps/client/src/app/pages/pricing/pricing-page.component.ts + 34 + + + 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/copilot-money-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/exirio-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/justetf-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/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/monse-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/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/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/sumio-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/yeekatee-page.component.ts + 26 + + + + license + lisans + + apps/client/src/app/app-routing.module.ts + 11 + + + apps/client/src/app/app.component.ts + 50 + + + apps/client/src/app/pages/about/about-page.component.ts + 54 + + + + markets + piyasalar + + apps/client/src/app/app-routing.module.ts + 12 + + + apps/client/src/app/app.component.ts + 57 + + + apps/client/src/app/components/header/header.component.ts + 48 + + + apps/client/src/app/components/header/header.component.ts + 53 + + + 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/faq-page.component.ts + 14 + + + + pricing + fiyatlandirma + + apps/client/src/app/app-routing.module.ts + 13 + + + apps/client/src/app/app.component.ts + 58 + + + apps/client/src/app/components/header/header.component.ts + 49 + + + apps/client/src/app/components/header/header.component.ts + 54 + + + apps/client/src/app/components/home-summary/home-summary.component.ts + 124 + + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.component.ts + 14 + + + apps/client/src/app/core/http-response.interceptor.ts + 80 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/01/first-months-in-open-source/first-months-in-open-source-page.component.ts + 13 + + + apps/client/src/app/pages/blog/2022/08/500-stars-on-github/500-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.component.ts + 15 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.component.ts + 14 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 15 + + + + privacy-policy + gizlilik-politikasi + + apps/client/src/app/app-routing.module.ts + 14 + + + apps/client/src/app/app.component.ts + 53 + + + apps/client/src/app/pages/about/about-page.component.ts + 62 + + + + register + kayit-ol + + apps/client/src/app/app-routing.module.ts + 15 + + + apps/client/src/app/app.component.ts + 59 + + + apps/client/src/app/components/header/header.component.ts + 55 + + + apps/client/src/app/core/auth.guard.ts + 53 + + + apps/client/src/app/pages/faq/faq-page.component.ts + 16 + + + apps/client/src/app/pages/features/features-page.component.ts + 17 + + + apps/client/src/app/pages/landing/landing-page.component.ts + 26 + + + apps/client/src/app/pages/pricing/pricing-page.component.ts + 35 + + + + resources + kaynaklar + + apps/client/src/app/app-routing.module.ts + 16 + + + apps/client/src/app/app.component.ts + 60 + + + apps/client/src/app/components/header/header.component.ts + 50 + + + apps/client/src/app/components/header/header.component.ts + 56 + + + 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/resources/personal-finance-tools/personal-finance-tools-page.component.ts + 14 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/altoo-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/copilot-money-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/delta-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/divvydiary-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/exirio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/folishare-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/getquin-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/gospatz-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/justetf-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/kubera-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/markets.sh-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/maybe-finance-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/monse-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/parqet-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/plannix-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portfolio-dividend-tracker-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/portseido-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/projectionlab-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/seeking-alpha-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sharesight-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/simple-portfolio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/snowball-analytics-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/sumio-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/utluna-page.component.ts + 28 + + + apps/client/src/app/pages/resources/personal-finance-tools/products/yeekatee-page.component.ts + 28 + + + apps/client/src/app/pages/resources/resources-page.component.ts + 17 + + + + Personal Finance + Kişisel Finans + + apps/client/src/app/app.component.html + 54 + + + + Markets + Piyasalar + + apps/client/src/app/app.component.html + 57 + + + apps/client/src/app/components/header/header.component.html + 320 + + + apps/client/src/app/components/home-market/home-market.html + 2 + + + apps/client/src/app/pages/resources/resources-page.html + 39 + + + + Resources + Piyasalar + + apps/client/src/app/app.component.html + 59 + + + apps/client/src/app/components/header/header.component.html + 79 + + + apps/client/src/app/components/header/header.component.html + 223 + + + apps/client/src/app/pages/resources/resources-page.html + 4 + + + + About + Hakkında + + apps/client/src/app/app.component.html + 65 + + + apps/client/src/app/components/header/header.component.html + 110 + + + apps/client/src/app/components/header/header.component.html + 291 + + + + Blog + Blog + + apps/client/src/app/app.component.html + 67 + + + apps/client/src/app/pages/blog/2021/07/hallo-ghostfolio/hallo-ghostfolio-page.html + 203 + + + apps/client/src/app/pages/blog/2021/07/hello-ghostfolio/hello-ghostfolio-page.html + 183 + + + 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/blog/2022/07/ghostfolio-meets-internet-identity/ghostfolio-meets-internet-identity-page.html + 183 + + + 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/blog/2022/08/500-stars-on-github/500-stars-on-github-page.html + 195 + + + apps/client/src/app/pages/blog/2022/10/hacktoberfest-2022/hacktoberfest-2022-page.html + 181 + + + apps/client/src/app/pages/blog/2022/11/black-friday-2022/black-friday-2022-page.html + 139 + + + 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/blog/2023/01/ghostfolio-auf-sackgeld-vorgestellt/ghostfolio-auf-sackgeld-vorgestellt-page.html + 178 + + + apps/client/src/app/pages/blog/2023/02/ghostfolio-meets-umbrel/ghostfolio-meets-umbrel-page.html + 202 + + + apps/client/src/app/pages/blog/2023/03/1000-stars-on-github/1000-stars-on-github-page.html + 252 + + + 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/blog/2023/07/exploring-the-path-to-fire/exploring-the-path-to-fire-page.html + 243 + + + apps/client/src/app/pages/blog/2023/08/ghostfolio-joins-oss-friends/ghostfolio-joins-oss-friends-page.html + 154 + + + apps/client/src/app/pages/blog/2023/09/ghostfolio-2/ghostfolio-2-page.html + 273 + + + apps/client/src/app/pages/blog/blog-page.html + 5 + + + + Changelog + Değişiklik Günlüğü + + apps/client/src/app/app.component.html + 70 + + + apps/client/src/app/pages/about/changelog/changelog-page.html + 4 + + + + Features + Özellikler + + apps/client/src/app/app.component.html + 72 + + + apps/client/src/app/components/header/header.component.html + 278 + + + apps/client/src/app/pages/features/features-page.html + 5 + + + + Frequently Asked Questions (FAQ) + Sıkça Sorulan Sorular (SSS) + + apps/client/src/app/app.component.html + 75 + + + + License + Lisans + + apps/client/src/app/app.component.html + 79 + + + apps/client/src/app/pages/about/license/license-page.html + 4 + + + + Pricing + Fiyatlandırma + + apps/client/src/app/app.component.html + 85 + + + apps/client/src/app/components/header/header.component.html + 97 + + + apps/client/src/app/components/header/header.component.html + 235 + + + apps/client/src/app/components/header/header.component.html + 304 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 179 + + + + Privacy Policy + Gizlilik Politikası + + apps/client/src/app/app.component.html + 89 + + + apps/client/src/app/pages/about/privacy-policy/privacy-policy-page.html + 4 + + + + Community + Topluluk + + apps/client/src/app/app.component.html + 104 + + + apps/client/src/app/pages/features/features-page.html + 259 + + + apps/client/src/app/pages/user-account/user-account-page.html + 144 + + + apps/client/src/app/pages/user-account/user-account-page.html + 148 + + + apps/client/src/app/pages/user-account/user-account-page.html + 152 + + + apps/client/src/app/pages/user-account/user-account-page.html + 156 + + + apps/client/src/app/pages/user-account/user-account-page.html + 160 + + + apps/client/src/app/pages/user-account/user-account-page.html + 164 + + + + 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 + 172,173 + + + + Alias + Takma Ad + + apps/client/src/app/components/access-table/access-table.component.html + 15 + + + apps/client/src/app/pages/user-account/create-or-update-access-dialog/create-or-update-access-dialog.html + 6 + + + + Grantee + Hibe Alan / Alıcı + + apps/client/src/app/components/access-table/access-table.component.html + 22 + + + + Type + Tip + + apps/client/src/app/components/access-table/access-table.component.html + 29 + + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 20 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 12 + + + apps/client/src/app/pages/user-account/create-or-update-access-dialog/create-or-update-access-dialog.html + 17 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 156 + + + + Details + Ayrıntılar + + apps/client/src/app/components/access-table/access-table.component.html + 39 + + + + Revoke + Geri Al + + apps/client/src/app/components/access-table/access-table.component.html + 66 + + + + 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 + + + + Cash Balance + Nakit Bakiye + + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 32 + + + apps/client/src/app/components/accounts-table/accounts-table.component.html + 110 + + + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 23 + + + + Equity + Menkul Kıymet + + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 43 + + + + Platform + Platform + + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 52 + + + apps/client/src/app/components/accounts-table/accounts-table.component.html + 65 + + + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 36 + + + + Activities + İşlemler + + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 48 + + + apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html + 58 + + + apps/client/src/app/components/accounts-table/accounts-table.component.html + 93 + + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 88 + + + apps/client/src/app/components/admin-users/admin-users.html + 23 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 249 + + + apps/client/src/app/pages/portfolio/activities/activities-page.html + 4 + + + + Name + Ad + + apps/client/src/app/components/accounts-table/accounts-table.component.html + 22 + + + 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 + 7 + + + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 7 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 109 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 208 + + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 28 + + + + Total + Toplam + + apps/client/src/app/components/accounts-table/accounts-table.component.html + 38 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 151 + + + + Currency + Para Birimi + + apps/client/src/app/components/accounts-table/accounts-table.component.html + 48 + + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 69 + + + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 13 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 115 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 238 + + + + Value + Değer + + apps/client/src/app/components/accounts-table/accounts-table.component.html + 145 + + + apps/client/src/app/components/accounts-table/accounts-table.component.html + 180 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 163 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 164 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 166 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 219 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 220 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 221 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 222 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 350 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 385 + + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 74 + + + + Edit + Düzenle + + apps/client/src/app/components/accounts-table/accounts-table.component.html + 246 + + + apps/client/src/app/components/admin-platform/admin-platform.component.html + 90 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 527 + + + + Delete + Sil + + apps/client/src/app/components/accounts-table/accounts-table.component.html + 254 + + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 151 + + + apps/client/src/app/components/admin-platform/admin-platform.component.html + 94 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 543 + + + + Do you really want to delete this account? + Bu hesabı silmeyi gerçekten istiyor musunuz? + + apps/client/src/app/components/accounts-table/accounts-table.component.ts + 82 + + + + Symbol + Sembol + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 21 + + + 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 + 64 + + + + Data Source + Veri Kaynağı + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 22 + + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 33 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 125 + + + + Attempts + Deneme + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 23 + + + + Created + Oluşturuldu + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 24 + + + + Finished + Tamamlandı + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 25 + + + + Status + Durum + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 26 + + + + Delete Jobs + İşleri Sil + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 38 + + + + Asset Profile + Varlık Profili + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 55 + + + + Historical Market Data + Tarihsel Piyasa Verisi + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 60 + + + + View Data + Veri Gör + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 115 + + + + View Stacktrace + Hata İzini Görüntüle + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 122 + + + + Delete Job + İşleri Sil + + apps/client/src/app/components/admin-jobs/admin-jobs.html + 125 + + + + Details for + Detaylar + + 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/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 + 131 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 144 + + + + Market Price + Piyasa Fiyatı + + apps/client/src/app/components/admin-market-data-detail/market-data-detail-dialog/market-data-detail-dialog.html + 26 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 81 + + + + Cancel + İptal + + 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 + 191 + + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 18 + + + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 19 + + + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 79 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 357 + + + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 37 + + + apps/client/src/app/pages/user-account/create-or-update-access-dialog/create-or-update-access-dialog.html + 25 + + + + Save + Kaydet + + 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 + 198 + + + apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 25 + + + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 26 + + + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 86 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 364 + + + apps/client/src/app/pages/user-account/create-or-update-access-dialog/create-or-update-access-dialog.html + 32 + + + + Currencies + Para Birimleri + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 65 + + + + ETFs without Countries + Ülkesi Olmayan ETF'ler + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 70 + + + + ETFs without Sectors + Sektörü Olmayan ETF'ler + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 75 + + + + Filter by... + Filtrele... + + apps/client/src/app/components/admin-market-data/admin-market-data.component.ts + 269 + + + + Asset Class + Varlık Sınıfı + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 42 + + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 93 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 172 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 286 + + + + Asset Sub Class + Varlık Alt Sınıfı + + 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 + 102 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 181 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 302 + + + + First Activity + İlk İşlem + + 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 + 79 + + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 50 + + + + Activities Count + İşlem Sayısı + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 69 + + + + Historical Data + Tarihsel Veri + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 78 + + + + Sectors Count + Sektör Sayısı + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 87 + + + + Countries Count + Ülke Sayısı + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 96 + + + + Gather Recent Data + Son Veriyi Getir + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 126 + + + + Gather All Data + Tüm Veriyi Getir + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 129 + + + + Gather Profile Data + Profil Verisini Getir + + apps/client/src/app/components/admin-market-data/admin-market-data.html + 132 + + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 38 + + + + Refresh + Yenile + + 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/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 30 + + + + Set as Benchmark + Karşılaştırma Ölçütü Olarak Ayarla + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 45 + + + + Sector + Sektör + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 117 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 196 + + + + Country + Ülke + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 126 + + + apps/client/src/app/components/admin-users/admin-users.html + 14 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 208 + + + + Sectors + Sektörler + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 132 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 214 + + + apps/client/src/app/pages/public/public-page.html + 45 + + + + Countries + Ülkeler + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 142 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 226 + + + + Symbol Mapping + Sembol Eşleştirme + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 156 + + + + Scraper Configuration + Veri Toplayıcı Yapılandırması + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 167 + + + + Note + Not + + apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html + 178 + + + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 47 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 271 + + + + Add Asset Profile + Varlık Profili Ekle + + 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/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html + 10 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 97 + + + + Please add a currency: + Lütfen bir para birimi giriniz: + + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 112 + + + + Do you really want to delete this coupon? + Önbelleği temizlemeyi gerçekten istiyor musunuz? + + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 126 + + + + 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 + 139 + + + + Do you really want to flush the cache? + Önbelleği temizlemeyi gerçekten istiyor musunuz + + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 156 + + + + Please set your system message: + Lütfen sistem mesajınızı belirleyin: + + apps/client/src/app/components/admin-overview/admin-overview.component.ts + 186 + + + + User Count + Kullanıcı Sayısı + + apps/client/src/app/components/admin-overview/admin-overview.html + 7 + + + + Activity Count + İşlem Sayısı + + apps/client/src/app/components/admin-overview/admin-overview.html + 17 + + + + per User + Kullanıcı başına + + apps/client/src/app/components/admin-overview/admin-overview.html + 26 + + + + Exchange Rates + Döviz Kurları + + apps/client/src/app/components/admin-overview/admin-overview.html + 31 + + + + Add Currency + Para Birimi Ekle + + apps/client/src/app/components/admin-overview/admin-overview.html + 70 + + + + Tags + Etiketler + + apps/client/src/app/components/admin-overview/admin-overview.html + 79 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 268 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 315 + + + + User Signup + Kullanıcı Kaydı + + apps/client/src/app/components/admin-overview/admin-overview.html + 89 + + + + Read-only Mode + Salt okunur mod + + apps/client/src/app/components/admin-overview/admin-overview.html + 99 + + + + System Message + Sistem Mesajı + + apps/client/src/app/components/admin-overview/admin-overview.html + 109 + + + + Set Message + Mesaj Belirle + + apps/client/src/app/components/admin-overview/admin-overview.html + 131 + + + + Coupons + Kupon + + apps/client/src/app/components/admin-overview/admin-overview.html + 139 + + + + Add + Ekle + + apps/client/src/app/components/admin-overview/admin-overview.html + 183 + + + + Housekeeping + Genel Ayarlar + + apps/client/src/app/components/admin-overview/admin-overview.html + 190 + + + + Flush Cache + Önbelleği temizle + + apps/client/src/app/components/admin-overview/admin-overview.html + 194 + + + + Add Platform + Platform Ekle + + apps/client/src/app/components/admin-platform/admin-platform.component.html + 11,13 + + + + Url + Url + + 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 + 13 + + + + Accounts + Hesaplar + + apps/client/src/app/components/admin-platform/admin-platform.component.html + 64 + + + apps/client/src/app/components/admin-users/admin-users.html + 20 + + + apps/client/src/app/components/header/header.component.html + 53 + + + apps/client/src/app/components/header/header.component.html + 196 + + + apps/client/src/app/pages/accounts/accounts-page.html + 4 + + + + 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 + 76 + + + + Update platform + Platformu Güncelle + + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 2 + + + + Add platform + Platform Ekle + + apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html + 3 + + + + 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 + 86 + + + + User + Kullanıcı + + apps/client/src/app/components/admin-users/admin-users.html + 9 + + + apps/client/src/app/components/header/header.component.html + 164 + + + + Registration + Kayıt + + apps/client/src/app/components/admin-users/admin-users.html + 17 + + + + Engagement per Day + Günlük etkileşim + + apps/client/src/app/components/admin-users/admin-users.html + 29 + + + + Last Request + Son Talep + + apps/client/src/app/components/admin-users/admin-users.html + 35,37 + + + + Impersonate User + Kullanıcıyı Taklit Et + + apps/client/src/app/components/admin-users/admin-users.html + 121 + + + + Delete User + Kullanıcıyı Sil + + apps/client/src/app/components/admin-users/admin-users.html + 129 + + + + Performance + Performans + + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html + 6 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 59 + + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 119 + + + + 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 + 36 + + + + Portfolio + Portföy + + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts + 109 + + + apps/client/src/app/pages/portfolio/portfolio-page-routing.module.ts + 47 + + + + Benchmark + Karşılaştırma Ölçütü + + apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.ts + 118 + + + + 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 + 27 + + + apps/client/src/app/components/header/header.component.html + 178 + + + + Portfolio + Portföy + + apps/client/src/app/components/header/header.component.html + 40 + + + apps/client/src/app/components/header/header.component.html + 188 + + + + Admin Control + Yönetici Kontrolü + + apps/client/src/app/components/header/header.component.html + 66 + + + apps/client/src/app/components/header/header.component.html + 212 + + + + Me + Ben + + apps/client/src/app/components/header/header.component.html + 145 + + + + My Ghostfolio + Ghostfolio'm + + apps/client/src/app/components/header/header.component.html + 203 + + + + About Ghostfolio + Ghostfolio Hakkında + + apps/client/src/app/components/header/header.component.html + 243 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 5 + + + + Sign in + Giriş + + apps/client/src/app/components/header/header.component.html + 333 + + + 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 + 345 + + + + Sign in + Giriş + + apps/client/src/app/components/header/header.component.ts + 131 + + + apps/client/src/app/pages/webauthn/webauthn-page-routing.module.ts + 6 + + + + Oops! Incorrect Security Token. + Hay Allah! Güvenlik anahtarı yanlış. + + apps/client/src/app/components/header/header.component.ts + 145 + + + + Manage Activities + İşlemleri Yönet + + apps/client/src/app/components/home-holdings/home-holdings.html + 30 + + + apps/client/src/app/pages/portfolio/holdings/holdings-page.html + 31 + + + + Fear + Korku + + apps/client/src/app/components/home-market/home-market.component.ts + 24 + + + + Greed + Açgözlülük + + apps/client/src/app/components/home-market/home-market.component.ts + 25 + + + + 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 + 9 + + + + 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 + 10 + + + + Setup your accounts + Hesaplarınızı kurun + + apps/client/src/app/components/home-overview/home-overview.html + 17 + + + + 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 + 19,20 + + + + Capture your activities + İşlemlerinizi kaydedin + + apps/client/src/app/components/home-overview/home-overview.html + 26 + + + + 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 + 28,29 + + + + Monitor and analyze your portfolio + Portföyünüzü izleyin ve analiz edin. + + apps/client/src/app/components/home-overview/home-overview.html + 35 + + + + 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 + 37,38 + + + + Setup accounts + Hesaplarınızı kurunuz + + apps/client/src/app/components/home-overview/home-overview.html + 50 + + + + Add activity + İşlem ekle. + + apps/client/src/app/components/home-overview/home-overview.html + 58 + + + 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 + 112 + + + apps/client/src/app/core/http-response.interceptor.ts + 67 + + + + Upgrade Plan + Aboneliğinizi Yükseltiniz + + apps/client/src/app/components/home-summary/home-summary.component.ts + 114 + + + apps/client/src/app/core/http-response.interceptor.ts + 69 + + + + 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 + 182 + + + + Savings Rate + Tasarruf Oranı + + apps/client/src/app/components/investment-chart/investment-chart.component.ts + 248 + + + + 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/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 + 430 + + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 98 + + + apps/client/src/app/pages/register/register-page.html + 29 + + + apps/client/src/app/pages/webauthn/webauthn-page.html + 28 + + + + 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 + 21 + + + + Sell + Sat + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 33 + + + + Investment + Yatırım + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 48 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 126 + + + + Absolute Gross Performance + Toplam Brüt Performans + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 60 + + + + Gross Performance + Brüt Performans + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 72 + + + + + + + + için komisyon tutarı + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 12,15 + + + + {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 + 13,14 + + + + Absolute Net Performance + Toplam Net Performans + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 103 + + + + Net Performance + Net Performans + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 115 + + + + Total Assets + Toplam Varlıklar + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 131 + + + + Valuables + Yatırım Varlıkları + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 144 + + + + Emergency Fund + Acil Durum Yedeği + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 156 + + + apps/client/src/app/pages/features/features-page.html + 89 + + + + Cash + Nakit + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 177 + + + + Assets + Varlıklar + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 190 + + + + Buying Power + Alım Limiti + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 203 + + + + Excluded from Analysis + Analize Dahil Edilmemiştir. + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 215 + + + + Liabilities + Yükümlülükler + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 230 + + + 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 + 250 + + + + Annualized Performance + Annualized Performance + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 262,264 + + + + Dividend + Dividend + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 292 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 137 + + + 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 + 161 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 217 + + + + 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 + 52 + + + + Change + Change + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 48 + + + + Average Unit Price + Average Unit Price + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 70 + + + + Minimum Price + Minimum Price + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 93 + + + + Maximum Price + Maximum Price + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 105 + + + + Quantity + Quantity + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 115 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 148 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 259 + + + + Fees + Fees + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 87 + + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 148 + + + + First Buy Date + First Buy Date + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 158 + + + + Transactions + Transactions + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 167 + + + + Report Data Glitch + Report Data Glitch + + apps/client/src/app/components/position/position-detail-dialog/position-detail-dialog.html + 285 + + + + 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 + 15,17 + + + + 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 + 18,21 + + + + Portfolio Summary + Portfolio Summary + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 25 + + + apps/client/src/app/pages/pricing/pricing-page.html + 67 + + + apps/client/src/app/pages/pricing/pricing-page.html + 256 + + + + Portfolio Allocations + Portfolio Allocations + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 29 + + + apps/client/src/app/pages/features/features-page.html + 161 + + + apps/client/src/app/pages/pricing/pricing-page.html + 74 + + + apps/client/src/app/pages/pricing/pricing-page.html + 263 + + + + Performance Benchmarks + Performance Benchmarks + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 33 + + + apps/client/src/app/pages/pricing/pricing-page.html + 81 + + + apps/client/src/app/pages/pricing/pricing-page.html + 270 + + + + FIRE Calculator + FIRE Calculator + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 37 + + + apps/client/src/app/pages/pricing/pricing-page.html + 88 + + + apps/client/src/app/pages/pricing/pricing-page.html + 277 + + + + Professional Data Provider + Professional Data Provider + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 41 + + + apps/client/src/app/pages/pricing/pricing-page.html + 298 + + + + and more Features... + and more Features... + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 45 + + + apps/client/src/app/pages/pricing/pricing-page.html + 110 + + + apps/client/src/app/pages/pricing/pricing-page.html + 306 + + + + 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 + 48,51 + + + + Skip + Skip + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 55 + + + + Upgrade Plan + Upgrade Plan + + apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html + 62 + + + apps/client/src/app/pages/pricing/pricing-page.html + 343 + + + + Today + Today + + apps/client/src/app/components/toggle/toggle.component.ts + 21 + + + + YTD + YTD + + apps/client/src/app/components/toggle/toggle.component.ts + 22 + + + + 1Y + 1Y + + apps/client/src/app/components/toggle/toggle.component.ts + 23 + + + + 5Y + 5Y + + apps/client/src/app/components/toggle/toggle.component.ts + 24 + + + + Max + Max + + apps/client/src/app/components/toggle/toggle.component.ts + 25 + + + + This feature is currently unavailable. + This feature is currently unavailable. + + apps/client/src/app/core/http-response.interceptor.ts + 59 + + + + Please try again later. + Please try again later. + + apps/client/src/app/core/http-response.interceptor.ts + 61 + + + apps/client/src/app/core/http-response.interceptor.ts + 88 + + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 131 + + + + Oops! Something went wrong. + Oops! Something went wrong. + + apps/client/src/app/core/http-response.interceptor.ts + 86 + + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 129 + + + + Okay + Okay + + 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 + 132 + + + + About + About + + apps/client/src/app/pages/about/about-page-routing.module.ts + 52 + + + apps/client/src/app/pages/about/about-page.component.ts + 43 + + + apps/client/src/app/pages/about/overview/about-overview-page-routing.module.ts + 12 + + + + Changelog + Changelog + + apps/client/src/app/pages/about/about-page.component.ts + 48 + + + apps/client/src/app/pages/about/changelog/changelog-page-routing.module.ts + 12 + + + + License + License + + apps/client/src/app/pages/about/about-page.component.ts + 53 + + + apps/client/src/app/pages/about/license/license-page-routing.module.ts + 12 + + + + Privacy Policy + Privacy Policy + + apps/client/src/app/pages/about/about-page.component.ts + 61 + + + apps/client/src/app/pages/about/privacy-policy/privacy-policy-page-routing.module.ts + 12 + + + + 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 + 12 + + + + Update account + Update account + + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 2 + + + + Add account + Add account + + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 3 + + + + Account ID + Account ID + + apps/client/src/app/pages/accounts/create-or-update-account-dialog/create-or-update-account-dialog.html + 68 + + + + Admin Control + Admin Control + + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 19 + + + + Jobs + Jobs + + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 21 + + + apps/client/src/app/pages/admin/admin-page.component.ts + 41 + + + + Market Data + Market Data + + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 25 + + + apps/client/src/app/pages/admin/admin-page.component.ts + 36 + + + + Settings + Settings + + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 30 + + + apps/client/src/app/pages/admin/admin-page.component.ts + 31 + + + + Users + Users + + apps/client/src/app/pages/admin/admin-page-routing.module.ts + 35 + + + apps/client/src/app/pages/admin/admin-page.component.ts + 46 + + + + Overview + Overview + + apps/client/src/app/pages/admin/admin-page.component.ts + 26 + + + apps/client/src/app/pages/home/home-page.component.ts + 44 + + + apps/client/src/app/pages/zen/zen-page-routing.module.ts + 18 + + + apps/client/src/app/pages/zen/zen-page.component.ts + 33 + + + + Blog + Blog + + apps/client/src/app/pages/blog/blog-page-routing.module.ts + 12 + + + + 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,8 + + + + 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 + 31 + + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) + + apps/client/src/app/pages/faq/faq-page-routing.module.ts + 12 + + + + Frequently Asked Questions (FAQ) + Frequently Asked Questions (FAQ) + + apps/client/src/app/pages/faq/faq-page.html + 4,6 + + + + Features + Features + + apps/client/src/app/pages/features/features-page-routing.module.ts + 12 + + + + Check out the numerous features of Ghostfolio to manage your wealth + Check out the numerous features of Ghostfolio to manage your wealth + + apps/client/src/app/pages/features/features-page.html + 6,8 + + + + 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,117 + + + + 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 + 179 + + + + Zen Mode + Zen Mode + + apps/client/src/app/pages/features/features-page.html + 192 + + + apps/client/src/app/pages/user-account/user-account-page.html + 227 + + + + Market Mood + Market Mood + + apps/client/src/app/pages/features/features-page.html + 209 + + + + Static Analysis + Static Analysis + + apps/client/src/app/pages/features/features-page.html + 227 + + + + Multi-Language + Multi-Language + + apps/client/src/app/pages/features/features-page.html + 245 + + + + Open Source Software + Open Source Software + + apps/client/src/app/pages/features/features-page.html + 278 + + + + Get Started + Get Started + + apps/client/src/app/pages/features/features-page.html + 298 + + + apps/client/src/app/pages/public/public-page.html + 152 + + + + Holdings + Holdings + + apps/client/src/app/pages/home/home-page-routing.module.ts + 22 + + + apps/client/src/app/pages/home/home-page.component.ts + 49 + + + apps/client/src/app/pages/portfolio/holdings/holdings-page-routing.module.ts + 12 + + + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 38 + + + apps/client/src/app/pages/zen/zen-page.component.ts + 38 + + + + Summary + Summary + + apps/client/src/app/pages/home/home-page-routing.module.ts + 27 + + + apps/client/src/app/pages/home/home-page.component.ts + 54 + + + + Markets + Markets + + apps/client/src/app/pages/home/home-page-routing.module.ts + 32 + + + apps/client/src/app/pages/home/home-page.component.ts + 59 + + + apps/client/src/app/pages/markets/markets-page-routing.module.ts + 12 + + + + Manage your wealth like a boss + Manage your wealth like a boss + + apps/client/src/app/pages/landing/landing-page.html + 11,13 + + + + 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 + 15,19 + + + + Get Started + Get Started + + apps/client/src/app/pages/landing/landing-page.html + 47,49 + + + apps/client/src/app/pages/landing/landing-page.html + 426,428 + + + + or + or + + apps/client/src/app/pages/landing/landing-page.html + 52,54 + + + + Live Demo + Live Demo + + apps/client/src/app/pages/landing/landing-page.html + 55 + + + apps/client/src/app/pages/landing/landing-page.html + 431 + + + + Monthly Active Users + Monthly Active Users + + apps/client/src/app/pages/landing/landing-page.html + 75 + + + + Stars on GitHub + Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 93 + + + 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 + 111 + + + 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 + 119 + + + + 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 + 221,224 + + + + 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 + 225,228 + + + + 360° View + 360° View + + apps/client/src/app/pages/landing/landing-page.html + 236 + + + + 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 + 238,241 + + + + Web3 Ready + Web3 Ready + + apps/client/src/app/pages/landing/landing-page.html + 247 + + + + 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 + 249,251 + + + + Open Source + Open Source + + apps/client/src/app/pages/landing/landing-page.html + 257 + + + + 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 + 259,261 + + + + Why Ghostfolio? + Why Ghostfolio? + + apps/client/src/app/pages/landing/landing-page.html + 268 + + + + Ghostfolio is for you if you are... + Ghostfolio is for you if you are... + + apps/client/src/app/pages/landing/landing-page.html + 269,271 + + + + 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 + 276,277 + + + + pursuing a buy & hold strategy + pursuing a buy & hold strategy + + apps/client/src/app/pages/landing/landing-page.html + 282 + + + + 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 + 287 + + + + valuing privacy and data ownership + valuing privacy and data ownership + + apps/client/src/app/pages/landing/landing-page.html + 292 + + + + into minimalism + into minimalism + + apps/client/src/app/pages/landing/landing-page.html + 295 + + + + caring about diversifying your financial resources + caring about diversifying your financial resources + + apps/client/src/app/pages/landing/landing-page.html + 299 + + + + interested in financial independence + interested in financial independence + + apps/client/src/app/pages/landing/landing-page.html + 303 + + + + saying no to spreadsheets in + saying no to spreadsheets in + + apps/client/src/app/pages/landing/landing-page.html + 307 + + + + still reading this list + still reading this list + + apps/client/src/app/pages/landing/landing-page.html + 310 + + + + Learn more about Ghostfolio + Learn more about Ghostfolio + + apps/client/src/app/pages/landing/landing-page.html + 315 + + + + What our users are saying + What our users are saying + + apps/client/src/app/pages/landing/landing-page.html + 323,325 + + + + 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 + 353,355 + + + + How does Ghostfolio work? + How does Ghostfolio work? + + apps/client/src/app/pages/landing/landing-page.html + 368,370 + + + + Get started in only 3 steps + Get started in only 3 steps + + apps/client/src/app/pages/landing/landing-page.html + 371 + + + + Sign up anonymously* + Sign up anonymously* + + apps/client/src/app/pages/landing/landing-page.html + 377 + + + + * 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 + 379 + + + + Add any of your historical transactions + Add any of your historical transactions + + apps/client/src/app/pages/landing/landing-page.html + 390,392 + + + + Get valuable insights of your portfolio composition + Get valuable insights of your portfolio composition + + apps/client/src/app/pages/landing/landing-page.html + 402,404 + + + + Are you ready? + Are you ready? + + apps/client/src/app/pages/landing/landing-page.html + 414 + + + + 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 + 415,418 + + + + 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,22 + + + + 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 + + + + 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 + 12 + + + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 43 + + + + Do you really want to delete all your activities? + Do you really want to delete all your activities? + + apps/client/src/app/pages/portfolio/activities/activities-page.component.ts + 142 + + + + 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 + 21 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 57 + + + + 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 + 51 + + + + 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 + 63 + + + + Account + Account + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 75 + + + apps/client/src/app/pages/user-account/user-account-page.html + 4 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 416 + + + + Update Cash Balance + Update Cash Balance + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 89 + + + + Unit Price + Unit Price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 168 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 223 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 288 + + + + 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 + 253 + + + + Fee + Fee + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 237 + + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 262 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 317 + + + + Import Activities + Import Activities + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 40 + + + + Import Dividends + Import Dividends + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 79 + + + + Importing data... + Importing data... + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 113 + + + + Import has been completed + Import has been completed + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 121 + + + + Validating data... + Validating data... + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts + 224 + + + + 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 + 65 + + + + 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 + 91 + + + + Select Dividends + Select Dividends + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 114 + + + + Select Activities + Select Activities + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 117 + + + + Back + Back + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 141 + + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 178 + + + + Import + Import + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 150 + + + apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html + 186 + + + + Allocations + Allocations + + apps/client/src/app/pages/portfolio/allocations/allocations-page-routing.module.ts + 12 + + + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 48 + + + + Filter by account or tag... + Filter by account or tag... + + apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts + 146 + + + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 126 + + + apps/client/src/app/pages/portfolio/holdings/holdings-page.component.ts + 86 + + + + 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 + 18 + + + + By Platform + By Platform + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 42 + + + + By Currency + By Currency + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 61 + + + + By Asset Class + By Asset Class + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 84 + + + + By Holding + By Holding + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 107 + + + + By Sector + By Sector + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 130 + + + + By Continent + By Continent + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 154 + + + + By Market + By Market + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 177 + + + + Regions + Regions + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 201 + + + apps/client/src/app/pages/public/public-page.html + 76 + + + + Developed Markets + Developed Markets + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 224 + + + apps/client/src/app/pages/public/public-page.html + 93 + + + + Emerging Markets + Emerging Markets + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 233 + + + apps/client/src/app/pages/public/public-page.html + 102 + + + + Other Markets + Other Markets + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 242 + + + 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 + 254 + + + apps/client/src/app/pages/public/public-page.html + 123 + + + + By Account + By Account + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 266 + + + + By ETF Provider + By ETF Provider + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 286 + + + + By Country + By Country + + apps/client/src/app/pages/portfolio/allocations/allocations-page.html + 309 + + + + Analysis + Analysis + + apps/client/src/app/pages/portfolio/analysis/analysis-page-routing.module.ts + 12 + + + apps/client/src/app/pages/portfolio/portfolio-page.component.ts + 33 + + + + Dividend + Dividend + + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 43 + + + libs/ui/src/lib/i18n.ts + 31 + + + + Deposit + Deposit + + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 48 + + + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 60 + + + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 331 + + + + Monthly + Monthly + + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 54 + + + + Yearly + Yearly + + apps/client/src/app/pages/portfolio/analysis/analysis-page.component.ts + 55 + + + + 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 + 40 + + + + Bottom + Bottom + + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 86 + + + + Portfolio Evolution + Portfolio Evolution + + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 136 + + + + Investment Timeline + Investment Timeline + + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 166 + + + + Current Streak + Current Streak + + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 187 + + + + Longest Streak + Longest Streak + + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 196 + + + + Dividend Timeline + Dividend Timeline + + apps/client/src/app/pages/portfolio/analysis/analysis-page.html + 223 + + + + FIRE + FIRE + + apps/client/src/app/pages/portfolio/fire/fire-page-routing.module.ts + 12 + + + + 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 + 34 + + + + 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 + 57,90 + + + + Holdings + Holdings + + apps/client/src/app/pages/portfolio/holdings/holdings-page.html + 4 + + + apps/client/src/app/pages/public/public-page.html + 14 + + + + Pricing + Pricing + + apps/client/src/app/pages/pricing/pricing-page-routing.module.ts + 12 + + + + 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,11 + + + + 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,28 + + + + 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,39 + + + + Unlimited Transactions + Unlimited Transactions + + apps/client/src/app/pages/pricing/pricing-page.html + 46 + + + apps/client/src/app/pages/pricing/pricing-page.html + 159 + + + apps/client/src/app/pages/pricing/pricing-page.html + 235 + + + + Unlimited Accounts + Unlimited Accounts + + apps/client/src/app/pages/pricing/pricing-page.html + 53 + + + apps/client/src/app/pages/pricing/pricing-page.html + 166 + + + apps/client/src/app/pages/pricing/pricing-page.html + 242 + + + + Portfolio Performance + Portfolio Performance + + apps/client/src/app/pages/pricing/pricing-page.html + 60 + + + apps/client/src/app/pages/pricing/pricing-page.html + 173 + + + apps/client/src/app/pages/pricing/pricing-page.html + 249 + + + + Data Import and Export + Data Import and Export + + apps/client/src/app/pages/pricing/pricing-page.html + 95 + + + apps/client/src/app/pages/pricing/pricing-page.html + 180 + + + apps/client/src/app/pages/pricing/pricing-page.html + 284 + + + + Community Support + Community Support + + apps/client/src/app/pages/pricing/pricing-page.html + 118 + + + + Self-hosted, update manually. + Self-hosted, update manually. + + apps/client/src/app/pages/pricing/pricing-page.html + 122 + + + + Free + Free + + apps/client/src/app/pages/pricing/pricing-page.html + 123 + + + apps/client/src/app/pages/pricing/pricing-page.html + 192 + + + + 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 + 150,152 + + + + Fully managed Ghostfolio cloud offering. + Fully managed Ghostfolio cloud offering. + + apps/client/src/app/pages/pricing/pricing-page.html + 191 + + + apps/client/src/app/pages/pricing/pricing-page.html + 318 + + + + 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 + 225,228 + + + + Email and Chat Support + Email and Chat Support + + apps/client/src/app/pages/pricing/pricing-page.html + 314 + + + + Renew Plan + Renew Plan + + apps/client/src/app/pages/pricing/pricing-page.html + 348 + + + + One-time payment, no auto-renewal. + One-time payment, no auto-renewal. + + apps/client/src/app/pages/pricing/pricing-page.html + 352 + + + + Get Started + Get Started + + apps/client/src/app/pages/pricing/pricing-page.html + 363,365 + + + + It’s free. + It’s free. + + apps/client/src/app/pages/pricing/pricing-page.html + 366 + + + + Hello, has shared a Portfolio with you! + Hello, has shared a Portfolio with you! + + apps/client/src/app/pages/public/public-page.html + 4,7 + + + + 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 + 147,149 + + + + Registration + Registration + + apps/client/src/app/pages/register/register-page-routing.module.ts + 12 + + + + Create Account + Create Account + + 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 + 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 + 31,34 + + + + Agree and continue + Agree and continue + + apps/client/src/app/pages/register/show-access-token-dialog/show-access-token-dialog.html + 44 + + + + Personal Finance Tools + Personal Finance Tools + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.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 + 22 + + + 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 + 25 + + + + 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,6 + + + + 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,15 + + + + 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,19 + + + + Open Source Alternative to + Open Source Alternative to + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 35,37 + + + + 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 + + + + 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,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 13,25 + + + + 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 + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 26,36 + + + + Let’s dive deeper into the detailed 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 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 + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 37,43 + + + + Founded + Founded + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 63 + + + + Origin + Origin + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 68 + + + + Region + Region + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 73 + + + + Available in + Available in + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 78,80 + + + + ✅ Yes + ✅ Yes + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 100 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 107 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 121 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 132 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 146 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 153 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 165 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 172 + + + + ❌ No + ❌ No + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 102 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 125 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 136 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 148 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 174 + + + + ❌ No + ❌ No + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 109,110 + + + + Self-Hosting + Self-Hosting + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 114,116 + + + + Use anonymously + Use anonymously + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 141,143 + + + + Free Plan + Free Plan + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 160,162 + + + + Starting from / year + Starting from / year + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 180,182 + + + + Starting from / year + Starting from / year + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 185,186 + + + + Notes + Notes + + 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 + + + + Please note that the information provided 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 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 + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 199,208 + + + + 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 + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 211,214 + + + + 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 + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 215,218 + + + + Get Started + Get Started + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 220,222 + + + + Personal Finance Tools + Personal Finance Tools + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + apps/client/src/app/pages/resources/personal-finance-tools/product-page-template.html + 287 + + + + Switzerland + Switzerland + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 47 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 60 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 337 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 349 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 350 + + + + Global + Global + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 49 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 182 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 292 + + + + United States + United States + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 71 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 108 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 167 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 194 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 196 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 266 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 278 + + + + Belgium + Belgium + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 84 + + + + Germany + Germany + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 96 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 133 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 144 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 155 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 180 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 218 + + + + Austria + Austria + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 120 + + + + Italy + Italy + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 230 + + + + Netherlands + Netherlands + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 241 + + + + Thailand + Thailand + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 254 + + + + New Zealand + New Zealand + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 290 + + + + Czech Republic + Czech Republic + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 302 + + + apps/client/src/app/pages/resources/personal-finance-tools/products.ts + 325 + + + + Resources + Resources + + apps/client/src/app/pages/resources/resources-page-routing.module.ts + 12 + + + + Guides + Guides + + apps/client/src/app/pages/resources/resources-page.html + 5 + + + + Glossary + Glossary + + apps/client/src/app/pages/resources/resources-page.html + 75 + + + + Grant access + Grant access + + apps/client/src/app/pages/user-account/create-or-update-access-dialog/create-or-update-access-dialog.html + 2 + + + + Public + Public + + apps/client/src/app/pages/user-account/create-or-update-access-dialog/create-or-update-access-dialog.html + 19 + + + + My Ghostfolio + My Ghostfolio + + apps/client/src/app/pages/user-account/user-account-page-routing.module.ts + 12 + + + + Auto + Auto + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 47 + + + + Please enter your coupon code: + Please enter your coupon code: + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 263 + + + + Could not redeem coupon code + Could not redeem coupon code + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 273 + + + + Coupon code has been redeemed + Coupon code has been redeemed + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 285 + + + + Reload + Reload + + apps/client/src/app/pages/user-account/user-account-page.component.ts + 286 + + + + 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/user-account/user-account-page.component.ts + 332 + + + + Membership + Membership + + apps/client/src/app/pages/user-account/user-account-page.html + 12 + + + + Valid until + Valid until + + apps/client/src/app/pages/user-account/user-account-page.html + 24 + + + + Upgrade + Upgrade + + apps/client/src/app/pages/user-account/user-account-page.html + 39 + + + + Renew + Renew + + apps/client/src/app/pages/user-account/user-account-page.html + 44 + + + + per year + per year + + apps/client/src/app/pages/pricing/pricing-page.html + 332 + + + apps/client/src/app/pages/user-account/user-account-page.html + 56 + + + + Try Premium + Try Premium + + apps/client/src/app/pages/user-account/user-account-page.html + 64 + + + + Redeem Coupon + Redeem Coupon + + apps/client/src/app/pages/user-account/user-account-page.html + 77 + + + + Presenter View + Presenter View + + apps/client/src/app/pages/user-account/user-account-page.html + 84 + + + + Protection for sensitive information like absolute performances and quantity values + Protection for sensitive information like absolute performances and quantity values + + apps/client/src/app/pages/user-account/user-account-page.html + 85,88 + + + + Base Currency + Base Currency + + apps/client/src/app/pages/user-account/user-account-page.html + 103 + + + + Language + Language + + apps/client/src/app/pages/user-account/user-account-page.html + 127 + + + + Locale + Locale + + apps/client/src/app/pages/user-account/user-account-page.html + 173 + + + + Date and number format + Date and number format + + apps/client/src/app/pages/user-account/user-account-page.html + 175 + + + + Appearance + Appearance + + apps/client/src/app/pages/user-account/user-account-page.html + 201 + + + + Auto + Auto + + apps/client/src/app/pages/user-account/user-account-page.html + 216 + + + + Light + Light + + apps/client/src/app/pages/user-account/user-account-page.html + 217 + + + + Dark + Dark + + apps/client/src/app/pages/user-account/user-account-page.html + 218 + + + + Distraction-free experience for turbulent times + Distraction-free experience for turbulent times + + apps/client/src/app/pages/user-account/user-account-page.html + 228,230 + + + + Biometric Authentication + Biometric Authentication + + apps/client/src/app/pages/user-account/user-account-page.html + 243 + + + + Sign in with fingerprint + Sign in with fingerprint + + apps/client/src/app/pages/user-account/user-account-page.html + 244,246 + + + + Experimental Features + Experimental Features + + apps/client/src/app/pages/user-account/user-account-page.html + 262 + + + + Sneak peek at upcoming functionality + Sneak peek at upcoming functionality + + apps/client/src/app/pages/user-account/user-account-page.html + 263,265 + + + + User ID + User ID + + apps/client/src/app/pages/user-account/user-account-page.html + 277 + + + + Export Data + Export Data + + apps/client/src/app/pages/user-account/user-account-page.html + 284 + + + + Granted Access + Granted Access + + apps/client/src/app/pages/user-account/user-account-page.html + 295 + + + + Oops, authentication has failed. + Oops, authentication has failed. + + apps/client/src/app/pages/webauthn/webauthn-page.html + 18 + + + + Try again + Try again + + apps/client/src/app/pages/webauthn/webauthn-page.html + 26 + + + + Go back to Home Page + Go back to Home Page + + apps/client/src/app/pages/webauthn/webauthn-page.html + 30 + + + + Import Activities + Import Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 16 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 481 + + + + Import Dividends + Import Dividends + + libs/ui/src/lib/activities-table/activities-table.component.html + 34 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 490 + + + + Export Activities + Export Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 44 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 500 + + + + Export Drafts as ICS + Export Drafts as ICS + + libs/ui/src/lib/activities-table/activities-table.component.html + 54 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 510 + + + + Delete all Activities + Delete all Activities + + libs/ui/src/lib/activities-table/activities-table.component.html + 62 + + + + Draft + Draft + + libs/ui/src/lib/activities-table/activities-table.component.html + 218 + + + + Clone + Clone + + libs/ui/src/lib/activities-table/activities-table.component.html + 531 + + + + Export Draft as ICS + Export Draft as ICS + + libs/ui/src/lib/activities-table/activities-table.component.html + 539 + + + + Do you really want to delete this activity? + Do you really want to delete this activity? + + libs/ui/src/lib/activities-table/activities-table.component.ts + 227 + + + + Filter by account, currency, symbol or type... + Filter by account, currency, symbol or type... + + libs/ui/src/lib/activities-table/activities-table.component.ts + 427 + + + + Index + Index + + libs/ui/src/lib/benchmark/benchmark.component.html + 3 + + + + Change from All Time High + Change from All Time High + + libs/ui/src/lib/benchmark/benchmark.component.html + 12 + + + + from ATH + from ATH + + libs/ui/src/lib/benchmark/benchmark.component.html + 14 + + + + Market data provided by + Market data provided by + + libs/ui/src/lib/data-provider-credits/data-provider-credits.component.html + 2 + + + + Savings Rate per Month + Savings Rate per Month + + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 10 + + + + Annual Interest Rate + Annual Interest Rate + + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 21 + + + + Retirement Date + Retirement Date + + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 32 + + + + Projected Total Amount + Projected Total Amount + + libs/ui/src/lib/fire-calculator/fire-calculator.component.html + 60 + + + + Interest + Interest + + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 341 + + + libs/ui/src/lib/i18n.ts + 33 + + + + Savings + Savings + + libs/ui/src/lib/fire-calculator/fire-calculator.component.ts + 351 + + + + Allocation + Allocation + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 98 + + + + Show all + Show all + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 172 + + + + Account + Account + + libs/ui/src/lib/i18n.ts + 4 + + + + Asia-Pacific + Asia-Pacific + + libs/ui/src/lib/i18n.ts + 5 + + + + Asset Class + Asset Class + + libs/ui/src/lib/i18n.ts + 6 + + + + Asset Sub Class + Asset Sub Class + + libs/ui/src/lib/i18n.ts + 7 + + + + Core + Core + + libs/ui/src/lib/i18n.ts + 8 + + + + Switch to Ghostfolio Premium or Ghostfolio Open Source easily + Switch to Ghostfolio Premium or Ghostfolio Open Source easily + + libs/ui/src/lib/i18n.ts + 9 + + + + Switch to Ghostfolio Premium easily + Switch to Ghostfolio Premium easily + + libs/ui/src/lib/i18n.ts + 10 + + + + Switch to Ghostfolio Open Source or Ghostfolio Basic easily + Switch to Ghostfolio Open Source or Ghostfolio Basic easily + + libs/ui/src/lib/i18n.ts + 11 + + + + Emergency Fund + Emergency Fund + + libs/ui/src/lib/i18n.ts + 12 + + + + Grant + Grant + + libs/ui/src/lib/i18n.ts + 13 + + + + Higher Risk + Higher Risk + + libs/ui/src/lib/i18n.ts + 14 + + + + This activity already exists. + This activity already exists. + + libs/ui/src/lib/i18n.ts + 15 + + + + Japan + Japan + + libs/ui/src/lib/i18n.ts + 16 + + + + Lower Risk + Lower Risk + + libs/ui/src/lib/i18n.ts + 17 + + + + Month + Month + + libs/ui/src/lib/i18n.ts + 18 + + + + Months + Months + + libs/ui/src/lib/i18n.ts + 19 + + + + Other + Other + + libs/ui/src/lib/i18n.ts + 20 + + + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 384 + + + + Preset + Preset + + libs/ui/src/lib/i18n.ts + 21 + + + + Retirement Provision + Retirement Provision + + libs/ui/src/lib/i18n.ts + 22 + + + + Satellite + Satellite + + libs/ui/src/lib/i18n.ts + 23 + + + + Symbol + Symbol + + libs/ui/src/lib/i18n.ts + 24 + + + + Tag + Tag + + libs/ui/src/lib/i18n.ts + 25 + + + + Year + Yıl + + libs/ui/src/lib/i18n.ts + 26 + + + + Years + Years + + libs/ui/src/lib/i18n.ts + 27 + + + + Buy + Buy + + libs/ui/src/lib/i18n.ts + 30 + + + + Valuable + Valuable + + libs/ui/src/lib/i18n.ts + 34 + + + + Liability + Liability + + libs/ui/src/lib/i18n.ts + 35 + + + + Sell + Sell + + libs/ui/src/lib/i18n.ts + 36 + + + + Cash + Cash + + libs/ui/src/lib/i18n.ts + 39 + + + + Commodity + Commodity + + libs/ui/src/lib/i18n.ts + 40 + + + + Equity + Equity + + libs/ui/src/lib/i18n.ts + 41 + + + + Fixed Income + Fixed Income + + libs/ui/src/lib/i18n.ts + 42 + + + + Real Estate + Real Estate + + libs/ui/src/lib/i18n.ts + 43 + + + + Bond + Bond + + libs/ui/src/lib/i18n.ts + 46 + + + + Cryptocurrency + Cryptocurrency + + libs/ui/src/lib/i18n.ts + 47 + + + + ETF + ETF + + libs/ui/src/lib/i18n.ts + 48 + + + + Mutual Fund + Mutual Fund + + libs/ui/src/lib/i18n.ts + 49 + + + + Precious Metal + Precious Metal + + libs/ui/src/lib/i18n.ts + 50 + + + + Private Equity + Private Equity + + libs/ui/src/lib/i18n.ts + 51 + + + + Stock + Stock + + libs/ui/src/lib/i18n.ts + 52 + + + + Africa + Africa + + libs/ui/src/lib/i18n.ts + 55 + + + + Asia + Asia + + libs/ui/src/lib/i18n.ts + 56 + + + + Europe + Europe + + libs/ui/src/lib/i18n.ts + 57 + + + + North America + North America + + libs/ui/src/lib/i18n.ts + 58 + + + + Oceania + Oceania + + libs/ui/src/lib/i18n.ts + 59 + + + + South America + South America + + libs/ui/src/lib/i18n.ts + 60 + + + + 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 + + + + No data available + No data available + + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 386 + + + libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts + 399 + + + + You are using the Live Demo. + You are using the Live Demo. + + apps/client/src/app/app.component.html + 17 + + + + Add Access + Add Access + + apps/client/src/app/components/access-table/access-table.component.html + 8,10 + + + + Interest + Interest + + apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html + 280 + + + + New + New + + apps/client/src/app/pages/landing/landing-page.html + 7 + + + + (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 + + + + 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 + 36 + + + + 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 + 45 + + + + 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 + 193,194 + + + + 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 + 85 + + + + Fee + Fee + + libs/ui/src/lib/i18n.ts + 32 + + + + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 737e671f2..5521bee63 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -976,12 +976,16 @@ apps/client/src/app/pages/user-account/user-account-page.html 160 + + apps/client/src/app/pages/user-account/user-account-page.html + 164 + 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 - 169,170 + 172,173 @@ -3094,7 +3098,7 @@ apps/client/src/app/pages/user-account/user-account-page.html - 223 + 227 @@ -4099,8 +4103,8 @@ 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. The revenue is used to cover the hosting infrastructure and to fund the ongoing development of Ghostfolio. + + 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,11 @@ -8182,35 +8186,35 @@ Please enter your coupon code: apps/client/src/app/pages/user-account/user-account-page.component.ts - 262 + 263 Could not redeem coupon code apps/client/src/app/pages/user-account/user-account-page.component.ts - 272 + 273 Coupon code has been redeemed apps/client/src/app/pages/user-account/user-account-page.component.ts - 284 + 285 Reload apps/client/src/app/pages/user-account/user-account-page.component.ts - 285 + 286 Do you really want to remove this sign in method? apps/client/src/app/pages/user-account/user-account-page.component.ts - 331 + 332 @@ -8287,98 +8291,98 @@ Locale apps/client/src/app/pages/user-account/user-account-page.html - 169 + 173 Date and number format apps/client/src/app/pages/user-account/user-account-page.html - 171 + 175 Appearance apps/client/src/app/pages/user-account/user-account-page.html - 197 + 201 Auto apps/client/src/app/pages/user-account/user-account-page.html - 212 + 216 Light apps/client/src/app/pages/user-account/user-account-page.html - 213 + 217 Dark apps/client/src/app/pages/user-account/user-account-page.html - 214 + 218 Distraction-free experience for turbulent times apps/client/src/app/pages/user-account/user-account-page.html - 224,226 + 228,230 Biometric Authentication apps/client/src/app/pages/user-account/user-account-page.html - 239 + 243 Sign in with fingerprint apps/client/src/app/pages/user-account/user-account-page.html - 240,242 + 244,246 Experimental Features apps/client/src/app/pages/user-account/user-account-page.html - 258 + 262 Sneak peek at upcoming functionality apps/client/src/app/pages/user-account/user-account-page.html - 259,261 + 263,265 User ID apps/client/src/app/pages/user-account/user-account-page.html - 273 + 277 Export Data apps/client/src/app/pages/user-account/user-account-page.html - 280 + 284 Granted Access apps/client/src/app/pages/user-account/user-account-page.html - 291 + 295 diff --git a/libs/common/src/lib/config.ts b/libs/common/src/lib/config.ts index 467986fa1..0313434bf 100644 --- a/libs/common/src/lib/config.ts +++ b/libs/common/src/lib/config.ts @@ -101,7 +101,8 @@ export const SUPPORTED_LANGUAGE_CODES = [ 'fr', 'it', 'nl', - 'pt' + 'pt', + 'tr' ]; export const UNKNOWN_KEY = 'UNKNOWN'; diff --git a/libs/common/src/lib/helper.ts b/libs/common/src/lib/helper.ts index d3a6c9d71..43cc6d9f0 100644 --- a/libs/common/src/lib/helper.ts +++ b/libs/common/src/lib/helper.ts @@ -2,7 +2,7 @@ import * as currencies from '@dinero.js/currencies'; import { DataSource } from '@prisma/client'; import Big from 'big.js'; import { getDate, getMonth, getYear, parse, subDays } from 'date-fns'; -import { de, es, fr, it, nl, pt } from 'date-fns/locale'; +import { de, es, fr, it, nl, pt, tr } from 'date-fns/locale'; import { ghostfolioScraperApiSymbolPrefix, locale } from './config'; import { Benchmark, UniqueAsset } from './interfaces'; @@ -96,6 +96,8 @@ export function getDateFnsLocale(aLanguageCode: string) { return nl; } else if (aLanguageCode === 'pt') { return pt; + } else if (aLanguageCode === 'tr') { + return tr; } return undefined;