diff --git a/CHANGELOG.md b/CHANGELOG.md index 8be159930..2d1558a97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,27 @@ 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). -## 3.19.0 - 2026-07-02 +## Unreleased + +### Changed + +- Refactored the rounding logic in the holding detail dialog +- Refactored the rounding logic in the treemap chart component +- Restricted the modification of activity tags in the impersonation mode +- Hardened the endpoint of the public access for portfolio sharing by restricting it to public accesses +- Improved the parsing of integer query parameters (`skip` and `take`) in the `GET api/v1/admin/user` endpoint +- Improved the parsing of integer query parameters (`skip` and `take`) in the `GET api/v1/asset-profiles` endpoint +- Improved the parsing of the integer query parameter (`includeHistoricalData`) in the `GET api/v1/market-data/markets` endpoint +- Improved the parsing of the integer query parameter (`includeHistoricalData`) in the `GET api/v1/symbol/:dataSource/:symbol` endpoint +- Improved the language localization by translating various tooltips across the application +- Improved the language localization for Ukrainian (`uk`) +- Upgraded `yahoo-finance2` from version `3.14.3` to `3.15.4` + +### Fixed + +- Fixed the market condition of the benchmarks in the twitter bot service when values round to zero + +## 3.19.1 - 2026-07-03 ### Added @@ -14,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Harmonized the date picker styling across various components - Updated the _Privacy Policy_ - Updated the _Terms of Service_ - Improved the parsing of integer query parameters (`skip` and `take`) in the `GET api/v1/activities` endpoint @@ -24,6 +45,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Fixed an issue where values incorrectly rounded to negative zero in the value component +- Fixed the colorization of the change from all time high in the benchmark component when values round to zero +- Fixed the market condition of the benchmarks when values round to zero - Fixed the validation of the data source field of an asset profile with market data - Fixed a recurring issue where single-value fields were incorrectly validated as arrays in various endpoints diff --git a/apps/api/src/app/admin/admin.controller.ts b/apps/api/src/app/admin/admin.controller.ts index a6f6e8b6f..019468dfd 100644 --- a/apps/api/src/app/admin/admin.controller.ts +++ b/apps/api/src/app/admin/admin.controller.ts @@ -40,6 +40,7 @@ import { Inject, Logger, Param, + ParseIntPipe, Patch, Post, Put, @@ -319,12 +320,12 @@ export class AdminController { @HasPermission(permissions.accessAdminControl) @UseGuards(AuthGuard('jwt'), HasPermissionGuard) public async getUsers( - @Query('skip') skip?: number, - @Query('take') take?: number + @Query('skip', new ParseIntPipe({ optional: true })) skip?: number, + @Query('take', new ParseIntPipe({ optional: true })) take?: number ): Promise { return this.adminService.getUsers({ - skip: isNaN(skip) ? undefined : skip, - take: isNaN(take) ? undefined : take + skip, + take }); } diff --git a/apps/api/src/app/endpoints/asset-profiles/asset-profiles.controller.ts b/apps/api/src/app/endpoints/asset-profiles/asset-profiles.controller.ts index fcddb0bc3..d74f167a6 100644 --- a/apps/api/src/app/endpoints/asset-profiles/asset-profiles.controller.ts +++ b/apps/api/src/app/endpoints/asset-profiles/asset-profiles.controller.ts @@ -22,6 +22,7 @@ import { HttpException, Inject, Param, + ParseIntPipe, Patch, Query, UseGuards, @@ -51,10 +52,10 @@ export class AssetProfilesController { @Query('dataSource') filterByDataSource?: string, @Query('presetId') presetId?: MarketDataPreset, @Query('query') filterBySearchQuery?: string, - @Query('skip') skip?: number, + @Query('skip', new ParseIntPipe({ optional: true })) skip?: number, @Query('sortColumn') sortColumn?: string, @Query('sortDirection') sortDirection?: Prisma.SortOrder, - @Query('take') take?: number + @Query('take', new ParseIntPipe({ optional: true })) take?: number ): Promise { const filters = this.apiService.buildFiltersFromQueryParams({ filterByAssetSubClasses, @@ -65,10 +66,10 @@ export class AssetProfilesController { return this.assetProfilesService.getAssetProfiles({ filters, presetId, + skip, sortColumn, sortDirection, - skip: isNaN(skip) ? undefined : skip, - take: isNaN(take) ? undefined : take + take }); } diff --git a/apps/api/src/app/endpoints/market-data/market-data.controller.ts b/apps/api/src/app/endpoints/market-data/market-data.controller.ts index 0905a50bb..5dad0511f 100644 --- a/apps/api/src/app/endpoints/market-data/market-data.controller.ts +++ b/apps/api/src/app/endpoints/market-data/market-data.controller.ts @@ -22,6 +22,7 @@ import { HttpException, Inject, Param, + ParseIntPipe, Post, Query, UseGuards @@ -45,7 +46,8 @@ export class MarketDataController { @HasPermission(permissions.readMarketDataOfMarkets) @UseGuards(AuthGuard('jwt'), HasPermissionGuard) public async getMarketDataOfMarkets( - @Query('includeHistoricalData') includeHistoricalData = 0 + @Query('includeHistoricalData', new ParseIntPipe({ optional: true })) + includeHistoricalData = 0 ): Promise { const [ marketDataFearAndGreedIndexCryptocurrencies, diff --git a/apps/api/src/app/endpoints/public/public.controller.ts b/apps/api/src/app/endpoints/public/public.controller.ts index d06e3b5fe..f43e51f7b 100644 --- a/apps/api/src/app/endpoints/public/public.controller.ts +++ b/apps/api/src/app/endpoints/public/public.controller.ts @@ -46,7 +46,10 @@ export class PublicController { public async getPublicPortfolio( @Param('accessId') accessId: string ): Promise { - const access = await this.accessService.access({ id: accessId }); + const access = await this.accessService.access({ + granteeUserId: null, + id: accessId + }); if (!access) { throw new HttpException( diff --git a/apps/api/src/app/import/import.service.ts b/apps/api/src/app/import/import.service.ts index ba704d5ad..c7dab9823 100644 --- a/apps/api/src/app/import/import.service.ts +++ b/apps/api/src/app/import/import.service.ts @@ -69,8 +69,7 @@ export class ImportService { const holding = await this.portfolioService.getHolding({ dataSource, symbol, - userId, - impersonationId: undefined + userId }); if (!holding) { diff --git a/apps/api/src/app/portfolio/portfolio.controller.ts b/apps/api/src/app/portfolio/portfolio.controller.ts index ca94605f9..13cc0eae7 100644 --- a/apps/api/src/app/portfolio/portfolio.controller.ts +++ b/apps/api/src/app/portfolio/portfolio.controller.ts @@ -672,13 +672,11 @@ export class PortfolioController { @UseGuards(AuthGuard('jwt'), HasPermissionGuard) public async updateHoldingTags( @Body() data: UpdateHoldingTagsDto, - @Headers(HEADER_KEY_IMPERSONATION.toLowerCase()) impersonationId: string, @Param('dataSource') dataSource: DataSource, @Param('symbol') symbol: string ): Promise { const holding = await this.portfolioService.getHolding({ dataSource, - impersonationId, symbol, userId: this.request.user.id }); @@ -692,7 +690,6 @@ export class PortfolioController { await this.portfolioService.updateTags({ dataSource, - impersonationId, symbol, tags: data.tags, userId: this.request.user.id diff --git a/apps/api/src/app/portfolio/portfolio.service.ts b/apps/api/src/app/portfolio/portfolio.service.ts index 41697b346..b440684da 100644 --- a/apps/api/src/app/portfolio/portfolio.service.ts +++ b/apps/api/src/app/portfolio/portfolio.service.ts @@ -777,7 +777,7 @@ export class PortfolioService { symbol, userId }: { - impersonationId: string; + impersonationId?: string; userId: string; } & AssetProfileIdentifier): Promise { userId = await this.getUserId(impersonationId, userId); @@ -1377,17 +1377,13 @@ export class PortfolioService { public async updateTags({ dataSource, - impersonationId, symbol, tags, userId }: { - impersonationId: string; tags: Tag[]; userId: string; } & AssetProfileIdentifier) { - userId = await this.getUserId(impersonationId, userId); - await this.activitiesService.assignTags({ dataSource, symbol, diff --git a/apps/api/src/app/symbol/symbol.controller.ts b/apps/api/src/app/symbol/symbol.controller.ts index 501692ae5..d94ffb4dc 100644 --- a/apps/api/src/app/symbol/symbol.controller.ts +++ b/apps/api/src/app/symbol/symbol.controller.ts @@ -14,6 +14,7 @@ import { HttpException, Inject, Param, + ParseIntPipe, Query, UseGuards, UseInterceptors @@ -69,7 +70,8 @@ export class SymbolController { public async getSymbolData( @Param('dataSource') dataSource: DataSource, @Param('symbol') symbol: string, - @Query('includeHistoricalData') includeHistoricalData = 0 + @Query('includeHistoricalData', new ParseIntPipe({ optional: true })) + includeHistoricalData = 0 ): Promise { if (!DataSource[dataSource]) { throw new HttpException( diff --git a/apps/api/src/services/benchmark/benchmark.service.spec.ts b/apps/api/src/services/benchmark/benchmark.service.spec.ts index 833dbcdfc..0e7119b04 100644 --- a/apps/api/src/services/benchmark/benchmark.service.spec.ts +++ b/apps/api/src/services/benchmark/benchmark.service.spec.ts @@ -12,4 +12,16 @@ describe('BenchmarkService', () => { expect(benchmarkService.calculateChangeInPercentage(2, 2)).toEqual(0); expect(benchmarkService.calculateChangeInPercentage(2, 1)).toEqual(-0.5); }); + + it('getMarketCondition', async () => { + expect(benchmarkService.getMarketCondition(0)).toEqual('ALL_TIME_HIGH'); + expect(benchmarkService.getMarketCondition(-5.90736454893e-9)).toEqual( + 'ALL_TIME_HIGH' + ); + expect(benchmarkService.getMarketCondition(-0.1)).toEqual('NEUTRAL_MARKET'); + expect(benchmarkService.getMarketCondition(-0.19996)).toEqual( + 'BEAR_MARKET' + ); + expect(benchmarkService.getMarketCondition(-0.2)).toEqual('BEAR_MARKET'); + }); }); diff --git a/apps/api/src/services/benchmark/benchmark.service.ts b/apps/api/src/services/benchmark/benchmark.service.ts index 56a629163..99ceaf21e 100644 --- a/apps/api/src/services/benchmark/benchmark.service.ts +++ b/apps/api/src/services/benchmark/benchmark.service.ts @@ -24,7 +24,7 @@ import { Injectable, Logger } from '@nestjs/common'; import { SymbolProfile } from '@prisma/client'; import { Big } from 'big.js'; import { addHours, isAfter, subDays } from 'date-fns'; -import { uniqBy } from 'lodash'; +import { round, uniqBy } from 'lodash'; import ms from 'ms'; import { BenchmarkValue } from './interfaces/benchmark-value.interface'; @@ -220,9 +220,11 @@ export class BenchmarkService { public getMarketCondition( aPerformanceInPercent: number ): Benchmark['marketCondition'] { - if (aPerformanceInPercent >= 0) { + const performanceInPercent = round(aPerformanceInPercent, 4); + + if (performanceInPercent >= 0) { return 'ALL_TIME_HIGH'; - } else if (aPerformanceInPercent <= -0.2) { + } else if (performanceInPercent <= -0.2) { return 'BEAR_MARKET'; } else { return 'NEUTRAL_MARKET'; diff --git a/apps/api/src/services/twitter-bot/twitter-bot.service.ts b/apps/api/src/services/twitter-bot/twitter-bot.service.ts index 4e6fd5bb2..366b016b6 100644 --- a/apps/api/src/services/twitter-bot/twitter-bot.service.ts +++ b/apps/api/src/services/twitter-bot/twitter-bot.service.ts @@ -12,6 +12,7 @@ import { import { Injectable, Logger, OnModuleInit } from '@nestjs/common'; import { isWeekend } from 'date-fns'; +import { round } from 'lodash'; import { TwitterApi, TwitterApiReadWrite } from 'twitter-api-v2'; @Injectable() @@ -89,16 +90,16 @@ export class TwitterBotService implements OnModuleInit { }); return benchmarks - .map(({ marketCondition, name, performances }) => { - let changeFormAllTimeHigh = ( - performances.allTimeHigh.performancePercent * 100 - ).toFixed(1); + .map(({ name, performances }) => { + const performancePercent = round( + performances.allTimeHigh.performancePercent, + 3 + ); - if (Math.abs(parseFloat(changeFormAllTimeHigh)) === 0) { - changeFormAllTimeHigh = '0.0'; - } + const marketCondition = + this.benchmarkService.getMarketCondition(performancePercent); - return `${name} ${changeFormAllTimeHigh}%${ + return `${name} ${(performancePercent * 100).toFixed(1)}%${ marketCondition !== 'NEUTRAL_MARKET' ? ' ' + resolveMarketCondition(marketCondition).emoji : '' diff --git a/apps/client/src/app/components/header/header.component.html b/apps/client/src/app/components/header/header.component.html index ae3121861..35f072d72 100644 --- a/apps/client/src/app/components/header/header.component.html +++ b/apps/client/src/app/components/header/header.component.html @@ -332,7 +332,7 @@ } - @if (user() === null) { + @if (!user()) {
The source code is fully available as open source software @@ -49,6 +50,7 @@ >and is driven by the efforts of its contributorsSlack community, post to @ghostfolio_ this.deviceDetectorService.deviceInfo().deviceType + ); + + private readonly changeDetectorRef = inject(ChangeDetectorRef); + private readonly dataService = inject(DataService); + private readonly destroyRef = inject(DestroyRef); + private readonly deviceDetectorService = inject(DeviceDetectorService); + private readonly dialog = inject(MatDialog); + private readonly impersonationStorageService = inject( + ImpersonationStorageService + ); + private readonly notificationService = inject(NotificationService); + private readonly route = inject(ActivatedRoute); + private readonly router = inject(Router); + private readonly userService = inject(UserService); + + public constructor() { this.route.queryParams .pipe(takeUntilDestroyed(this.destroyRef)) .subscribe((params) => { @@ -80,7 +86,9 @@ export class GfAccountsPageComponent implements OnInit { return id === params['accountId']; }); - this.openUpdateAccountDialog(account); + if (account) { + this.openUpdateAccountDialog(account); + } } else { this.router.navigate(['.'], { relativeTo: this.route }); } @@ -91,8 +99,6 @@ export class GfAccountsPageComponent implements OnInit { } public ngOnInit() { - this.deviceType = this.deviceDetectorService.getDeviceInfo().deviceType; - this.impersonationStorageService .onChangeHasImpersonation() .pipe(takeUntilDestroyed(this.destroyRef)) @@ -122,32 +128,7 @@ export class GfAccountsPageComponent implements OnInit { this.fetchAccounts(); } - public fetchAccounts() { - this.dataService - .fetchAccounts() - .pipe(takeUntilDestroyed(this.destroyRef)) - .subscribe( - ({ - accounts, - activitiesCount, - totalBalanceInBaseCurrency, - totalValueInBaseCurrency - }) => { - this.accounts = accounts; - this.activitiesCount = activitiesCount; - this.totalBalanceInBaseCurrency = totalBalanceInBaseCurrency; - this.totalValueInBaseCurrency = totalValueInBaseCurrency; - - if (this.accounts?.length <= 0) { - this.router.navigate([], { queryParams: { createDialog: true } }); - } - - this.changeDetectorRef.markForCheck(); - } - ); - } - - public onDeleteAccount(aId: string) { + protected onDeleteAccount(aId: string) { this.reset(); this.dataService @@ -163,19 +144,44 @@ export class GfAccountsPageComponent implements OnInit { }); } - public onTransferBalance() { + protected onTransferBalance() { this.router.navigate([], { queryParams: { transferBalanceDialog: true } }); } - public onUpdateAccount(aAccount: AccountModel) { + protected onUpdateAccount(aAccount: AccountModel) { this.router.navigate([], { queryParams: { accountId: aAccount.id, editDialog: true } }); } - public openUpdateAccountDialog({ + private fetchAccounts() { + this.dataService + .fetchAccounts() + .pipe(takeUntilDestroyed(this.destroyRef)) + .subscribe( + ({ + accounts, + activitiesCount, + totalBalanceInBaseCurrency, + totalValueInBaseCurrency + }) => { + this.accounts = accounts; + this.activitiesCount = activitiesCount; + this.totalBalanceInBaseCurrency = totalBalanceInBaseCurrency; + this.totalValueInBaseCurrency = totalValueInBaseCurrency; + + if (this.accounts?.length <= 0) { + this.router.navigate([], { queryParams: { createDialog: true } }); + } + + this.changeDetectorRef.markForCheck(); + } + ); + } + + private openUpdateAccountDialog({ balance, comment, currency, @@ -199,8 +205,8 @@ export class GfAccountsPageComponent implements OnInit { platformId } }, - height: this.deviceType === 'mobile' ? '98vh' : '80vh', - width: this.deviceType === 'mobile' ? '100vw' : '50rem' + height: this.deviceType() === 'mobile' ? '98vh' : '80vh', + width: this.deviceType() === 'mobile' ? '100vw' : '50rem' }); dialogRef @@ -237,15 +243,15 @@ export class GfAccountsPageComponent implements OnInit { autoFocus: false, data: { accountId: aAccountId, - deviceType: this.deviceType, + deviceType: this.deviceType(), hasImpersonationId: this.hasImpersonationId, hasPermissionToCreateActivity: !this.hasImpersonationId && hasPermission(this.user?.permissions, permissions.createActivity) && !this.user?.settings?.isRestrictedView }, - height: this.deviceType === 'mobile' ? '98vh' : '80vh', - width: this.deviceType === 'mobile' ? '100vw' : '50rem' + height: this.deviceType() === 'mobile' ? '98vh' : '80vh', + width: this.deviceType() === 'mobile' ? '100vw' : '50rem' }); dialogRef @@ -267,15 +273,15 @@ export class GfAccountsPageComponent implements OnInit { account: { balance: 0, comment: null, - currency: this.user?.settings?.baseCurrency, + currency: this.user?.settings?.baseCurrency ?? null, id: null, isExcluded: false, name: null, platformId: null } - }, - height: this.deviceType === 'mobile' ? '98vh' : '80vh', - width: this.deviceType === 'mobile' ? '100vw' : '50rem' + } satisfies CreateOrUpdateAccountDialogParams, + height: this.deviceType() === 'mobile' ? '98vh' : '80vh', + width: this.deviceType() === 'mobile' ? '100vw' : '50rem' }); dialogRef @@ -312,7 +318,7 @@ export class GfAccountsPageComponent implements OnInit { data: { accounts: this.accounts }, - width: this.deviceType === 'mobile' ? '100vw' : '50rem' + width: this.deviceType() === 'mobile' ? '100vw' : '50rem' }); dialogRef @@ -353,7 +359,7 @@ export class GfAccountsPageComponent implements OnInit { } private reset() { - this.accounts = undefined; + this.accounts = []; this.activitiesCount = 0; this.totalBalanceInBaseCurrency = 0; this.totalValueInBaseCurrency = 0; diff --git a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/interfaces/interfaces.ts b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/interfaces/interfaces.ts index a3e6272f8..469ebc844 100644 --- a/apps/client/src/app/pages/accounts/create-or-update-account-dialog/interfaces/interfaces.ts +++ b/apps/client/src/app/pages/accounts/create-or-update-account-dialog/interfaces/interfaces.ts @@ -1,5 +1,7 @@ import { Account } from '@prisma/client'; export interface CreateOrUpdateAccountDialogParams { - account: Omit; + account: Omit & { + id: string | null; + }; } diff --git a/apps/client/src/app/pages/landing/landing-page.html b/apps/client/src/app/pages/landing/landing-page.html index dc0df10d4..cb86b471d 100644 --- a/apps/client/src/app/pages/landing/landing-page.html +++ b/apps/client/src/app/pages/landing/landing-page.html @@ -14,6 +14,7 @@
@@ -58,6 +59,7 @@ > @@ -76,6 +78,7 @@ > @@ -94,6 +97,7 @@ > diff --git a/apps/client/src/app/pages/open/open-page.html b/apps/client/src/app/pages/open/open-page.html index e7ff2719c..7ba6c1f4c 100644 --- a/apps/client/src/app/pages/open/open-page.html +++ b/apps/client/src/app/pages/open/open-page.html @@ -8,6 +8,7 @@ the source code as open source software diff --git a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html index 20c50d0fe..b5dbf4669 100644 --- a/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html +++ b/apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html @@ -167,7 +167,7 @@ name="calendar-clear-outline" /> - +
42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Restricted view Vista restringida @@ -595,11 +603,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -635,15 +643,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -779,11 +787,11 @@ - and is driven by the efforts of its contributors - and is driven by the efforts of its contributors + and is driven by the efforts of its contributors + and is driven by the efforts of its contributors apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -862,6 +870,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price Preu de Mercat @@ -978,6 +994,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History Subscription History @@ -1155,7 +1179,7 @@ and we share aggregated key metrics of the platform’s performance apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -1223,7 +1247,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -1927,8 +1959,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -2075,11 +2107,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -2438,6 +2470,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5 anys @@ -2738,6 +2778,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light Llum @@ -3063,7 +3111,7 @@ Vaja, la transferència del saldo en efectiu ha fallat. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -3375,7 +3423,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -3548,11 +3596,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -3724,7 +3772,7 @@ Usuaris actius mensuals apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -3732,11 +3780,11 @@ Estrelles a GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -3744,11 +3792,11 @@ Activa el Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -3756,7 +3804,7 @@ Com es veu a apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -3764,7 +3812,7 @@ Protegeix els teus actius. Refina la teva estratègia d’inversió personal. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -3772,7 +3820,7 @@ Ghostfolio permet a la gent ocupada fer un seguiment d’accions, ETF o criptomonedes sense ser rastrejada. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -3780,7 +3828,7 @@ Vista de 360° apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -3788,7 +3836,7 @@ Obtingueu la imatge completa de les vostres finances personals en múltiples plataformes. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -3796,7 +3844,7 @@ Web3 llest apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -3812,7 +3860,7 @@ Utilitza Ghostfolio de manera anònima i sigues propietari de les teves dades financeres. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -3820,7 +3868,7 @@ Beneficia’t de millores contínues gràcies a una comunitat forta. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -3836,7 +3884,7 @@ Per què Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -3844,7 +3892,7 @@ Ghostfolio és per a tu si ets... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -3852,7 +3900,7 @@ negociar accions, ETF o criptomonedes en múltiples plataformes apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -3860,7 +3908,7 @@ perseguint una compra & mantenir l’estratègia apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -3868,7 +3916,7 @@ interessat a obtenir informació sobre la composició de la vostra cartera apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -3876,7 +3924,7 @@ valorant la privadesa i la propietat de les dades apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -3884,7 +3932,7 @@ al minimalisme apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -3892,7 +3940,7 @@ preocupant-se per diversificar els seus recursos econòmics apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -3900,7 +3948,7 @@ interessada en la independència financera apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -3908,7 +3956,7 @@ dir no als fulls de càlcul apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -3916,7 +3964,7 @@ encara llegint aquesta llista apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -3924,7 +3972,7 @@ Més informació sobre Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -3940,7 +3988,7 @@ Que nostre usuaris estan dient apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -3948,7 +3996,7 @@ Membres de tot el món estan utilitzant Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -3956,7 +4004,7 @@ Com ho fa Ghostfolio treballar? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -3964,7 +4012,7 @@ Comença en només 3 passos apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -3980,7 +4028,7 @@ Registra’t de manera anònima* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -3988,7 +4036,7 @@ * no es requereix cap adreça de correu electrònic ni targeta de crèdit apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -3996,7 +4044,7 @@ Afegiu qualsevol de les vostres transaccions històriques apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -4004,7 +4052,7 @@ Obteniu informació valuosa sobre la composició de la vostra cartera apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -4012,7 +4060,7 @@ Són tu llest? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 @@ -4020,12 +4068,12 @@ Uneix-te ara o consulteu el compte d’exemple apps/client/src/app/pages/landing/landing-page.html - 333 + 337 - 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. - A Ghostfolio, la transparència és la base dels nostres valors. Publiquem el codi font com a programari de codi obert (OSS) sota elLlicència AGPL-3.0 i compartim obertament mètriques clau agregades de l’estat operatiu de la plataforma. + 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. + A Ghostfolio, la transparència és la base dels nostres valors. Publiquem el codi font com a programari de codi obert (OSS) sota elLlicència AGPL-3.0 i compartim obertament mètriques clau agregades de l’estat operatiu de la plataforma. apps/client/src/app/pages/open/open-page.html 7 @@ -4036,7 +4084,7 @@ (Últimes 24 hores) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -4044,7 +4092,7 @@ Ghostfolio Status apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -4060,11 +4108,11 @@ Usuaris actius apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -4072,11 +4120,11 @@ (Últims 30 dies) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -4092,7 +4140,7 @@ Usuaris nous apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -4100,7 +4148,7 @@ Usuaris de la comunitat Slack apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -4116,7 +4164,7 @@ Col·laboradors a GitHub apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -4124,7 +4172,7 @@ (Últims 90 dies) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -4132,7 +4180,7 @@ Temps de funcionament apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -4280,7 +4328,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -4296,7 +4344,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -4320,7 +4368,7 @@ or start a discussion at apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -5173,7 +5221,7 @@ Alternativa de codi obert a apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -5245,7 +5293,7 @@ Website of Thomas Kaul apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -5316,6 +5364,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ No @@ -5529,7 +5585,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -5541,7 +5597,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -5565,7 +5621,7 @@ Clonar libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -5573,7 +5629,7 @@ Exporta l’esborrany com a ICS libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -5833,7 +5889,7 @@ Import total previst libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -5849,7 +5905,7 @@ Dipòsit libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -5865,7 +5921,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -5877,7 +5933,7 @@ Estalvi libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -5891,10 +5947,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -5957,7 +6021,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -5989,7 +6053,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -6108,6 +6172,14 @@ 449 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset Predefinit @@ -6205,7 +6277,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -6241,7 +6313,7 @@ Comissió apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -6525,7 +6597,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -6661,7 +6733,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6733,7 +6805,7 @@ View Holding libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6833,7 +6905,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6841,7 +6913,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6889,7 +6961,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6973,7 +7045,7 @@ send an e-mail to apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7001,7 +7073,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7012,6 +7084,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + Oops! Invalid currency. Oops! Invalid currency. @@ -7435,11 +7515,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7467,7 +7547,7 @@ Check the system status at apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7594,6 +7674,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance Performance @@ -7609,6 +7697,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7623,7 +7715,7 @@ The project has been initiated by apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7868,7 +7960,7 @@ Do you really want to delete this item? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7981,11 +8073,11 @@ Live Demo apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8062,6 +8154,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Get Access Get Access @@ -8300,11 +8400,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8716,11 +8816,19 @@ Find Ghostfolio on GitHub apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8728,7 +8836,11 @@ Join the Ghostfolio Slack community apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8736,7 +8848,7 @@ Follow Ghostfolio on X (formerly Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 @@ -8744,11 +8856,11 @@ Send an e-mail apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8764,7 +8876,7 @@ Follow Ghostfolio on LinkedIn apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8772,7 +8884,7 @@ Ghostfolio is an independent & bootstrapped business apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8780,7 +8892,7 @@ Support Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index c58797b90..3e54ecb79 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -250,11 +250,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -290,15 +290,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -386,11 +386,11 @@ - and is driven by the efforts of its contributors - und wird durch die Beiträge seiner Mitwirkenden vorangetrieben + and is driven by the efforts of its contributors + und wird durch die Beiträge seiner Mitwirkenden vorangetrieben apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -477,6 +477,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price Marktpreis @@ -738,11 +746,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -866,11 +874,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1072,10 +1080,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -1125,6 +1141,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5J @@ -1702,7 +1726,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -2102,7 +2126,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -2178,7 +2210,7 @@ oder beginne eine Diskussion bei apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -2362,7 +2394,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -2374,7 +2406,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -2386,7 +2418,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -2394,7 +2426,7 @@ Kopieren libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -2402,7 +2434,7 @@ Geplante Aktivität als ICS exportieren libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -2614,7 +2646,7 @@ Projizierter Gesamtbetrag libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -2638,7 +2670,7 @@ Einlage libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -2654,7 +2686,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -2666,7 +2698,7 @@ Ersparnisse libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -2685,6 +2717,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History Verlauf der Mitgliedschaft @@ -2829,6 +2869,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light Hell @@ -2918,7 +2966,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -3130,7 +3178,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3338,7 +3386,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -3454,7 +3502,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -4266,7 +4314,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -4430,7 +4478,7 @@ und wir veröffentlichen aggregierte Kennzahlen zur Performance der Plattform apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -4482,7 +4530,7 @@ Website von Thomas Kaul apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4553,6 +4601,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ Nein @@ -4709,6 +4765,14 @@ 232 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset Filtervorlage @@ -4742,8 +4806,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - Der Quellcode ist vollständig als Open-Source-Software (OSS) unter der AGPL-3.0-Lizenz verfügbar + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + Der Quellcode ist vollständig als Open-Source-Software (OSS) unter der AGPL-3.0-Lizenz verfügbar apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -4830,8 +4894,8 @@ - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Bei Ghostfolio gehört Transparenz zum zentralen Inhalt unserer Grundwerte. Wir publizieren den Quellcode als Open-Source-Software (OSS) unter der AGPL-3.0-Lizenz und veröffentlichen aggregierte Kennzahlen über den Betriebsstatus der Plattform. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Bei Ghostfolio gehört Transparenz zum zentralen Inhalt unserer Grundwerte. Wir publizieren den Quellcode als Open-Source-Software (OSS) unter der AGPL-3.0-Lizenz und veröffentlichen aggregierte Kennzahlen über den Betriebsstatus der Plattform. apps/client/src/app/pages/open/open-page.html 7 @@ -4842,11 +4906,11 @@ Aktive Nutzer apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -4854,7 +4918,7 @@ Neue Nutzer apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -4862,7 +4926,7 @@ Nutzer in der Slack Community apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -4878,7 +4942,7 @@ Contributors auf GitHub apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -4886,11 +4950,11 @@ Sterne auf GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -4898,11 +4962,11 @@ Downloads auf Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -4910,7 +4974,7 @@ Verfügbarkeit apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -5030,7 +5094,7 @@ Monatlich aktive Nutzer apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -5038,7 +5102,7 @@ Bekannt aus apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -5046,7 +5110,7 @@ Schütze dein Vermögen. Optimiere deine persönliche Anlagestrategie. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -5054,7 +5118,7 @@ Ghostfolio ermöglicht es geschäftigen Leuten, den Überblick über Aktien, ETFs oder Kryptowährungen zu behalten, ohne überwacht zu werden. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -5062,7 +5126,7 @@ 360° Ansicht apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -5070,7 +5134,7 @@ Web3 ready apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -5086,7 +5150,7 @@ Nutze Ghostfolio ganz anonym und behalte deine Finanzdaten. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -5094,7 +5158,7 @@ Profitiere von kontinuierlichen Verbesserungen durch eine aktive Community. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -5110,7 +5174,7 @@ Warum Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -5118,7 +5182,7 @@ Ghostfolio ist für dich geeignet, wenn du... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -5126,7 +5190,7 @@ Aktien, ETFs oder Kryptowährungen auf unterschiedlichen Plattformen handelst apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -5134,7 +5198,7 @@ eine Buy & Hold Strategie verfolgst apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -5142,7 +5206,7 @@ dich für die Zusammensetzung deines Portfolios interessierst apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -5150,7 +5214,7 @@ Privatsphäre und Datenhoheit wertschätzt apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -5158,7 +5222,7 @@ zum Frugalismus oder Minimalismus neigst apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -5166,7 +5230,7 @@ dich um die Diversifizierung deiner finanziellen Mittel kümmerst apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -5174,7 +5238,7 @@ Interesse an finanzieller Freiheit hast apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -5182,7 +5246,7 @@ Nein sagst zu Excel-Tabellen im Jahr apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -5190,7 +5254,7 @@ diese Liste bis zum Ende liest apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -5198,7 +5262,7 @@ Erfahre mehr über Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -5214,7 +5278,7 @@ Was unsere Nutzer sagen apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -5222,7 +5286,7 @@ Nutzer aus aller Welt verwenden Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -5230,7 +5294,7 @@ Wie funktioniert Ghostfolio ? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -5238,7 +5302,7 @@ Registriere dich anonym* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -5246,7 +5310,7 @@ * Keine E-Mail-Adresse oder Kreditkarte erforderlich apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -5254,7 +5318,7 @@ Füge historische Transaktionen hinzu apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -5262,7 +5326,7 @@ Erhalte nützliche Erkenntnisse über die Zusammensetzung deines Portfolios apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -5270,7 +5334,7 @@ Bist du bereit? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 @@ -5278,7 +5342,7 @@ Verschaffe dir einen vollständigen Überblick deiner persönlichen Finanzen über mehrere Plattformen hinweg. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -5286,7 +5350,7 @@ Beginne mit nur 3 Schritten apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -5483,7 +5547,7 @@ Open Source Alternative zu apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -5564,7 +5628,7 @@ (Letzte 24 Stunden) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -5572,7 +5636,7 @@ Ghostfolio Status apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -5588,11 +5652,11 @@ (Letzte 30 Tage) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -5608,7 +5672,7 @@ (Letzte 90 Tage) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -5648,7 +5712,7 @@ Gebühr apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5884,7 +5948,7 @@ Ups, der Cash-Bestand Transfer ist fehlgeschlagen. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -6219,6 +6283,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Oops! A data provider is experiencing the hiccups. Ups! Ein Datenprovider-Partner hat gerade ein Problem. @@ -6513,7 +6585,7 @@ Melde dich jetzt an oder probiere die Live Demo aus apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6685,7 +6757,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6757,7 +6829,7 @@ Position ansehen libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6857,7 +6929,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6865,7 +6937,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6913,7 +6985,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6997,7 +7069,7 @@ sende eine E-Mail an apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7025,7 +7097,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7036,6 +7108,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + Oops! Invalid currency. Ups! Ungültige Währung. @@ -7459,11 +7539,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7491,7 +7571,7 @@ Prüfe den Systemstatus unter apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7618,6 +7698,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance Performance @@ -7633,6 +7721,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7647,7 +7739,7 @@ Das Projekt wurde initiiert von apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7868,7 +7960,7 @@ Möchtest du diesen Eintrag wirklich löschen? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7981,11 +8073,11 @@ Live Demo apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8062,6 +8154,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Get Access Zugang erhalten @@ -8300,11 +8400,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - Wenn du einen Fehler feststellst oder eine Verbesserung bzw. ein neues Feature vorschlagen möchtest, tritt der Ghostfolio Slack Community bei oder poste an @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + Wenn du einen Fehler feststellst oder eine Verbesserung bzw. ein neues Feature vorschlagen möchtest, tritt der Ghostfolio Slack Community bei oder poste an @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8716,11 +8816,19 @@ Finde Ghostfolio auf GitHub apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8728,7 +8836,11 @@ Tritt der Ghostfolio Slack Community bei apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8736,7 +8848,7 @@ Folge Ghostfolio auf X (ehemals Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 @@ -8744,11 +8856,11 @@ E-Mail senden apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8764,7 +8876,7 @@ Folge Ghostfolio auf LinkedIn apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8772,7 +8884,7 @@ Ghostfolio ist ein unabhängiges & selbstfinanziertes Unternehmen apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8780,7 +8892,7 @@ Unterstütze Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 9a84c1487..a7311c4df 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -251,11 +251,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -291,15 +291,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -387,11 +387,11 @@ - and is driven by the efforts of its contributors - y es impulsado por los esfuerzos de sus colaboradores + and is driven by the efforts of its contributors + y es impulsado por los esfuerzos de sus colaboradores apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -478,6 +478,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price Precio de mercado @@ -723,11 +731,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -851,11 +859,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1057,10 +1065,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -1110,6 +1126,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5 años @@ -1687,7 +1711,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -2087,7 +2111,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -2163,7 +2195,7 @@ o inicia una discusión en apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -2347,7 +2379,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -2359,7 +2391,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -2371,7 +2403,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -2379,7 +2411,7 @@ Clonar libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -2387,7 +2419,7 @@ Exportar borrador como ICS libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -2599,7 +2631,7 @@ Importe total previsto libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -2607,7 +2639,7 @@ Ahorros libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -2623,7 +2655,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -2643,7 +2675,7 @@ Depósito libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -2662,6 +2694,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History Subscription History @@ -2814,6 +2854,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light Claro @@ -2903,7 +2951,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -3115,7 +3163,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3323,7 +3371,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -3439,7 +3487,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -4243,7 +4291,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -4407,7 +4455,7 @@ y compartimos métricas clave agregadas del rendimiento de la plataforma apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -4459,7 +4507,7 @@ Sitio web de Thomas Kaul apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4530,6 +4578,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ No @@ -4686,6 +4742,14 @@ 232 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset Preestablecido @@ -4719,8 +4783,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - El código fuente está disponible como software de código abierto (OSS) bajo la licencia AGPL-3.0 + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + El código fuente está disponible como software de código abierto (OSS) bajo la licencia AGPL-3.0 apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -4807,8 +4871,8 @@ - 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. - En Ghostfolio, la transparencia está en el centro de nuestros valores. Publicamos el código fuente como software de código abierto (OSS) bajo la Licencia AGPL-3.0 y compartimos abiertamente métricas clave agregadas sobre el estado operativo de la plataforma. + 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. + En Ghostfolio, la transparencia está en el centro de nuestros valores. Publicamos el código fuente como software de código abierto (OSS) bajo la Licencia AGPL-3.0 y compartimos abiertamente métricas clave agregadas sobre el estado operativo de la plataforma. apps/client/src/app/pages/open/open-page.html 7 @@ -4819,11 +4883,11 @@ Usuarios activos apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -4831,7 +4895,7 @@ Nuevos usuarios apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -4839,7 +4903,7 @@ Usuarios en la comunidad de Slack apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -4855,7 +4919,7 @@ Colaboradores en GitHub apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -4863,11 +4927,11 @@ Estrellas en GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -4875,11 +4939,11 @@ Descargas en Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -4887,7 +4951,7 @@ Tiempo de actividad apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -5007,7 +5071,7 @@ Usuarios activos mensuales apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -5015,7 +5079,7 @@ Visto en apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -5023,7 +5087,7 @@ Protege tus activos. Mejora tu estrategia de inversión personal. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -5031,7 +5095,7 @@ Ghostfolio permite a las personas ocupadas hacer un seguimiento de acciones, ETFs o criptomonedas sin ser rastreadas. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -5039,7 +5103,7 @@ Vista 360° apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -5047,7 +5111,7 @@ Preparado para Web3 apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -5063,7 +5127,7 @@ Usa Ghostfolio de forma anónima y sé dueño de tus datos financieros. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -5071,7 +5135,7 @@ Disfruta de mejoras continuas gracias a una comunidad sólida. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -5087,7 +5151,7 @@ ¿Por qué Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -5095,7 +5159,7 @@ Ghostfolio es para ti si estás... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -5103,7 +5167,7 @@ operando con acciones, ETFs o criptomonedas en múltiples plataformas apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -5111,7 +5175,7 @@ siguiendo una estrategia de comprar y mantener apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -5119,7 +5183,7 @@ interesado en obtener información sobre la composición de tu cartera apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -5127,7 +5191,7 @@ valorando la privacidad y la propiedad de tus datos apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -5135,7 +5199,7 @@ interesado en el minimalismo apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -5143,7 +5207,7 @@ preocupado por diversificar tus recursos financieros apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -5151,7 +5215,7 @@ interesado en la independencia financiera apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -5159,7 +5223,7 @@ en contra de las las hojas de cálculo en apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -5167,7 +5231,7 @@ todavía leyendo esta lista apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -5175,7 +5239,7 @@ Más información sobre Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -5191,7 +5255,7 @@ Lo que nuestros usuarios están diciendo apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -5199,7 +5263,7 @@ Miembros de todo el mundo están usando Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -5207,7 +5271,7 @@ ¿Cómo funciona Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -5215,7 +5279,7 @@ Regístrate de forma anónima* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -5223,7 +5287,7 @@ * no se necesita correo electrónico ni tarjeta de crédito apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -5231,7 +5295,7 @@ Agrega cualquiera de tus transacciones históricas apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -5239,7 +5303,7 @@ Obtén información valiosa sobre la composición de tu cartera apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -5247,7 +5311,7 @@ ¿Estás preparado? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 @@ -5255,7 +5319,7 @@ Obtén una visión completa de tus finanzas personales en múltiples plataformas. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -5263,7 +5327,7 @@ Comienza en solo 3 pasos apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -5460,7 +5524,7 @@ Alternativa de software de código abierto a apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -5541,7 +5605,7 @@ (Últimas 24 horas) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -5549,7 +5613,7 @@ Estado de Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -5565,11 +5629,11 @@ (Últimos 30 días) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -5585,7 +5649,7 @@ (Últimos 90 días) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -5625,7 +5689,7 @@ Comisión apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5861,7 +5925,7 @@ ¡Vaya! La transferencia del saldo de efectivo ha fallado. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -6196,6 +6260,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Oops! A data provider is experiencing the hiccups. ¡Vaya! Un proveedor de datos está experimentando problemas. @@ -6490,7 +6562,7 @@ Únete ahora o consulta la cuenta de ejemplo apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6662,7 +6734,7 @@ Código abierto apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6734,7 +6806,7 @@ Ver posición libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6834,7 +6906,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6842,7 +6914,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6890,7 +6962,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6974,7 +7046,7 @@ envía un correo electrónico a apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7002,7 +7074,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7013,6 +7085,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + Oops! Invalid currency. ¡Vaya! Divisa no válida. @@ -7436,11 +7516,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7468,7 +7548,7 @@ Verifica el estado del sistema en apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7595,6 +7675,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance Rendimiento @@ -7610,6 +7698,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7624,7 +7716,7 @@ El proyecto ha sido iniciado por apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7869,7 +7961,7 @@ ¿Seguro que quieres eliminar este elemento? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7982,11 +8074,11 @@ Demostración en vivo apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8063,6 +8155,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Get Access Obtener acceso @@ -8301,11 +8401,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - Si encuentras un error, deseas sugerir una mejora o una nueva funcionalidad, por favor únete a la comunidad de Ghostfolio en Slack y publica en @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + Si encuentras un error, deseas sugerir una mejora o una nueva funcionalidad, por favor únete a la comunidad de Ghostfolio en Slack y publica en @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8717,11 +8817,19 @@ Encuentra Ghostfolio en GitHub apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8729,7 +8837,11 @@ Únete a la comunidad de Ghostfolio en Slack apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8737,7 +8849,7 @@ Sigue a Ghostfolio en X (anteriormente Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 @@ -8745,11 +8857,11 @@ Enviar un correo electrónico apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8765,7 +8877,7 @@ Sigue a Ghostfolio en LinkedIn apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8773,7 +8885,7 @@ Ghostfolio es una empresa independiente y autofinanciada apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8781,7 +8893,7 @@ Apoya a Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 14b75f8cd..92de7bab9 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -306,11 +306,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -346,15 +346,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -434,11 +434,11 @@ - and is driven by the efforts of its contributors - and is driven by the efforts of its contributors + and is driven by the efforts of its contributors + and is driven by the efforts of its contributors apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -533,6 +533,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price Prix du marché @@ -613,6 +621,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History Subscription History @@ -738,7 +754,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -1150,11 +1174,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1373,6 +1397,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5A @@ -1673,6 +1705,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light Clair @@ -1998,7 +2038,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -2270,7 +2310,7 @@ or start a discussion at apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -2546,7 +2586,7 @@ Dépôt libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -2690,11 +2730,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -2874,7 +2914,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -2886,7 +2926,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -2898,7 +2938,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -2906,7 +2946,7 @@ Dupliquer libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -2914,7 +2954,7 @@ Exporter Brouillon sous ICS libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -2970,7 +3010,7 @@ Montant Total Prévu libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -2986,7 +3026,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -2998,7 +3038,7 @@ Épargne libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -3012,10 +3052,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -3070,7 +3118,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -3102,7 +3150,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -3382,7 +3430,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3438,7 +3486,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -4242,7 +4290,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -4406,7 +4454,7 @@ and we share aggregated key metrics of the platform’s performance apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -4458,7 +4506,7 @@ Website of Thomas Kaul apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4529,6 +4577,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ Non @@ -4685,6 +4741,14 @@ 232 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset Configuration par défaut @@ -4718,8 +4782,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -4806,8 +4870,8 @@ - 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. - Chez Ghostfolio, la transparence est le centre de notre attention. Nous publions le code source sous open source software (OSS) sous la licence AGPL-3.0 et nous partageons ouvertement les indicateurs clés agrégés sur l’état opérationnel de la plateforme. + 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. + Chez Ghostfolio, la transparence est le centre de notre attention. Nous publions le code source sous open source software (OSS) sous la licence AGPL-3.0 et nous partageons ouvertement les indicateurs clés agrégés sur l’état opérationnel de la plateforme. apps/client/src/app/pages/open/open-page.html 7 @@ -4818,11 +4882,11 @@ Utilisateurs actifs apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -4830,7 +4894,7 @@ Nouvel Utilisateur apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -4838,7 +4902,7 @@ Membres de la communauté Slack apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -4854,7 +4918,7 @@ Contributeurs GitHub apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -4862,11 +4926,11 @@ Etoiles sur GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -4874,11 +4938,11 @@ Téléchargement depuis Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -4886,7 +4950,7 @@ Temps d’activité des serveurs apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -5006,7 +5070,7 @@ Utilisateurs actifs mensuels apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -5014,7 +5078,7 @@ Médias apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -5022,7 +5086,7 @@ Protégez vos actifs. Affinez votre stratégie d’investissement personnelle.. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -5030,7 +5094,7 @@ Ghostfolio permet aux personnes occupées de suivre ses actions, ETF ou cryptomonnaies sans être pistées. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -5038,7 +5102,7 @@ Vision 360° apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -5046,7 +5110,7 @@ Compatible Web3 apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -5062,7 +5126,7 @@ Utilisez Ghostfolio de manière anonyme et soyez propriétaire de vos données financières. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -5070,7 +5134,7 @@ Bénéficiez d’améliorations continues grâce à une communauté impliquée. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -5086,7 +5150,7 @@ Pourquoi Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -5094,7 +5158,7 @@ Ghostfolio est pour vous si vous ... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -5102,7 +5166,7 @@ tradez des actions, ETFs or crypto-monnaies sur plusieurs plateforme. apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -5110,7 +5174,7 @@ adoptez une stratégie Buy & and Hold apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -5118,7 +5182,7 @@ êtes intéressés d’avoir un aperçu de la composition de votre portefeuille apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -5126,7 +5190,7 @@ valorisez la confidentialité et la propriété de vos données apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -5134,7 +5198,7 @@ êtes minimaliste apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -5142,7 +5206,7 @@ vous souciez de diversifier vos ressources financières apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -5150,7 +5214,7 @@ êtes intéressés d’atteindre l’indépendance financière apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -5158,7 +5222,7 @@ dites non aux feuilles de calcul en apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -5166,7 +5230,7 @@ continuez à lire cette liste apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -5174,7 +5238,7 @@ En appendre plus sur Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -5190,7 +5254,7 @@ Qu’en pensent nos utilisateurs apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -5198,7 +5262,7 @@ Les utilisateurs du monde entier utilisent Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -5206,7 +5270,7 @@ Comment fonctionne Ghostfolio ? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -5214,7 +5278,7 @@ Inscrivez-vous de manière anonyme* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -5222,7 +5286,7 @@ * aucune adresse mail ni carte de crédit requise apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -5230,7 +5294,7 @@ Ajoutez l’une de vos transactions historiques apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -5238,7 +5302,7 @@ Obtenez de précieuses informations sur la composition de votre portefeuille apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -5246,7 +5310,7 @@ Êtes- vous prêts ? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 @@ -5254,7 +5318,7 @@ Obtenez une vue d’ensemble de vos finances personnelles sur plusieurs plateformes. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -5262,7 +5326,7 @@ Démarrer en seulement 3 étapes apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -5459,7 +5523,7 @@ Solutions open source alternatives à apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -5540,7 +5604,7 @@ (Derniers 24 heures) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -5548,7 +5612,7 @@ Ghostfolio Status apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -5564,11 +5628,11 @@ (Derniers 30 jours) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -5584,7 +5648,7 @@ (Derniers 90 jours) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -5624,7 +5688,7 @@ Frais apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5860,7 +5924,7 @@ Oops, échec du transfert de la cash balance. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -6195,6 +6259,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Oops! A data provider is experiencing the hiccups. Oops! Un fournisseur de données rencontre des difficultés. @@ -6489,7 +6561,7 @@ Rejoindre ou voir un compte démo apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6661,7 +6733,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6733,7 +6805,7 @@ View Holding libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6833,7 +6905,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6841,7 +6913,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6889,7 +6961,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6973,7 +7045,7 @@ send an e-mail to apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7001,7 +7073,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7012,6 +7084,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + Oops! Invalid currency. Oups! Devise non valide. @@ -7435,11 +7515,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7467,7 +7547,7 @@ Check the system status at apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7594,6 +7674,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance Performance @@ -7609,6 +7697,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7623,7 +7715,7 @@ The project has been initiated by apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7868,7 +7960,7 @@ Voulez-vous vraiment supprimer cet élément? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7981,11 +8073,11 @@ Démo Live apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8062,6 +8154,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Get Access Obtenir l’accès @@ -8300,11 +8400,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8716,11 +8816,19 @@ Find Ghostfolio on GitHub apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8728,7 +8836,11 @@ Join the Ghostfolio Slack community apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8736,7 +8848,7 @@ Follow Ghostfolio on X (formerly Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 @@ -8744,11 +8856,11 @@ Send an e-mail apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8764,7 +8876,7 @@ Follow Ghostfolio on LinkedIn apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8772,7 +8884,7 @@ Ghostfolio is an independent & bootstrapped business apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8780,7 +8892,7 @@ Support Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index e64f66c03..0ef40ab4f 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -251,11 +251,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -291,15 +291,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -387,11 +387,11 @@ - and is driven by the efforts of its contributors - and is driven by the efforts of its contributors + and is driven by the efforts of its contributors + and is driven by the efforts of its contributors apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -478,6 +478,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price Prezzo di mercato @@ -723,11 +731,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -851,11 +859,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1057,10 +1065,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -1110,6 +1126,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5 anni @@ -1687,7 +1711,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -2087,7 +2111,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -2163,7 +2195,7 @@ or start a discussion at apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -2347,7 +2379,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -2359,7 +2391,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -2371,7 +2403,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -2379,7 +2411,7 @@ Clona libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -2387,7 +2419,7 @@ Esporta la bozza come ICS libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -2599,7 +2631,7 @@ Importo totale previsto libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -2607,7 +2639,7 @@ Risparmio libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -2623,7 +2655,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -2643,7 +2675,7 @@ Deposito libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -2662,6 +2694,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History Subscription History @@ -2814,6 +2854,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light Chiaro @@ -2903,7 +2951,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -3115,7 +3163,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3323,7 +3371,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -3439,7 +3487,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -4243,7 +4291,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -4407,7 +4455,7 @@ and we share aggregated key metrics of the platform’s performance apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -4459,7 +4507,7 @@ Website of Thomas Kaul apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4530,6 +4578,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ No @@ -4686,6 +4742,14 @@ 232 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset Preimpostato @@ -4719,8 +4783,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -4807,8 +4871,8 @@ - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Per Ghostfolio la trasparenza è al centro dei propri valori. Pubblichiamo il codice sorgente come software open source (OSS) sotto la licenza AGPL-3.0 e condividiamo apertamente le metriche chiave aggregate dello stato operativo della piattaforma. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Per Ghostfolio la trasparenza è al centro dei propri valori. Pubblichiamo il codice sorgente come software open source (OSS) sotto la licenza AGPL-3.0 e condividiamo apertamente le metriche chiave aggregate dello stato operativo della piattaforma. apps/client/src/app/pages/open/open-page.html 7 @@ -4819,11 +4883,11 @@ Utenti attivi apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -4831,7 +4895,7 @@ Nuovi utenti apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -4839,7 +4903,7 @@ Utenti nella comunità Slack apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -4855,7 +4919,7 @@ Contributori su GitHub apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -4863,11 +4927,11 @@ Stelle su GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -4875,11 +4939,11 @@ Estrazioni su Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -4887,7 +4951,7 @@ Tempo di attività apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -5007,7 +5071,7 @@ Utenti attivi mensili apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -5015,7 +5079,7 @@ Come si vede su apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -5023,7 +5087,7 @@ Proteggi i tuoi asset. Perfeziona la tua strategia di investimento personale. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -5031,7 +5095,7 @@ Ghostfolio permette alle persone impegnate di tenere traccia di azioni, ETF o criptovalute senza essere tracciate. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -5039,7 +5103,7 @@ Vista a 360° apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -5047,7 +5111,7 @@ Pronto per il Web3 apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -5063,7 +5127,7 @@ Usa Ghostfolio in modo anonimo e possiedi i tuoi dati finanziari. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -5071,7 +5135,7 @@ Beneficia dei continui miglioramenti grazie a una forte comunità. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -5087,7 +5151,7 @@ Perché Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -5095,7 +5159,7 @@ Ghostfolio è per te se... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -5103,7 +5167,7 @@ fai trading di azioni, ETF o criptovalute su più piattaforme apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -5111,7 +5175,7 @@ persegui una strategia buy & hold apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -5119,7 +5183,7 @@ sei interessato a conoscere la composizione del tuo portafoglio apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -5127,7 +5191,7 @@ valorizzi la privacy e la proprietà dei dati apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -5135,7 +5199,7 @@ sei per il minimalismo apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -5143,7 +5207,7 @@ ti interessa diversificare le tue risorse finanziarie apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -5151,7 +5215,7 @@ sei interessato all’indipendenza finanziaria apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -5159,7 +5223,7 @@ non vuoi utilizzare il foglio elettronico nel apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -5167,7 +5231,7 @@ stai ancora leggendo questo elenco apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -5175,7 +5239,7 @@ Ulteriori informazioni su Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -5191,7 +5255,7 @@ Cosa dicono i nostri utenti apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -5199,7 +5263,7 @@ Membri da tutto il mondo utilizzano Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -5207,7 +5271,7 @@ Come funziona Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -5215,7 +5279,7 @@ Iscriviti in modo anonimo* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -5223,7 +5287,7 @@ * non è richiesto alcun indirizzo email né la carta di credito apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -5231,7 +5295,7 @@ Aggiungi le tue transazioni storiche apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -5239,7 +5303,7 @@ Ottieni informazioni preziose sulla composizione del tuo portafoglio apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -5247,7 +5311,7 @@ Sei pronto? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 @@ -5255,7 +5319,7 @@ Ottieni un quadro completo delle tue finanze personali su più piattaforme. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -5263,7 +5327,7 @@ Inizia in soli 3 passi apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -5460,7 +5524,7 @@ L’alternativa open source a apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -5541,7 +5605,7 @@ (Ultime 24 ore) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -5549,7 +5613,7 @@ Ghostfolio Status apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -5565,11 +5629,11 @@ (Ultimi 30 giorni) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -5585,7 +5649,7 @@ (Ultimi 90 giorni) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -5625,7 +5689,7 @@ Commissione apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5861,7 +5925,7 @@ Ops, il trasferimento del saldo di cassa è fallito. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -6196,6 +6260,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Oops! A data provider is experiencing the hiccups. Ops! Un data provider sta riscontrando dei problemi. @@ -6490,7 +6562,7 @@ Registrati adesso o prova l’account demo apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6662,7 +6734,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6734,7 +6806,7 @@ View Holding libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6834,7 +6906,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6842,7 +6914,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6890,7 +6962,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6974,7 +7046,7 @@ send an e-mail to apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7002,7 +7074,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7013,6 +7085,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + Oops! Invalid currency. Oops! Valuta sbagliata. @@ -7436,11 +7516,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7468,7 +7548,7 @@ Check the system status at apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7595,6 +7675,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance Prestazione @@ -7610,6 +7698,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7624,7 +7716,7 @@ The project has been initiated by apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7869,7 +7961,7 @@ Vuoi davvero eliminare questo elemento? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7982,11 +8074,11 @@ Dimostrazione dal vivo apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8063,6 +8155,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Get Access Ottieni l’accesso @@ -8301,11 +8401,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8717,11 +8817,19 @@ Find Ghostfolio on GitHub apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8729,7 +8837,11 @@ Join the Ghostfolio Slack community apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8737,7 +8849,7 @@ Follow Ghostfolio on X (formerly Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 @@ -8745,11 +8857,11 @@ Send an e-mail apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8765,7 +8877,7 @@ Follow Ghostfolio on LinkedIn apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8773,7 +8885,7 @@ Ghostfolio is an independent & bootstrapped business apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8781,7 +8893,7 @@ Support Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 diff --git a/apps/client/src/locales/messages.ja.xlf b/apps/client/src/locales/messages.ja.xlf index 202fc4c62..03c6ce0bd 100644 --- a/apps/client/src/locales/messages.ja.xlf +++ b/apps/client/src/locales/messages.ja.xlf @@ -536,11 +536,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -576,15 +576,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -684,11 +684,11 @@ - and is driven by the efforts of its contributors - そして、コントリビューターたちの努力によって推進されています + and is driven by the efforts of its contributors + そして、コントリビューターたちの努力によって推進されています apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -759,6 +759,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price 市場価格 @@ -879,6 +887,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History サブスクリプション履歴 @@ -1060,7 +1076,7 @@ そして、プラットフォームのパフォーマンスに関する集計された主要指標を共有しています apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -1092,7 +1108,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -1680,8 +1704,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - ソースコードはオープンソースソフトウェア(OSS)としてAGPL-3.0ライセンスの下で完全に公開されています + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + ソースコードはオープンソースソフトウェア(OSS)としてAGPL-3.0ライセンスの下で完全に公開されています apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -1828,11 +1852,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -2251,6 +2275,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5年 @@ -2479,6 +2511,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light ライト @@ -2780,7 +2820,7 @@ おっと、現金残高の振替に失敗しました。 apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -3080,7 +3120,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -3228,11 +3268,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -3396,7 +3436,7 @@ 月間アクティブユーザー apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -3404,11 +3444,11 @@ GitHubのスター apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -3416,11 +3456,11 @@ Docker Hub上でのプル apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -3428,7 +3468,7 @@ で見られるように apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -3436,7 +3476,7 @@ あなたの資産を守る。個人の投資戦略を洗練させる。 apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -3444,7 +3484,7 @@ Ghostfolioは、追跡されることなく株式、ETF、暗号通貨を管理できる、忙しい人々のためのツールです。 apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -3452,7 +3492,7 @@ 360°ビュー apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -3460,7 +3500,7 @@ 複数のプラットフォームにわたる個人財務の全体像を把握しましょう。 apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -3468,7 +3508,7 @@ Web3対応 apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -3484,7 +3524,7 @@ Ghostfolioを匿名で使用し、財務データを自分のものにしましょう。 apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -3492,7 +3532,7 @@ 強力なコミュニティによる継続的な改善の恩恵を受けましょう。 apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -3508,7 +3548,7 @@ なぜGhostfolioなのか? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -3516,7 +3556,7 @@ Ghostfolioは、あなたが…であるなら、あなたのためのものです apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -3532,7 +3572,7 @@ 複数のプラットフォームで株式、ETF、または暗号資産を取引すること apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -3540,7 +3580,7 @@ 購入し保有する戦略を追求している apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -3548,7 +3588,7 @@ あなたのポートフォリオ構成の洞察を得ることに興味 apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -3556,7 +3596,7 @@ プライバシーとデータの所有権を尊重すること apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -3564,7 +3604,7 @@ ミニマリズムに apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -3572,7 +3612,7 @@ 資金源の多様化を重視すること apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -3580,7 +3620,7 @@ 経済的自立に関心が apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -3588,7 +3628,7 @@ スプレッドシートに年はノーと言う apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -3596,7 +3636,7 @@ まだこのリストを読んでいる apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -3604,7 +3644,7 @@ Ghostfolioについて詳しく知る apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -3620,7 +3660,7 @@ 私たちのユーザーが言っていること apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -3628,7 +3668,7 @@ 世界中のメンバーがGhostfolio Premiumを使っています apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -3636,7 +3676,7 @@ Ghostfolioはどのように機能しますか? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -3644,7 +3684,7 @@ 3ステップだけで始める apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -3660,7 +3700,7 @@ 匿名で登録する* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -3668,7 +3708,7 @@ *メールアドレスもクレジットカードも不要 apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -3676,7 +3716,7 @@ あなたの過去の取引のいずれかを追加 apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -3684,7 +3724,7 @@ ポートフォリオ構成についての賫重なインサイトを得る apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -3692,11 +3732,11 @@ あなたは準備できていますか? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 - 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. Ghostfolioでは、透明性が私たちの価値観の中核です。ソースコードをオープンソースソフトウェア(OSS)としてAGPL-3.0ライセンスの下で公開し、プラットフォームの運用状況の集計主要指標を公然と共有しています。 apps/client/src/app/pages/open/open-page.html @@ -3708,7 +3748,7 @@ (直近24時間) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -3716,7 +3756,7 @@ Ghostfolioステータス apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -3732,11 +3772,11 @@ アクティブユーザー apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -3744,11 +3784,11 @@ (直近30日間) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -3764,7 +3804,7 @@ 新規ユーザー apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -3772,7 +3812,7 @@ Slackコミュニティのユーザー apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -3788,7 +3828,7 @@ GitHubのコントリビューター apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -3796,7 +3836,7 @@ (直近90日間) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -3804,7 +3844,7 @@ アップタイム apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -3960,7 +4000,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -3976,7 +4016,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -4000,7 +4040,7 @@ または議論を開始で apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -4344,7 +4384,7 @@ 入金 libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -4789,7 +4829,7 @@ オープンソースの代替品 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -4849,7 +4889,7 @@ Thomas Kaulのウェブサイト apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4920,6 +4960,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ いいえ @@ -5145,7 +5193,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -5157,7 +5205,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -5173,7 +5221,7 @@ クローン libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -5181,7 +5229,7 @@ ドラフトをICSとしてエクスポート libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -5321,7 +5369,7 @@ 予測総額 libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -5337,7 +5385,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -5349,7 +5397,7 @@ 貯蓄 libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -5363,10 +5411,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -5429,7 +5485,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -5461,7 +5517,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -5572,6 +5628,14 @@ 449 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset プリセット @@ -5661,7 +5725,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -5697,7 +5761,7 @@ 手数料 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5973,7 +6037,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -6228,6 +6292,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Reset Filters フィルターをリセット @@ -6514,7 +6586,7 @@ Join now or check out the example account apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6694,7 +6766,7 @@ View Holding libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6746,7 +6818,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6818,7 +6890,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6826,7 +6898,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6906,7 +6978,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6950,7 +7022,7 @@ send an e-mail to apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7017,6 +7089,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + This year This year @@ -7034,7 +7114,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7460,11 +7540,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7480,7 +7560,7 @@ Check the system status at apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7619,6 +7699,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance Performance @@ -7634,6 +7722,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7648,7 +7740,7 @@ The project has been initiated by apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7869,7 +7961,7 @@ Do you really want to delete this item? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7982,11 +8074,11 @@ Live Demo apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8071,6 +8163,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Learn more Learn more @@ -8293,11 +8393,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8717,7 +8817,7 @@ Support Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 @@ -8725,11 +8825,19 @@ Find Ghostfolio on GitHub apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8737,7 +8845,7 @@ Ghostfolio is an independent & bootstrapped business apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8745,11 +8853,11 @@ Send an e-mail apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8765,7 +8873,11 @@ Join the Ghostfolio Slack community apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8773,7 +8885,7 @@ Follow Ghostfolio on LinkedIn apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8781,7 +8893,7 @@ Follow Ghostfolio on X (formerly Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 diff --git a/apps/client/src/locales/messages.ko.xlf b/apps/client/src/locales/messages.ko.xlf index 66fc58ce2..169c73e39 100644 --- a/apps/client/src/locales/messages.ko.xlf +++ b/apps/client/src/locales/messages.ko.xlf @@ -536,11 +536,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -576,15 +576,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -684,11 +684,11 @@ - and is driven by the efforts of its contributors - 기여자들의 노력으로 발전하고 있습니다 + and is driven by the efforts of its contributors + 기여자들의 노력으로 발전하고 있습니다 apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -759,6 +759,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price 시장 가격 @@ -879,6 +887,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History Subscription History @@ -1060,7 +1076,7 @@ 또한 플랫폼 성과에 대한 집계된 핵심 지표를 공유합니다 apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -1092,7 +1108,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -1680,8 +1704,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - 소스 코드는 오픈 소스 소프트웨어로 완전히 공개되어 있으며, AGPL-3.0 라이선스 하에 제공됩니다 + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + 소스 코드는 오픈 소스 소프트웨어로 완전히 공개되어 있으며, AGPL-3.0 라이선스 하에 제공됩니다 apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -1828,11 +1852,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -2251,6 +2275,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5년 @@ -2479,6 +2511,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light 라이트 @@ -2780,7 +2820,7 @@ 죄송합니다. 현금 잔액 이체가 실패했습니다. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -3080,7 +3120,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -3228,11 +3268,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -3396,7 +3436,7 @@ 월간 활성 사용자 apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -3404,11 +3444,11 @@ 깃허브 스타 apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -3416,11 +3456,11 @@ 도커 허브에서 가져오기 apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -3428,7 +3468,7 @@ 에서 볼 수 있듯이 apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -3436,7 +3476,7 @@ 자산을 보호하세요. 개인 투자 전략을 정교화하세요. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -3444,7 +3484,7 @@ Ghostfolio는 바쁜 사람들이 추적당하지 않으면서도 주식, ETF, 암호화폐를 손쉽게 추적할 수 있도록 돕습니다. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -3452,7 +3492,7 @@ 360° 보기 apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -3460,7 +3500,7 @@ 여러 플랫폼에 걸쳐 개인 재정에 대한 전체 그림을 얻으세요. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -3468,7 +3508,7 @@ 웹3 준비 apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -3484,7 +3524,7 @@ 익명으로 Ghostfolio를 사용하고 금융 데이터를 소유하세요. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -3492,7 +3532,7 @@ 강력한 커뮤니티를 통해 지속적인 개선의 혜택을 누리세요. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -3508,7 +3548,7 @@ Ghostfolio인가요? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -3516,7 +3556,7 @@ Ghostfolio는 당신을 위한 것입니다... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -3524,7 +3564,7 @@ 여러 플랫폼에서 주식, ETF 또는 암호화폐 거래 apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -3532,7 +3572,7 @@ 매수 후 보유 전략을 추구 apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -3540,7 +3580,7 @@ 포트폴리오 구성에 대한 인사이트가 필요하신가요 apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -3548,7 +3588,7 @@ 개인 정보 보호 및 데이터 소유권을 소중히 여깁니다. apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -3556,7 +3596,7 @@ 미니멀리즘으로 apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -3564,7 +3604,7 @@ 재정 자원을 다양화하는 데 관심을 가짐 apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -3572,7 +3612,7 @@ 재정적 독립에 관심 apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -3580,7 +3620,7 @@ 의 스프레드시트에 거부 의사 표시 apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -3588,7 +3628,7 @@ 아직도 이 목록을 읽고 있어요 apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -3596,7 +3636,7 @@ Ghostfolio에 대해 자세히 알아보기 apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -3612,7 +3652,7 @@ 사용자의 이야기 apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -3620,7 +3660,7 @@ 전 세계의 사용자들이 Ghostfolio 프리미엄을 사용하고 있습니다 apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -3628,7 +3668,7 @@ Ghostfolio는 어떻게 동작하나요? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -3636,7 +3676,7 @@ 단 3단계만으로 시작하세요 apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -3652,7 +3692,7 @@ 익명으로 가입* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -3660,7 +3700,7 @@ * 이메일 주소 및 신용카드 정보가 필요하지 않습니다 apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -3668,7 +3708,7 @@ 과거 거래를 추가하세요. apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -3676,7 +3716,7 @@ 포트폴리오 구성에 대한 유의미한 인사이트를 확인하세요 apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -3684,12 +3724,12 @@ 준비되셨나요? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Ghostfolio는 투명성을 핵심 가치로 삼습니다. 우리는 소스 코드를 오픈 소스 소프트웨어로 공개하며, AGPL-3.0 라이선스 하에 배포합니다. 또한 플랫폼 운영 현황에 대한 집계된 핵심 지표를 공개적으로 공유합니다. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Ghostfolio는 투명성을 핵심 가치로 삼습니다. 우리는 소스 코드를 오픈 소스 소프트웨어로 공개하며, AGPL-3.0 라이선스 하에 배포합니다. 또한 플랫폼 운영 현황에 대한 집계된 핵심 지표를 공개적으로 공유합니다. apps/client/src/app/pages/open/open-page.html 7 @@ -3700,7 +3740,7 @@ (지난 24시간) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -3708,7 +3748,7 @@ 고스트폴리오 상태 apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -3724,11 +3764,11 @@ 활성 사용자 apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -3736,11 +3776,11 @@ (지난 30일) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -3756,7 +3796,7 @@ 신규 사용자 apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -3764,7 +3804,7 @@ 슬랙 커뮤니티의 사용자 apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -3780,7 +3820,7 @@ 깃허브의 기여자 apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -3788,7 +3828,7 @@ (지난 90일) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -3796,7 +3836,7 @@ 가동 시간 apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -3952,7 +3992,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -3968,7 +4008,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -3992,7 +4032,7 @@ 또는 다음에서 토론을 시작하세요. apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -4336,7 +4376,7 @@ 보증금 libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -4781,7 +4821,7 @@ 의 오픈 소스 대안 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -4841,7 +4881,7 @@ 토마스 카울의 웹사이트 apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4912,6 +4952,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ 아니요 @@ -5137,7 +5185,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -5149,7 +5197,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -5165,7 +5213,7 @@ 클론 libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -5173,7 +5221,7 @@ 초안을 달력 파일로 내보내기 libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -5313,7 +5361,7 @@ 예상총액 libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -5329,7 +5377,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -5341,7 +5389,7 @@ 저금 libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -5355,10 +5403,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -5421,7 +5477,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -5453,7 +5509,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -5564,6 +5620,14 @@ 449 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset 프리셋 @@ -5661,7 +5725,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -5697,7 +5761,7 @@ 수수료 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5973,7 +6037,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -6228,6 +6292,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Reset Filters 필터 재설정 @@ -6514,7 +6586,7 @@ 지금 가입하거나 예시 계정을 확인하세요. apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6694,7 +6766,7 @@ 보유 종목 보기 libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6746,7 +6818,7 @@ 오픈 소스 apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6818,7 +6890,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6826,7 +6898,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6906,7 +6978,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6950,7 +7022,7 @@ 에게 이메일을 보내다 apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7017,6 +7089,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + This year 올해 @@ -7034,7 +7114,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7460,11 +7540,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7480,7 +7560,7 @@ 시스템 상태를 확인하세요. apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7619,6 +7699,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance 성과 @@ -7634,6 +7722,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7648,7 +7740,7 @@ 프로젝트는 다음에 의해 시작되었습니다. apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7869,7 +7961,7 @@ 이 항목을 정말로 삭제하시겠습니까? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7982,11 +8074,11 @@ 라이브 데모 apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8071,6 +8163,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Learn more 자세히 알아보기 @@ -8293,11 +8393,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - 버그가 발생하거나 개선 사항이나 새로운 기능을 제안하고 싶다면 Ghostfolio 슬랙 커뮤니티에 가입하고 @ghostfolio_에 게시하세요. + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + 버그가 발생하거나 개선 사항이나 새로운 기능을 제안하고 싶다면 Ghostfolio 슬랙 커뮤니티에 가입하고 @ghostfolio_에 게시하세요. apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8717,7 +8817,7 @@ 고스트폴리오 지원 apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 @@ -8725,11 +8825,19 @@ 깃허브에서 Ghostfolio 찾기 apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8737,7 +8845,7 @@ Ghostfolio는 독립적이고 부트스트랩된 사업입니다. apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8745,11 +8853,11 @@ 이메일 보내기 apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8765,7 +8873,11 @@ Ghostfolio 슬랙 커뮤니티에 참여하세요 apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8773,7 +8885,7 @@ LinkedIn에서 Ghostfolio를 팔로우하세요. apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8781,7 +8893,7 @@ X(이전의 Twitter)에서 Ghostfolio를 팔로우하세요. apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index 92aa4a091..7c74e5806 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -250,11 +250,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -290,15 +290,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -386,11 +386,11 @@ - and is driven by the efforts of its contributors - en wordt gedreven door de inspanningen van zijn bijdragers + and is driven by the efforts of its contributors + en wordt gedreven door de inspanningen van zijn bijdragers apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -477,6 +477,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price Marktprijs @@ -722,11 +730,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -850,11 +858,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1056,10 +1064,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -1109,6 +1125,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5J @@ -1686,7 +1710,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -2086,7 +2110,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -2162,7 +2194,7 @@ of start een discussie op apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -2346,7 +2378,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -2358,7 +2390,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -2370,7 +2402,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -2378,7 +2410,7 @@ Kloon libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -2386,7 +2418,7 @@ Concept exporteren als ICS libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -2598,7 +2630,7 @@ Verwacht totaalbedrag libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -2606,7 +2638,7 @@ Besparingen libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -2622,7 +2654,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -2642,7 +2674,7 @@ Storting libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -2661,6 +2693,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History Subscription History @@ -2813,6 +2853,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light Licht @@ -2902,7 +2950,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -3114,7 +3162,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3322,7 +3370,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -3438,7 +3486,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -4242,7 +4290,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -4406,7 +4454,7 @@ en we delen geaggregeerde belangrijke prestatiegegevens van het platform apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -4458,7 +4506,7 @@ Website van Thomas Kaul apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4529,6 +4577,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ Geen @@ -4685,6 +4741,14 @@ 232 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset Voorinstelling @@ -4718,8 +4782,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - De broncode is volledig beschikbaar als open source software (OSS) onder de AGPL-3.0-licentie + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + De broncode is volledig beschikbaar als open source software (OSS) onder de AGPL-3.0-licentie apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -4806,8 +4870,8 @@ - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Bij Ghostfolio is transparantie één van onze kernwaarden. We publiceren de broncode als open source software (OSS) onder de AGPL-3.0 licentie en we delen openlijk geaggregeerde kerncijfers van de operationele status van het platform. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Bij Ghostfolio is transparantie één van onze kernwaarden. We publiceren de broncode als open source software (OSS) onder de AGPL-3.0 licentie en we delen openlijk geaggregeerde kerncijfers van de operationele status van het platform. apps/client/src/app/pages/open/open-page.html 7 @@ -4818,11 +4882,11 @@ Actieve gebruikers apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -4830,7 +4894,7 @@ Nieuwe gebruikers apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -4838,7 +4902,7 @@ Gebruikers in de Slack gemeenschap apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -4854,7 +4918,7 @@ Contributors op GitHub apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -4862,11 +4926,11 @@ Sterren op GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -4874,11 +4938,11 @@ Pulls op Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -4886,7 +4950,7 @@ Bedrijfstijd apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -5006,7 +5070,7 @@ Maandelijkse actieve gebruikers apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -5014,7 +5078,7 @@ Zoals te zien in apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -5022,7 +5086,7 @@ Bescherm je financiële bezittingen. Verfijn je persoonlijke investeringsstrategie. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -5030,7 +5094,7 @@ Ghostfolio stelt drukbezette mensen in staat om aandelen, ETF’s of cryptocurrencies bij te houden zonder gevolgd te worden. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -5038,7 +5102,7 @@ 360°-overzicht apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -5046,7 +5110,7 @@ Klaar voor Web3 apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -5062,7 +5126,7 @@ Gebruik Ghostfolio anoniem en bezit je financiële gegevens. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -5070,7 +5134,7 @@ Profiteer van voortdurende verbeteringen door een sterke gemeenschap. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -5086,7 +5150,7 @@ Waarom Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -5094,7 +5158,7 @@ Ghostfolio is iets voor je als je... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -5102,7 +5166,7 @@ handelt in aandelen, ETF’s of cryptocurrencies op meerdere platforms apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -5110,7 +5174,7 @@ streeft naar een buy & hold strategie apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -5118,7 +5182,7 @@ geïnteresseerd bent in het krijgen van inzicht in je portefeuillesamenstelling apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -5126,7 +5190,7 @@ privacy en eigendom van gegevens waardeert apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -5134,7 +5198,7 @@ houdt van een minimalistisch ontwerp apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -5142,7 +5206,7 @@ zorgdraagt voor het diversifiëren van je financiële middelen apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -5150,7 +5214,7 @@ geïnteresseerd bent in financiële onafhankelijkheid apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -5158,7 +5222,7 @@ "nee" zegt tegen spreadsheets in apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -5166,7 +5230,7 @@ nog steeds deze lijst aan het lezen bent apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -5174,7 +5238,7 @@ Leer meer over Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -5190,7 +5254,7 @@ Wat onze gebruikers zeggen apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -5198,7 +5262,7 @@ Leden van over de hele wereld gebruikenGhostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -5206,7 +5270,7 @@ Hoe Ghostfolio werkt? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -5214,7 +5278,7 @@ Anoniem aanmelden* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -5222,7 +5286,7 @@ * geen e-mailadres of creditcard nodig apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -5230,7 +5294,7 @@ Voeg al je historische transacties toe apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -5238,7 +5302,7 @@ Krijg waardevolle inzichten in de samenstelling van je portefeuille apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -5246,7 +5310,7 @@ Ben jij er klaar voor? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 @@ -5254,7 +5318,7 @@ Krijg een volledig beeld van je persoonlijke financiën op meerdere platforms. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -5262,7 +5326,7 @@ Aan de slag in slechts 3 stappen apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -5459,7 +5523,7 @@ Open Source alternatief voor apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -5540,7 +5604,7 @@ (Laatste 24 uur) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -5548,7 +5612,7 @@ Ghostfolio Status apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -5564,11 +5628,11 @@ (Laatste 30 dagen) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -5584,7 +5648,7 @@ (Laatste 90 dagen) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -5624,7 +5688,7 @@ Kosten apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5860,7 +5924,7 @@ Oeps, geldoverdracht is mislukt. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -6195,6 +6259,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Oops! A data provider is experiencing the hiccups. Oeps! Een gegevensaanbieder ondervindt problemen. @@ -6489,7 +6561,7 @@ Word nu lid of bekijk het voorbeeldaccount apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6661,7 +6733,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6733,7 +6805,7 @@ Bekijk Holding libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6833,7 +6905,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6841,7 +6913,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6889,7 +6961,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6973,7 +7045,7 @@ stuur een e-mail naar apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7001,7 +7073,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7012,6 +7084,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + Oops! Invalid currency. Oeps! Ongeldige valuta. @@ -7435,11 +7515,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7467,7 +7547,7 @@ Check the system status at apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7594,6 +7674,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance Prestatie @@ -7609,6 +7697,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7623,7 +7715,7 @@ Het project is geïnitieerd door apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7868,7 +7960,7 @@ Wilt u dit item echt verwijderen? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7981,11 +8073,11 @@ Live-demo apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8062,6 +8154,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Get Access Krijg toegang @@ -8300,11 +8400,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - Als je een bug tegenkomt, een verbetering wilt voorstellen of een nieuwe functie wilt toevoegen, word dan lid van de Ghostfolio Slack-community. Stuur een bericht naar @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + Als je een bug tegenkomt, een verbetering wilt voorstellen of een nieuwe functie wilt toevoegen, word dan lid van de Ghostfolio Slack-community. Stuur een bericht naar @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8716,11 +8816,19 @@ Vind Ghostfolio op GitHub apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8728,7 +8836,11 @@ Word lid van de Ghostfolio Slack-gemeenschap apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8736,7 +8848,7 @@ Volg Ghostfolio op X (voorheen Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 @@ -8744,11 +8856,11 @@ Stuur een e-mail apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8764,7 +8876,7 @@ Volg Ghostfolio op LinkedIn apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8772,7 +8884,7 @@ Ghostfolio is een onafhankelijk en zelfgefinancierd bedrijf apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8780,7 +8892,7 @@ Ondersteun Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index dd80e0630..bd6c3a73d 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -527,11 +527,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -567,15 +567,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -675,11 +675,11 @@ - and is driven by the efforts of its contributors - i jest rozwijany dzięki pracy jego współtwórców + and is driven by the efforts of its contributors + i jest rozwijany dzięki pracy jego współtwórców apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -750,6 +750,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price Cena Rynkowa @@ -870,6 +878,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History Subscription History @@ -1027,7 +1043,7 @@ and we share aggregated key metrics of the platform’s performance apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -1059,7 +1075,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -1647,8 +1671,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - Kod źródłowy jest w pełni dostępny jako oprogramowanie open source (OSS) na licencji AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + Kod źródłowy jest w pełni dostępny jako oprogramowanie open source (OSS) na licencji AGPL-3.0 license apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -1795,11 +1819,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -2218,6 +2242,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5 lat @@ -2446,6 +2478,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light Jasny @@ -2747,7 +2787,7 @@ Ups, transfer salda nie powiódł się. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -3047,7 +3087,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -3195,11 +3235,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -3363,7 +3403,7 @@ Aktywni Użytkownicy w Miesiącu apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -3371,11 +3411,11 @@ Gwiazdki na GitHubie apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -3383,11 +3423,11 @@ Pobrania na Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -3395,7 +3435,7 @@ Dostrzegli Nas apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -3403,7 +3443,7 @@ Chroń swoje zasoby. Udoskonal swoją osobistą strategię inwestycyjną. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -3411,7 +3451,7 @@ Ghostfolio umożliwia zapracowanym osobom śledzenie akcji, funduszy ETF lub kryptowalut, jednocześnie zachowując prywatność. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -3419,7 +3459,7 @@ Widok 360° apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -3427,7 +3467,7 @@ Uzyskaj pełny obraz swoich finansów osobistych na wielu różnych platformach. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -3435,7 +3475,7 @@ Gotowy na Web3 apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -3451,7 +3491,7 @@ Korzystaj z Ghostfolio anonimowo i zachowaj pełną kontrolę nad swoimi danymi finansowymi. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -3459,7 +3499,7 @@ Czerp korzyści z nieustannych ulepszeń dzięki silnej społeczności. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -3475,7 +3515,7 @@ Dlaczego Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -3483,7 +3523,7 @@ Ghostfolio jest dla Ciebie, jeśli... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -3491,7 +3531,7 @@ handlujesz akcjami, funduszami ETF lub kryptowalutami na wielu platformach apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -3499,7 +3539,7 @@ realizujesz strategię buy & hold apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -3507,7 +3547,7 @@ chcesz uzyskać wgląd w strukturę swojego portfolio apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -3515,7 +3555,7 @@ cenisz sobie prywatność i własność swoich danych apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -3523,7 +3563,7 @@ lubisz minimalizm apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -3531,7 +3571,7 @@ zależy Ci na dywersyfikacji swoich zasobów finansowych apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -3539,7 +3579,7 @@ jesteś zainteresowany niezależnością finansową apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -3547,7 +3587,7 @@ mówisz „nie” arkuszom kalkulacyjnym w roku apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -3555,7 +3595,7 @@ nadal czytasz tę listę apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -3563,7 +3603,7 @@ Dowiedz się więcej o Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -3579,7 +3619,7 @@ Co mówią nasi użytkownicy apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -3587,7 +3627,7 @@ Użytkownicy z całego świata korzystają z Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -3595,7 +3635,7 @@ Jak działa Ghostfolio ? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -3603,7 +3643,7 @@ Rozpocznij w zaledwie 3 krokach apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -3619,7 +3659,7 @@ Zarejestruj się anonimowo* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -3627,7 +3667,7 @@ * nie jest wymagany ani adres e-mail, ani karta kredytowa apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -3635,7 +3675,7 @@ Dodaj dowolne z Twoich historycznych transakcji apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -3643,7 +3683,7 @@ Zyskaj cenny wgląd w strukturę swojego portfolio apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -3651,12 +3691,12 @@ Czy jesteś gotów? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 - 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. - W Ghostfolio przejrzystość stanowi podstawę naszych wartości. Publikujemy kod źródłowy jako oprogramowanie open source (OSS) na licencji AGPL-3.0 i otwarcie udostępniamy zagregowane kluczowe wskaźniki dotyczące stanu operacyjnego platformy. + 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. + W Ghostfolio przejrzystość stanowi podstawę naszych wartości. Publikujemy kod źródłowy jako oprogramowanie open source (OSS) na licencji AGPL-3.0 i otwarcie udostępniamy zagregowane kluczowe wskaźniki dotyczące stanu operacyjnego platformy. apps/client/src/app/pages/open/open-page.html 7 @@ -3667,7 +3707,7 @@ (Ostatnie 24 godziny) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -3675,7 +3715,7 @@ Ghostfolio Status apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -3691,11 +3731,11 @@ Aktywni Użytkownicy apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -3703,11 +3743,11 @@ (Ostatnie 30 dni) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -3723,7 +3763,7 @@ Nowi Użytkownicy apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -3731,7 +3771,7 @@ Użytkownicy w społeczności Slack apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -3747,7 +3787,7 @@ Współtwórcy na GitHubie – osoby zaangażowane w rozwój projektu apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -3755,7 +3795,7 @@ (Ostatnie 90 dni) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -3763,7 +3803,7 @@ Czas Sprawności apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -3919,7 +3959,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -3935,7 +3975,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -3959,7 +3999,7 @@ lub rozpocznij dyskusję n apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -4303,7 +4343,7 @@ Depozyt libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -4748,7 +4788,7 @@ Alternatywa Open Source dla apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -4808,7 +4848,7 @@ Strona internetowa Thomas'a Kaul'a apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4879,6 +4919,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ Nie @@ -5084,7 +5132,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -5096,7 +5144,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -5112,7 +5160,7 @@ Sklonuj libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -5120,7 +5168,7 @@ Eksportuj Wersję Roboczą jako ICS libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -5236,7 +5284,7 @@ Przewidywana Łączna Kwota libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -5252,7 +5300,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -5264,7 +5312,7 @@ Oszczędności libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -5278,10 +5326,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -5344,7 +5400,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -5376,7 +5432,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -5487,6 +5543,14 @@ 449 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset Wstępnie ustawione @@ -5584,7 +5648,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -5620,7 +5684,7 @@ Opłata apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5896,7 +5960,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -6195,6 +6259,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Oops! A data provider is experiencing the hiccups. Ups! Dostawca danych zmaga się teraz z drobnymi przeszkodami. @@ -6489,7 +6561,7 @@ Dołącz teraz lub sprawdź przykładowe konto apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6661,7 +6733,7 @@ Otwarty Kod Źródłowy apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6733,7 +6805,7 @@ Podgląd inwestycji libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6833,7 +6905,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6841,7 +6913,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6889,7 +6961,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6973,7 +7045,7 @@ wyślij e-mail do apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7001,7 +7073,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7012,6 +7084,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + Oops! Invalid currency. Ups! Błędna waluta. @@ -7435,11 +7515,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7467,7 +7547,7 @@ Sprawdź status systemu n apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7594,6 +7674,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance Wydajność @@ -7609,6 +7697,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7623,7 +7715,7 @@ Projekt został zainicjowany przez apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7868,7 +7960,7 @@ Czy na pewno chcesz usunąć ten element? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7981,11 +8073,11 @@ Demonstracja na żywo apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8062,6 +8154,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Get Access Uzyskaj dostęp @@ -8300,11 +8400,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8716,11 +8816,19 @@ Znajdź Ghostfolio na GitHub apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8728,7 +8836,11 @@ Dołącz do społeczności Ghostfolio na Slacku apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8736,7 +8848,7 @@ Śledź Ghostfolio na X (poprzednio Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 @@ -8744,11 +8856,11 @@ Wyślij e-mail apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8764,7 +8876,7 @@ Śledź Ghostfolio na LinkedIn apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8772,7 +8884,7 @@ Ghostfolio to niezależna & samofinansująca się firma apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8780,7 +8892,7 @@ Wesprzyj Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index fd79ad6e8..6776dcf27 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -306,11 +306,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -346,15 +346,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -434,11 +434,11 @@ - and is driven by the efforts of its contributors - and is driven by the efforts of its contributors + and is driven by the efforts of its contributors + and is driven by the efforts of its contributors apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -533,6 +533,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price Preço de Mercado @@ -605,6 +613,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History Subscription History @@ -958,7 +974,7 @@ Depósito libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -1026,11 +1042,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1308,10 +1324,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -1361,6 +1385,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5A @@ -1685,6 +1717,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light Claro @@ -1974,7 +2014,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -2234,7 +2274,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -2258,7 +2306,7 @@ or start a discussion at apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -2618,11 +2666,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -2766,7 +2814,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -2778,7 +2826,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -2790,7 +2838,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -2798,7 +2846,7 @@ Clonar libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -2806,7 +2854,7 @@ Exportar Rascunho como ICS libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -2862,7 +2910,7 @@ Montante Total Projetado libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -2878,7 +2926,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -2890,7 +2938,7 @@ Poupanças libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -2934,7 +2982,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -3218,7 +3266,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -3390,7 +3438,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -3438,7 +3486,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -4242,7 +4290,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -4406,7 +4454,7 @@ and we share aggregated key metrics of the platform’s performance apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -4458,7 +4506,7 @@ Website of Thomas Kaul apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4529,6 +4577,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ Não @@ -4685,6 +4741,14 @@ 232 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset Predefinição @@ -4718,8 +4782,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -4806,8 +4870,8 @@ - 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. - Na Ghostfolio, a transparência está no centro dos nossos valores. Publicamos o código fonte como 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. + Na Ghostfolio, a transparência está no centro dos nossos valores. Publicamos o código fonte como 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 7 @@ -4818,11 +4882,11 @@ Utilizadores ativos apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -4830,7 +4894,7 @@ Novos utilizadores apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -4838,7 +4902,7 @@ Utilizadores na comunidade Slack apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -4854,7 +4918,7 @@ Colaboradores em GitHub apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -4862,11 +4926,11 @@ Estrelas no GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -4874,11 +4938,11 @@ Não puxa Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -4886,7 +4950,7 @@ Tempo de funcionamento apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -5006,7 +5070,7 @@ Usuários ativos mensais apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -5014,7 +5078,7 @@ Como visto em apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -5022,7 +5086,7 @@ Proteja o seu assets. Refine your personal investment strategy. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -5030,7 +5094,7 @@ O Ghostfolio permite que pessoas ocupadas acompanhem ações, ETFs ou criptomoedas sem serem rastreadas. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -5038,7 +5102,7 @@ 360° visualizar apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -5046,7 +5110,7 @@ Web3 Preparar apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -5062,7 +5126,7 @@ Use o Ghostfolio anonimamente e possua seus dados financeiros. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -5070,7 +5134,7 @@ Beneficie-se de melhorias contínuas através de uma comunidade forte. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -5086,7 +5150,7 @@ Por que Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -5094,7 +5158,7 @@ Ghostfolio é para você se você for... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -5102,7 +5166,7 @@ negociar ações, ETFs ou criptomoedas em múltiplas plataformas apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -5110,7 +5174,7 @@ buscando uma compra & estratégia de retenção apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -5118,7 +5182,7 @@ interessado em obter insights sobre a composição do seu portfólio apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -5126,7 +5190,7 @@ valorizando a privacidade e a propriedade dos dados apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -5134,7 +5198,7 @@ no minimalismo apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -5142,7 +5206,7 @@ preocupando-se em diversificar seus recursos financeiros apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -5150,7 +5214,7 @@ interessado em independência financeira apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -5158,7 +5222,7 @@ dizendo não às planilhas em apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -5166,7 +5230,7 @@ ainda lendo esta lista apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -5174,7 +5238,7 @@ Saiba mais sobre o Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -5190,7 +5254,7 @@ Qual é o nosso users are saying apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -5198,7 +5262,7 @@ Membros de todo o mundo estão usando Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -5206,7 +5270,7 @@ Como é que Ghostfolio work? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -5214,7 +5278,7 @@ Inscreva-se anonimamente* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -5222,7 +5286,7 @@ * no e-mail address nor credit card required apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -5230,7 +5294,7 @@ Adicione qualquer uma de suas transações históricas apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -5238,7 +5302,7 @@ Obtenha insights valiosos sobre a composição do seu portfólio apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -5246,7 +5310,7 @@ São you preparar? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 @@ -5254,7 +5318,7 @@ Tenha uma visão completa das suas finanças pessoais em diversas plataformas. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -5262,7 +5326,7 @@ Comece em apenas 3 passos apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -5459,7 +5523,7 @@ Alternativa de software livre ao apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -5540,7 +5604,7 @@ (Últimas 24 horas) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -5548,7 +5612,7 @@ Ghostfolio Status apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -5564,11 +5628,11 @@ (Últimos 30 dias) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -5584,7 +5648,7 @@ (Últimos 90 dias) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -5624,7 +5688,7 @@ Taxa apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5860,7 +5924,7 @@ Ops, a transferência do saldo em dinheiro falhou. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -6195,6 +6259,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Oops! A data provider is experiencing the hiccups. Ops! Um provedor de dados está enfrentando problemas. @@ -6489,7 +6561,7 @@ Cadastre-se agora ou confira a conta de exemplo apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6661,7 +6733,7 @@ Código aberto apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6733,7 +6805,7 @@ View Holding libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6833,7 +6905,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6841,7 +6913,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6889,7 +6961,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6973,7 +7045,7 @@ send an e-mail to apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7001,7 +7073,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7012,6 +7084,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + Oops! Invalid currency. Ops! Moeda inválida. @@ -7435,11 +7515,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7467,7 +7547,7 @@ Check the system status at apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7594,6 +7674,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance Performance @@ -7609,6 +7697,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7623,7 +7715,7 @@ The project has been initiated by apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7868,7 +7960,7 @@ Do you really want to delete this item? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7981,11 +8073,11 @@ Live Demo apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8062,6 +8154,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Get Access Get Access @@ -8300,11 +8400,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8716,11 +8816,19 @@ Encontre o Ghostfolio no GitHub apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8728,7 +8836,11 @@ Junte-se à comunidade do Ghostfolio Slack apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8736,7 +8848,7 @@ Siga o Ghostfolio no X (antigo Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 @@ -8744,11 +8856,11 @@ Enviar um e-mail apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8764,7 +8876,7 @@ Siga o Ghostfolio no LinkedIn apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8772,7 +8884,7 @@ Ghostfolio é um negócio independente e autossuficiente apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8780,7 +8892,7 @@ Apoie o Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index 54a4b2bd0..cdd1c2205 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -487,11 +487,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -527,15 +527,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -615,11 +615,11 @@ - and is driven by the efforts of its contributors - and is driven by the efforts of its contributors + and is driven by the efforts of its contributors + and is driven by the efforts of its contributors apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -714,6 +714,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price Piyasa Fiyatı @@ -822,6 +830,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History Subscription History @@ -947,7 +963,7 @@ and we share aggregated key metrics of the platform’s performance apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -979,7 +995,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -1495,8 +1519,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -1643,11 +1667,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -2066,6 +2090,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5Y @@ -2567,7 +2599,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -2727,11 +2759,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -2871,7 +2903,7 @@ Aylık Aktif Kullanıcılar apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -2879,11 +2911,11 @@ GitHub’daki Beğeniler apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -2891,11 +2923,11 @@ Docker Hub’ta Çekmeler apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -2903,7 +2935,7 @@ Şurada görüldüğü gibi apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -2911,7 +2943,7 @@ varlıklarınızı koruyun. Kişisel yatırım stratejinizi geliştirin. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -2919,7 +2951,7 @@ Ghostfolio, takip edilmeden hisse senetleri, ETF’ler veya kripto paraları izlemek isteyen yoğun insanlara güç verir. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -2927,7 +2959,7 @@ 360° Görünüm apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -2935,7 +2967,7 @@ Kişisel finansınızın tam resmini birden fazla platformda edinin. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -2943,7 +2975,7 @@ Web3 Hazır apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -2959,7 +2991,7 @@ Ghostfolio’yu anonim olarak kullanın ve finansal verilerinize sahip çıkın. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -2967,7 +2999,7 @@ Güçlü bir topluluk aracılığıyla sürekli gelişmelerden faydalanın. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -2983,7 +3015,7 @@ Neden Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -2991,7 +3023,7 @@ Ghostfolio tam size göre, apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -2999,7 +3031,7 @@ Birden fazla platformda hisse senedi, ETF veya kripto para ticareti yapıyorsanız, apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -3007,7 +3039,7 @@ al ve tut stratejisi izliyorsanız, apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -3015,7 +3047,7 @@ Portföy bileşimine dair içgörüleri edinmek istiyorsanız, apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -3023,7 +3055,7 @@ Gizliliğe ve verilerinize sahip çıkmayı önemsiyorsanız apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -3031,7 +3063,7 @@ minimalizme ilgi duyuyorsanız apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -3039,7 +3071,7 @@ finansal kaynaklarınızı çeşitlendirmeye önem veriyorsanız apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -3047,7 +3079,7 @@ finansal özgürlük peşindeyseniz apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -3055,7 +3087,7 @@ elektronik tablo uygulamalarına hayır diyorsanız apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -3063,7 +3095,7 @@ bu listeyi hala okuyorsanız apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -3071,7 +3103,7 @@ Ghostfolio hakkında daha fazla bilgi edinin apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -3087,7 +3119,7 @@ Kullanıcılarımızın görüşleri apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -3095,7 +3127,7 @@ Dünyanın dört bir yanındaki kullanıcılar Ghostfolio Premium kullanıyorlar. apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -3103,7 +3135,7 @@ NasılGhostfolio çalışır? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -3111,7 +3143,7 @@ Sadece 3 adımda başlayın apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -3127,7 +3159,7 @@ Anonim olarak kaydolun* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -3135,7 +3167,7 @@ * e-posta adresi veya kredi kartı gerekmez apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -3143,7 +3175,7 @@ Herhangi bir geçmiş işleminizi ekleyin apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -3151,7 +3183,7 @@ Portföy bileşiminizle ilgili değerli bilgiler edinin apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -3159,12 +3191,12 @@ Hazır mısınız? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - Ghostfolio’da şeffaflık, değerlerimizin temelinde yer alır. Kaynak kodunu açık kaynak yazılım (OSS) olarak AGPL-3.0 lisansı altında yayınlıyoruz ve platformun işletme durumunun toplu anahtar metriklerini açıkça paylaşıyoruz. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + Ghostfolio’da şeffaflık, değerlerimizin temelinde yer alır. Kaynak kodunu açık kaynak yazılım (OSS) olarak AGPL-3.0 lisansı altında yayınlıyoruz ve platformun işletme durumunun toplu anahtar metriklerini açıkça paylaşıyoruz. apps/client/src/app/pages/open/open-page.html 7 @@ -3175,11 +3207,11 @@ Aktif Kullanıcılar apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -3187,7 +3219,7 @@ Yeni Kullanıcılar apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -3195,7 +3227,7 @@ Slack topluluğundaki kullanıcılar apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -3211,7 +3243,7 @@ GitHub’da Katkıda Bulunanlar apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -3219,7 +3251,7 @@ Çalışma Süresi apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -3351,7 +3383,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -3367,7 +3399,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -3391,7 +3423,7 @@ or start a discussion at apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -3743,7 +3775,7 @@ Para Yatırma libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -4208,7 +4240,7 @@ için Açık Kaynak Alternatifi apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -4248,7 +4280,7 @@ Website of Thomas Kaul apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4319,6 +4351,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ Hayır @@ -4659,6 +4699,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light Açık @@ -4788,7 +4836,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -4800,7 +4848,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -4816,7 +4864,7 @@ Klonla libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -4824,7 +4872,7 @@ Taslakları ICS Olarak Dışa Aktar libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -4912,7 +4960,7 @@ Hesaplanan Toplam Tutar libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -4928,7 +4976,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -4940,7 +4988,7 @@ Tasarruflar libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -4954,10 +5002,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -5020,7 +5076,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -5052,7 +5108,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -5163,6 +5219,14 @@ 449 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset Önceden Ayarlanmış @@ -5260,7 +5324,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -5520,7 +5584,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -5548,7 +5612,7 @@ (Son 24 saat) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -5556,7 +5620,7 @@ Ghostfolio Status apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -5572,11 +5636,11 @@ (Son 30 gün) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -5592,7 +5656,7 @@ (Son 90 gün) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -5632,7 +5696,7 @@ Ücret apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5860,7 +5924,7 @@ Hay Allah, Nakit bakiyesi tranferi başarısız oldu. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -6195,6 +6259,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Oops! A data provider is experiencing the hiccups. Oops! Bir veri sağlayıcısı aksaklık yaşıyor. @@ -6489,7 +6561,7 @@ Hemen katıl ya da örnek hesabı incele apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6661,7 +6733,7 @@ Açık Kaynak apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6733,7 +6805,7 @@ View Holding libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6833,7 +6905,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6841,7 +6913,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6889,7 +6961,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6973,7 +7045,7 @@ send an e-mail to apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7001,7 +7073,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7012,6 +7084,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + Oops! Invalid currency. Hay Allah! Geçersiz para birimi. @@ -7435,11 +7515,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7467,7 +7547,7 @@ Check the system status at apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7594,6 +7674,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance Performans @@ -7609,6 +7697,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7623,7 +7715,7 @@ The project has been initiated by apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7868,7 +7960,7 @@ Bu öğeyi silmek istediğinize emin misiniz? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7981,11 +8073,11 @@ Canlı Demo apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8062,6 +8154,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Get Access Erişim Alın @@ -8300,11 +8400,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8716,11 +8816,19 @@ GitHub’da Ghostfolio’yu bulun apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8728,7 +8836,11 @@ Ghostfolio Slack topluluğuna katılın apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8736,7 +8848,7 @@ Ghostfolio’yu X’te takip edin (eski adıyla Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 @@ -8744,11 +8856,11 @@ Bir e-posta gönder apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8764,7 +8876,7 @@ Ghostfolio’yu LinkedIn’de takip edin apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8772,7 +8884,7 @@ Ghostfolio is an independent & bootstrapped business apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8780,7 +8892,7 @@ Ghostfolio’yu destekleyin apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index 693fc8e76..9f3471aa1 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -322,6 +322,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Restricted view Обмежений перегляд @@ -611,11 +619,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -651,15 +659,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -672,7 +680,7 @@ Paid - Paid + Платний apps/client/src/app/components/user-detail-dialog/user-detail-dialog.component.ts 122 @@ -803,11 +811,11 @@ - and is driven by the efforts of its contributors - and is driven by the efforts of its contributors + and is driven by the efforts of its contributors + і розвивається завдяки зусиллям своїх учасників apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -894,6 +902,14 @@ 374 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price Ринкова ціна @@ -932,7 +948,7 @@ Data Gathering Frequency - Data Gathering Frequency + Частота збору даних apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html 454 @@ -966,9 +982,17 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History - Subscription History + Історія підписок apps/client/src/app/components/user-detail-dialog/user-detail-dialog.html 136 @@ -1008,7 +1032,7 @@ Do you really want to delete these asset profiles? - Do you really want to delete these asset profiles? + Ви справді хочете видалити ці профілі активів? apps/client/src/app/components/admin-market-data/admin-market-data.service.ts 67 @@ -1116,7 +1140,7 @@ Technology - Technology + Технологія libs/ui/src/lib/i18n.ts 96 @@ -1124,15 +1148,15 @@ and we share aggregated key metrics of the platform’s performance - and we share aggregated key metrics of the platform’s performance + і ми ділимося агрегованими ключовими показниками ефективності платформи apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 Total - Total + Усього apps/client/src/app/components/user-detail-dialog/user-detail-dialog.html 155 @@ -1176,7 +1200,7 @@ Asset profile has been saved - Asset profile has been saved + Профіль активу було збережено apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts 645 @@ -1195,7 +1219,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -1216,7 +1248,7 @@ Industrials - Industrials + Промисловість libs/ui/src/lib/i18n.ts 93 @@ -1260,7 +1292,7 @@ Consumer Cyclical - Consumer Cyclical + Споживчі товари циклічного попиту libs/ui/src/lib/i18n.ts 88 @@ -1352,7 +1384,7 @@ Find a holding... - Find a holding... + Знайти актив... libs/ui/src/lib/assistant/assistant.component.ts 448 @@ -1428,7 +1460,7 @@ Explore - Explore + Огляд apps/client/src/app/pages/resources/overview/resources-overview.component.html 11 @@ -1452,7 +1484,7 @@ Current year - Current year + Поточний рік apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts 228 @@ -1571,11 +1603,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -1628,7 +1660,7 @@ No auto-renewal on membership. - No auto-renewal on membership. + Автоматичне поновлення підписки вимкнено. apps/client/src/app/components/user-account-membership/user-account-membership.html 74 @@ -1716,7 +1748,7 @@ Could not validate form - Could not validate form + Не вдалося перевірити форму apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts 621 @@ -1868,7 +1900,7 @@ If you plan to open an account at - If you plan to open an account at + Якщо ви плануєте відкрити рахунок у apps/client/src/app/pages/pricing/pricing-page.html 312 @@ -2055,8 +2087,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + Вихідний код повністю доступний як програмне забезпечення з відкритим вихідним кодом (OSS) за ліцензією AGPL-3.0 apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -2120,7 +2152,7 @@ Current week - Current week + Поточний тиждень apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts 220 @@ -2200,7 +2232,7 @@ Energy - Energy + Енергетика libs/ui/src/lib/i18n.ts 90 @@ -2379,11 +2411,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -2420,10 +2452,10 @@ send an e-mail to - send an e-mail to + надішліть електронний лист на apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -2452,7 +2484,7 @@ Oops! Could not update access. - Oops! Could not update access. + Упс! Не вдалося оновити права доступу. apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.component.ts 263 @@ -2642,6 +2674,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5 років @@ -2656,7 +2696,7 @@ Performance with currency effect - Performance with currency effect + Дохідність з урахуванням впливу валютного курсу apps/client/src/app/pages/portfolio/analysis/analysis-page.html 134 @@ -2744,10 +2784,10 @@ Check the system status at - Check the system status at + Перевірте стан системи на apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -2816,7 +2856,7 @@ Consumer Defensive - Consumer Defensive + Споживчі товари першої необхідності libs/ui/src/lib/i18n.ts 89 @@ -2904,7 +2944,7 @@ Jump to a page... - Jump to a page... + Перейти до сторінки... libs/ui/src/lib/assistant/assistant.component.ts 449 @@ -2920,7 +2960,7 @@ Include in - Include in + Включити до apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html 386 @@ -2936,7 +2976,7 @@ Utilities - Utilities + Комунальні послуги libs/ui/src/lib/i18n.ts 97 @@ -2968,7 +3008,7 @@ Coupon - Coupon + Купон apps/client/src/app/components/user-detail-dialog/user-detail-dialog.component.ts 127 @@ -3018,6 +3058,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light Світлий @@ -3056,7 +3104,7 @@ this is projected to increase to - this is projected to increase to + прогнозується, що збільшиться до apps/client/src/app/pages/portfolio/fire/fire-page.html 148 @@ -3164,7 +3212,7 @@ Daily - Daily + Щодня apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts 210 @@ -3327,7 +3375,7 @@ Упс, перенесення балансу готівки не вдалося. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -3604,7 +3652,7 @@ Could not parse scraper configuration - Could not parse scraper configuration + Не вдалося розібрати конфігурацію скрапера apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts 569 @@ -3647,7 +3695,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -3793,7 +3841,7 @@ per week - per week + на тиждень apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 130 @@ -3820,11 +3868,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -3841,7 +3889,7 @@ Creation - Creation + Створення apps/client/src/app/components/user-detail-dialog/user-detail-dialog.html 145 @@ -3985,7 +4033,7 @@ Edit access - Edit access + Редагувати доступ apps/client/src/app/components/user-account-access/create-or-update-access-dialog/create-or-update-access-dialog.html 11 @@ -3996,7 +4044,7 @@ Щомісячні активні користувачі apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -4004,11 +4052,11 @@ Зірки на GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -4016,11 +4064,11 @@ Завантаження на Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -4028,7 +4076,7 @@ Як видно в apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -4036,7 +4084,7 @@ Захищайте свої активи. Вдосконалюйте власну інвестиційну стратегію. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -4044,7 +4092,7 @@ Ghostfolio допомагає зайнятим людям відстежувати акції, ETF або криптовалюти без ризику бути відстеженими. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -4052,7 +4100,7 @@ 360° огляд apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -4060,7 +4108,7 @@ Отримайте повну картину ваших особистих фінансів на різних платформах. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -4068,12 +4116,12 @@ Готовий до Web3 apps/client/src/app/pages/landing/landing-page.html - 149 + 153 Basic Materials - Basic Materials + Основні матеріали libs/ui/src/lib/i18n.ts 86 @@ -4084,7 +4132,7 @@ Використовуйте Ghostfolio анонімно та володійте своїми фінансовими даними. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -4092,12 +4140,12 @@ Отримуйте користь від постійних покращень завдяки сильній спільноті. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 Get access to 80’000+ tickers from over 50 exchanges - Get access to 80’000+ tickers from over 50 exchanges + Отримайте доступ до понад 80’000 тикерів з понад 50 бірж apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 84 @@ -4108,7 +4156,7 @@ Чому Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -4116,7 +4164,7 @@ Ghostfolio для вас, якщо ви... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -4124,7 +4172,7 @@ торгуєте акціями, ETF або криптовалютами на різних платформах apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -4132,7 +4180,7 @@ дотримуєтеся стратегії купівлі та утримання apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -4140,7 +4188,7 @@ вас цікавлять інсайти вашого складу портфеля apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -4148,7 +4196,7 @@ цінуєте конфіденційність і володіння даними apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -4156,7 +4204,7 @@ займаєтесь мінімалізмом apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -4164,7 +4212,7 @@ піклуєтесь про диверсифікацію ваших фінансових ресурсів apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -4172,7 +4220,7 @@ цікавитесь фінансовою незалежністю apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -4180,7 +4228,7 @@ кажете ні таблицям у apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -4188,7 +4236,7 @@ все ще читаєте цей список apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -4196,12 +4244,12 @@ Дізнайтеся більше про Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 217 + 221 Oops! Could not delete the asset profiles. - Oops! Could not delete the asset profiles. + Упс! Не вдалося видалити профілі активів. apps/client/src/app/components/admin-market-data/admin-market-data.service.ts 52 @@ -4212,7 +4260,7 @@ Що говорять користувачі apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -4220,7 +4268,7 @@ Члени зі всього світу використовують Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -4228,7 +4276,7 @@ Як працює Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -4236,12 +4284,12 @@ Почніть всього за 3 кроки apps/client/src/app/pages/landing/landing-page.html - 284 + 288 less than - less than + менше ніж apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 129 @@ -4252,7 +4300,7 @@ Зареєструйтеся анонімно* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -4260,7 +4308,7 @@ * не потрібні електронна адреса та кредитна картка apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -4268,7 +4316,7 @@ Додайте будь-які з ваших історичних транзакцій apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -4276,7 +4324,7 @@ Отримуйте цінні інсайти вашого складу портфеля apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -4284,7 +4332,7 @@ Ви готові? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 @@ -4292,12 +4340,12 @@ Приєднуйтесь зараз або перегляньте демонстраційний рахунок apps/client/src/app/pages/landing/landing-page.html - 333 + 337 - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - У Ghostfolio прозорість є основою наших цінностей. Ми публікуємо вихідний код як відкрите програмне забезпечення (OSS) під AGPL-3.0 ліцензією та відкрито ділимося агрегованими ключовими метриками операційного стану платформи. + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + У Ghostfolio прозорість є основою наших цінностей. Ми публікуємо вихідний код як відкрите програмне забезпечення (OSS) під AGPL-3.0 ліцензією та відкрито ділимося агрегованими ключовими метриками операційного стану платформи. apps/client/src/app/pages/open/open-page.html 7 @@ -4308,20 +4356,20 @@ (Останні 24 години) apps/client/src/app/pages/open/open-page.html - 37 + 38 Ghostfolio Status - Ghostfolio Status + Стан Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 with your university e-mail address - with your university e-mail address + за допомогою вашої університетської електронної адреси apps/client/src/app/pages/pricing/pricing-page.html 348 @@ -4332,11 +4380,11 @@ Активні користувачі apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -4344,16 +4392,16 @@ (Останні 30 днів) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 and a safe withdrawal rate (SWR) of - and a safe withdrawal rate (SWR) of + та безпечним рівнем зняття коштів (SWR) у розмірі apps/client/src/app/pages/portfolio/fire/fire-page.html 109 @@ -4364,7 +4412,7 @@ Нові користувачі apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -4372,7 +4420,7 @@ Користувачі в спільноті Slack apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -4388,7 +4436,7 @@ Учасники на GitHub apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -4396,7 +4444,7 @@ (Останні 90 днів) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -4404,7 +4452,7 @@ Час безвідмовної роботи apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -4580,7 +4628,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -4596,7 +4644,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -4620,7 +4668,7 @@ or start a discussion at apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -5428,7 +5476,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -5439,6 +5487,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + Continents Континенти @@ -5615,7 +5671,7 @@ Відкрита альтернатива для apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -5743,7 +5799,7 @@ Відкритий код apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -5875,7 +5931,7 @@ Website of Thomas Kaul apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -5970,6 +6026,14 @@ 163 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ Ні @@ -6295,7 +6359,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -6307,7 +6371,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -6331,7 +6395,7 @@ Клонувати libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -6339,7 +6403,7 @@ Експортувати чернетку як ICS libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -6599,7 +6663,7 @@ Прогнозована загальна сума libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -6615,7 +6679,7 @@ Депозит libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -6631,7 +6695,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -6643,7 +6707,7 @@ Заощадження libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -6681,10 +6745,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -6747,7 +6819,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -6779,7 +6851,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -6835,7 +6907,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6843,7 +6915,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6899,7 +6971,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -7010,6 +7082,14 @@ 27 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset Пресет @@ -7107,7 +7187,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -7159,7 +7239,7 @@ Комісія apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -7391,7 +7471,7 @@ View Holding libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -7455,7 +7535,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -7594,6 +7674,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance Дохідність @@ -7609,6 +7697,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7623,7 +7715,7 @@ The project has been initiated by apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7868,7 +7960,7 @@ Do you really want to delete this item? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7981,11 +8073,11 @@ Live Demo apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8062,6 +8154,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Get Access Get Access @@ -8300,11 +8400,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8716,11 +8816,19 @@ Find Ghostfolio on GitHub apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8728,7 +8836,11 @@ Join the Ghostfolio Slack community apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8736,7 +8848,7 @@ Follow Ghostfolio on X (formerly Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 @@ -8744,11 +8856,11 @@ Send an e-mail apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8764,7 +8876,7 @@ Follow Ghostfolio on LinkedIn apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8772,7 +8884,7 @@ Ghostfolio is an independent & bootstrapped business apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8780,7 +8892,7 @@ Support Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index ddebcee6a..da5f4b9d4 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -506,11 +506,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -545,15 +545,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -644,10 +644,10 @@ - and is driven by the efforts of its contributors + and is driven by the efforts of its contributors apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -711,6 +711,13 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price @@ -820,6 +827,13 @@ 174 + + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History @@ -984,7 +998,7 @@ and we share aggregated key metrics of the platform’s performance apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -1013,7 +1027,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -1543,7 +1565,7 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license + The source code is fully available as open source software (OSS) under the AGPL-3.0 license apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -1676,11 +1698,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -2065,6 +2087,13 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y @@ -2268,6 +2297,13 @@ 176 + + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light @@ -2544,7 +2580,7 @@ Oops, cash balance transfer has failed. apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -2827,7 +2863,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -2960,11 +2996,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -3117,71 +3153,71 @@ Monthly Active Users apps/client/src/app/pages/landing/landing-page.html - 69 + 71 Stars on GitHub apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 Pulls on Docker Hub apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 As seen in apps/client/src/app/pages/landing/landing-page.html - 114 + 118 Protect your assets. Refine your personal investment strategy. apps/client/src/app/pages/landing/landing-page.html - 124 + 128 Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. apps/client/src/app/pages/landing/landing-page.html - 128 + 132 360° View apps/client/src/app/pages/landing/landing-page.html - 138 + 142 Get the full picture of your personal finances across multiple platforms. apps/client/src/app/pages/landing/landing-page.html - 141 + 145 Web3 Ready apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -3195,14 +3231,14 @@ Use Ghostfolio anonymously and own your financial data. apps/client/src/app/pages/landing/landing-page.html - 152 + 156 Benefit from continuous improvements through a strong community. apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -3216,14 +3252,14 @@ Why Ghostfolio? apps/client/src/app/pages/landing/landing-page.html - 170 + 174 Ghostfolio is for you if you are... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -3237,70 +3273,70 @@ trading stocks, ETFs or cryptocurrencies on multiple platforms apps/client/src/app/pages/landing/landing-page.html - 178 + 182 pursuing a buy & hold strategy apps/client/src/app/pages/landing/landing-page.html - 184 + 188 interested in getting insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 189 + 193 valuing privacy and data ownership apps/client/src/app/pages/landing/landing-page.html - 194 + 198 into minimalism apps/client/src/app/pages/landing/landing-page.html - 197 + 201 caring about diversifying your financial resources apps/client/src/app/pages/landing/landing-page.html - 201 + 205 interested in financial independence apps/client/src/app/pages/landing/landing-page.html - 205 + 209 saying no to spreadsheets in apps/client/src/app/pages/landing/landing-page.html - 209 + 213 still reading this list apps/client/src/app/pages/landing/landing-page.html - 212 + 216 Learn more about Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -3314,28 +3350,28 @@ What our users are saying apps/client/src/app/pages/landing/landing-page.html - 226 + 230 Members from around the globe are using Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html - 265 + 269 How does Ghostfolio work? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 Get started in only 3 steps apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -3349,39 +3385,39 @@ Sign up anonymously* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 * no e-mail address nor credit card required apps/client/src/app/pages/landing/landing-page.html - 292 + 296 Add any of your historical transactions apps/client/src/app/pages/landing/landing-page.html - 304 + 308 Get valuable insights of your portfolio composition apps/client/src/app/pages/landing/landing-page.html - 316 + 320 Are you ready? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 - 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 7 @@ -3391,14 +3427,14 @@ (Last 24 hours) apps/client/src/app/pages/open/open-page.html - 37 + 38 Ghostfolio Status apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -3412,22 +3448,22 @@ Active Users apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 (Last 30 days) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -3441,14 +3477,14 @@ New Users apps/client/src/app/pages/open/open-page.html - 51 + 52 Users in Slack community apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -3462,21 +3498,21 @@ Contributors on GitHub apps/client/src/app/pages/open/open-page.html - 89 + 90 (Last 90 days) apps/client/src/app/pages/open/open-page.html - 127 + 128 Uptime apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -3620,7 +3656,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -3635,7 +3671,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -3656,7 +3692,7 @@ or start a discussion at apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -3965,7 +4001,7 @@ Deposit libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -4364,7 +4400,7 @@ Open Source Alternative to apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -4417,7 +4453,7 @@ Website of Thomas Kaul apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4483,6 +4519,13 @@ 274 + + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No @@ -4688,7 +4731,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -4699,7 +4742,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -4713,14 +4756,14 @@ Clone libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 Export Draft as ICS libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -4843,7 +4886,7 @@ Projected Total Amount libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -4858,7 +4901,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -4869,7 +4912,7 @@ Savings libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -4882,10 +4925,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -4944,7 +4995,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -4975,7 +5026,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -5075,6 +5126,13 @@ 449 + + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset @@ -5156,7 +5214,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -5188,7 +5246,7 @@ Fee apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5434,7 +5492,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -5664,6 +5722,13 @@ 42 + + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Reset Filters @@ -5918,7 +5983,7 @@ Join now or check out the example account apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6082,7 +6147,7 @@ View Holding libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6128,7 +6193,7 @@ Open Source apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6196,7 +6261,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6204,7 +6269,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6279,7 +6344,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6318,7 +6383,7 @@ send an e-mail to apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -6377,6 +6442,13 @@ 60 + + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + This year @@ -6392,7 +6464,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -6777,11 +6849,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -6795,7 +6867,7 @@ Check the system status at apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -6918,6 +6990,13 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance @@ -6932,6 +7011,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -6945,7 +7028,7 @@ The project has been initiated by apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7141,7 +7224,7 @@ Do you really want to delete this item? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7241,11 +7324,11 @@ Live Demo apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -7322,6 +7405,13 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Learn more @@ -7518,10 +7608,10 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -7890,36 +7980,44 @@ Support Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 Find Ghostfolio on GitHub apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 Ghostfolio is an independent & bootstrapped business apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 Send an e-mail apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -7933,21 +8031,25 @@ Join the Ghostfolio Slack community apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 Follow Ghostfolio on LinkedIn apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 Follow Ghostfolio on X (formerly Twitter) apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index dfa832882..2e1c78d00 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -536,11 +536,11 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 320 + 321 libs/ui/src/lib/activities-table/activities-table.component.html - 481 + 482 @@ -576,15 +576,15 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 331 + 332 libs/ui/src/lib/activities-table/activities-table.component.html - 508 + 509 libs/ui/src/lib/benchmark/benchmark.component.html - 187 + 193 @@ -684,11 +684,11 @@ - and is driven by the efforts of its contributors - 并且得益于其 贡献者 + and is driven by the efforts of its contributors + 并且得益于其 贡献者 apps/client/src/app/pages/about/overview/about-overview-page.html - 49 + 50 @@ -759,6 +759,14 @@ 6 + + Watch the Ghostfol.io Trailer on YouTube + Watch the Ghostfol.io Trailer on YouTube + + apps/client/src/app/pages/landing/landing-page.html + 19 + + Market Price 市场价 @@ -879,6 +887,14 @@ 174 + + Apply current market price + Apply current market price + + apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html + 238 + + Subscription History Subscription History @@ -1036,7 +1052,7 @@ 并且我们分享平台性能的聚合 关键指标 apps/client/src/app/pages/about/overview/about-overview-page.html - 32 + 33 @@ -1068,7 +1084,15 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 268 + 269 + + + libs/ui/src/lib/accounts-table/accounts-table.component.html + 287 + + + libs/ui/src/lib/activities-table/activities-table.component.html + 372 @@ -1656,8 +1680,8 @@ - The source code is fully available as open source software (OSS) under the AGPL-3.0 license - 源代码完全可用,作为开源软件 (OSS),遵循AGPL-3.0许可证 + The source code is fully available as open source software (OSS) under the AGPL-3.0 license + 源代码完全可用,作为开源软件 (OSS),遵循AGPL-3.0许可证 apps/client/src/app/pages/about/overview/about-overview-page.html 16 @@ -1804,11 +1828,11 @@ apps/client/src/app/pages/landing/landing-page.html - 47 + 48 apps/client/src/app/pages/landing/landing-page.html - 348 + 352 apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html @@ -2227,6 +2251,14 @@ 387 + + Ghostfolio in Numbers: Monthly Active Users (MAU) + Ghostfolio in Numbers: Monthly Active Users (MAU) + + apps/client/src/app/pages/landing/landing-page.html + 63 + + 5Y 5年 @@ -2455,6 +2487,14 @@ 176 + + Contributors to Ghostfolio + Contributors to Ghostfolio + + apps/client/src/app/pages/about/overview/about-overview-page.html + 54 + + Light 明亮 @@ -2756,7 +2796,7 @@ 糟糕,现金余额转账失败。 apps/client/src/app/pages/accounts/accounts-page.component.ts - 337 + 343 @@ -3056,7 +3096,7 @@ apps/client/src/app/pages/about/overview/about-overview-page.html - 189 + 193 apps/client/src/app/pages/faq/overview/faq-overview-page.routes.ts @@ -3204,11 +3244,11 @@ apps/client/src/app/pages/landing/landing-page.html - 41 + 42 apps/client/src/app/pages/landing/landing-page.html - 344 + 348 apps/client/src/app/pages/pricing/pricing-page.html @@ -3372,7 +3412,7 @@ 每月活跃用户数 apps/client/src/app/pages/landing/landing-page.html - 69 + 71 @@ -3380,11 +3420,11 @@ GitHub 上的星星 apps/client/src/app/pages/landing/landing-page.html - 87 + 90 apps/client/src/app/pages/open/open-page.html - 103 + 104 @@ -3392,11 +3432,11 @@ Docker Hub 拉取次数 apps/client/src/app/pages/landing/landing-page.html - 105 + 109 apps/client/src/app/pages/open/open-page.html - 117 + 118 @@ -3404,7 +3444,7 @@ 如图所示 apps/client/src/app/pages/landing/landing-page.html - 114 + 118 @@ -3412,7 +3452,7 @@ 保护你的资产。完善你的个人投资策略 apps/client/src/app/pages/landing/landing-page.html - 124 + 128 @@ -3420,7 +3460,7 @@ Ghostfolio 使忙碌的人们能够在不被追踪的情况下跟踪股票、ETF 或加密货币。 apps/client/src/app/pages/landing/landing-page.html - 128 + 132 @@ -3428,7 +3468,7 @@ 360° 视角 apps/client/src/app/pages/landing/landing-page.html - 138 + 142 @@ -3436,7 +3476,7 @@ 跨多个平台全面了解您的个人财务状况。 apps/client/src/app/pages/landing/landing-page.html - 141 + 145 @@ -3444,7 +3484,7 @@ Web3 就绪 apps/client/src/app/pages/landing/landing-page.html - 149 + 153 @@ -3460,7 +3500,7 @@ 匿名使用 Ghostfolio 并拥有您的财务数据。 apps/client/src/app/pages/landing/landing-page.html - 152 + 156 @@ -3468,7 +3508,7 @@ 通过强大的社区不断改进,从中受益。 apps/client/src/app/pages/landing/landing-page.html - 162 + 166 @@ -3484,7 +3524,7 @@ 为什么使用Ghostfolio apps/client/src/app/pages/landing/landing-page.html - 170 + 174 @@ -3492,7 +3532,7 @@ 如果您符合以下条件,那么 Ghostfolio 适合您... apps/client/src/app/pages/landing/landing-page.html - 172 + 176 @@ -3508,7 +3548,7 @@ 在多个平台上交易股票、ETF 或加密货币 apps/client/src/app/pages/landing/landing-page.html - 178 + 182 @@ -3516,7 +3556,7 @@ 采取买入并持有策略 apps/client/src/app/pages/landing/landing-page.html - 184 + 188 @@ -3524,7 +3564,7 @@ 有兴趣深入了解您的投资组合构成 apps/client/src/app/pages/landing/landing-page.html - 189 + 193 @@ -3532,7 +3572,7 @@ 重视隐私和数据所有权 apps/client/src/app/pages/landing/landing-page.html - 194 + 198 @@ -3540,7 +3580,7 @@ 进入极简主义 apps/client/src/app/pages/landing/landing-page.html - 197 + 201 @@ -3548,7 +3588,7 @@ 关心您的财务资源多元化 apps/client/src/app/pages/landing/landing-page.html - 201 + 205 @@ -3556,7 +3596,7 @@ 对财务独立感兴趣 apps/client/src/app/pages/landing/landing-page.html - 205 + 209 @@ -3564,7 +3604,7 @@ 年对电子表格说不 apps/client/src/app/pages/landing/landing-page.html - 209 + 213 @@ -3572,7 +3612,7 @@ 仍在阅读此列表 apps/client/src/app/pages/landing/landing-page.html - 212 + 216 @@ -3580,7 +3620,7 @@ 了解有关 Ghostfolio 的更多信息 apps/client/src/app/pages/landing/landing-page.html - 217 + 221 @@ -3596,7 +3636,7 @@ 听听我们的用户怎么说 apps/client/src/app/pages/landing/landing-page.html - 226 + 230 @@ -3604,7 +3644,7 @@ 来自世界各地的会员正在使用Ghostfolio 高级版 apps/client/src/app/pages/landing/landing-page.html - 265 + 269 @@ -3612,7 +3652,7 @@ Ghostfolio 如何工作? apps/client/src/app/pages/landing/landing-page.html - 282 + 286 @@ -3620,7 +3660,7 @@ 只需 3 步即可开始 apps/client/src/app/pages/landing/landing-page.html - 284 + 288 @@ -3636,7 +3676,7 @@ 匿名注册* apps/client/src/app/pages/landing/landing-page.html - 290 + 294 @@ -3644,7 +3684,7 @@ * 无需电子邮件地址或信用卡 apps/client/src/app/pages/landing/landing-page.html - 292 + 296 @@ -3652,7 +3692,7 @@ 添加您的任何历史交易 apps/client/src/app/pages/landing/landing-page.html - 304 + 308 @@ -3660,7 +3700,7 @@ 获取有关您的投资组合构成的宝贵见解 apps/client/src/app/pages/landing/landing-page.html - 316 + 320 @@ -3668,12 +3708,12 @@ 准备好了吗? apps/client/src/app/pages/landing/landing-page.html - 330 + 334 - At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. - 在 Ghostfolio,透明度是我们价值观的核心。我们将源代码发布为开源软件(OSS)下AGPL-3.0许可证我们公开分享平台运营状态的汇总关键指标。 + At Ghostfolio, transparency is at the core of our values. We publish the source code as open source software (OSS) under the AGPL-3.0 license and we openly share aggregated key metrics of the platform’s operational status. + 在 Ghostfolio,透明度是我们价值观的核心。我们将源代码发布为开源软件(OSS)下AGPL-3.0许可证我们公开分享平台运营状态的汇总关键指标。 apps/client/src/app/pages/open/open-page.html 7 @@ -3684,7 +3724,7 @@ (最近 24 小时) apps/client/src/app/pages/open/open-page.html - 37 + 38 @@ -3692,7 +3732,7 @@ Ghostfolio 状态 apps/client/src/app/pages/about/overview/about-overview-page.html - 62 + 64 @@ -3708,11 +3748,11 @@ 活跃用户 apps/client/src/app/pages/open/open-page.html - 40 + 41 apps/client/src/app/pages/open/open-page.html - 62 + 63 @@ -3720,11 +3760,11 @@ (最近 30 天) apps/client/src/app/pages/open/open-page.html - 48 + 49 apps/client/src/app/pages/open/open-page.html - 59 + 60 @@ -3740,7 +3780,7 @@ 新用户 apps/client/src/app/pages/open/open-page.html - 51 + 52 @@ -3748,7 +3788,7 @@ Slack 社区的用户 apps/client/src/app/pages/open/open-page.html - 75 + 76 @@ -3764,7 +3804,7 @@ GitHub 上的贡献者 apps/client/src/app/pages/open/open-page.html - 89 + 90 @@ -3772,7 +3812,7 @@ (过去 90 天) apps/client/src/app/pages/open/open-page.html - 127 + 128 @@ -3780,7 +3820,7 @@ 正常运行时间 apps/client/src/app/pages/open/open-page.html - 132 + 133 @@ -3936,7 +3976,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 407 + 408 @@ -3952,7 +3992,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 421 + 422 @@ -3976,7 +4016,7 @@ 或在以下位置开始讨论 apps/client/src/app/pages/about/overview/about-overview-page.html - 94 + 98 @@ -4320,7 +4360,7 @@ 存款 libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 404 + 410 @@ -4765,7 +4805,7 @@ 的开源替代品 apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html - 42 + 43 @@ -4825,7 +4865,7 @@ Thomas Kaul 的网站 apps/client/src/app/pages/about/overview/about-overview-page.html - 44 + 45 @@ -4896,6 +4936,14 @@ 274 + + Upgrade to Ghostfolio Premium + Upgrade to Ghostfolio Premium + + libs/ui/src/lib/premium-indicator/premium-indicator.component.html + 4 + + ❌ No ❌ 没有 @@ -5121,7 +5169,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 435 + 436 @@ -5133,7 +5181,7 @@ libs/ui/src/lib/activities-table/activities-table.component.html - 448 + 449 @@ -5149,7 +5197,7 @@ 克隆 libs/ui/src/lib/activities-table/activities-table.component.html - 487 + 488 @@ -5157,7 +5205,7 @@ 将汇票导出为 ICS libs/ui/src/lib/activities-table/activities-table.component.html - 497 + 498 @@ -5297,7 +5345,7 @@ 预计总额 libs/ui/src/lib/fire-calculator/fire-calculator.component.html - 59 + 66 @@ -5313,7 +5361,7 @@ libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 414 + 420 libs/ui/src/lib/i18n.ts @@ -5325,7 +5373,7 @@ 储蓄 libs/ui/src/lib/fire-calculator/fire-calculator.component.ts - 424 + 430 @@ -5339,10 +5387,18 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 122 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 123 + libs/ui/src/lib/top-holdings/top-holdings.component.html 40 + + libs/ui/src/lib/top-holdings/top-holdings.component.html + 41 + libs/ui/src/lib/top-holdings/top-holdings.component.html 116 @@ -5405,7 +5461,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 283 + 284 libs/ui/src/lib/i18n.ts @@ -5437,7 +5493,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 302 + 303 libs/ui/src/lib/i18n.ts @@ -5548,6 +5604,14 @@ 449 + + Ghostfolio in Numbers: Pulls on Docker Hub + Ghostfolio in Numbers: Pulls on Docker Hub + + apps/client/src/app/pages/landing/landing-page.html + 101 + + Preset 预设 @@ -5637,7 +5701,7 @@ libs/ui/src/lib/accounts-table/accounts-table.component.html - 314 + 315 @@ -5673,7 +5737,7 @@ 费用 apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 255 + 256 libs/ui/src/lib/activities-table/activities-table.component.html @@ -5949,7 +6013,7 @@ libs/ui/src/lib/benchmark/benchmark.component.html - 220 + 226 libs/ui/src/lib/portfolio-proportion-chart/portfolio-proportion-chart.component.ts @@ -6204,6 +6268,14 @@ 42 + + Fetch market price + Fetch market price + + libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html + 40 + + Reset Filters 重置过滤器 @@ -6490,7 +6562,7 @@ 立即加入 或查看示例账户 apps/client/src/app/pages/landing/landing-page.html - 333 + 337 @@ -6662,7 +6734,7 @@ 开源 apps/client/src/app/pages/landing/landing-page.html - 159 + 163 apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts @@ -6734,7 +6806,7 @@ 查看持仓 libs/ui/src/lib/activities-table/activities-table.component.html - 474 + 475 @@ -6834,7 +6906,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 338 + 339 apps/client/src/app/pages/register/user-account-registration-dialog/user-account-registration-dialog.html @@ -6842,7 +6914,7 @@ libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 47 + 48 libs/ui/src/lib/i18n.ts @@ -6890,7 +6962,7 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 340 + 341 libs/ui/src/lib/i18n.ts @@ -6974,7 +7046,7 @@ 发送电子邮件至 apps/client/src/app/pages/about/overview/about-overview-page.html - 87 + 91 @@ -7002,7 +7074,7 @@ libs/ui/src/lib/value/value.component.ts - 180 + 182 @@ -7013,6 +7085,14 @@ 60 + + Compare Ghostfolio to - + Compare Ghostfolio to - + + apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html + 32 + + Oops! Invalid currency. 哎呀!无效的货币。 @@ -7436,11 +7516,11 @@ apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html - 349 + 350 libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html - 49 + 50 @@ -7468,7 +7548,7 @@ 检查系统状态 apps/client/src/app/pages/about/overview/about-overview-page.html - 57 + 59 @@ -7595,6 +7675,14 @@ 380 + + Ghostfolio in Numbers: Stars on GitHub + Ghostfolio in Numbers: Stars on GitHub + + apps/client/src/app/pages/landing/landing-page.html + 82 + + Performance 表现 @@ -7610,6 +7698,10 @@ libs/ui/src/lib/holdings-table/holdings-table.component.html 166 + + libs/ui/src/lib/holdings-table/holdings-table.component.html + 167 + libs/ui/src/lib/treemap-chart/treemap-chart.component.ts 380 @@ -7624,7 +7716,7 @@ 该项目发起于 apps/client/src/app/pages/about/overview/about-overview-page.html - 40 + 41 @@ -7869,7 +7961,7 @@ 您确定要删除此项目吗? libs/ui/src/lib/benchmark/benchmark.component.ts - 141 + 142 @@ -7982,11 +8074,11 @@ 现场演示 apps/client/src/app/pages/landing/landing-page.html - 48 + 49 apps/client/src/app/pages/landing/landing-page.html - 349 + 353 libs/common/src/lib/routes/routes.ts @@ -8063,6 +8155,14 @@ 16 + + Post to Ghostfolio on X (formerly Twitter) + Post to Ghostfolio on X (formerly Twitter) + + apps/client/src/app/pages/about/overview/about-overview-page.html + 85 + + Get Access 获取访问权限 @@ -8301,11 +8401,11 @@ - If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ - 如果您遇到错误,想要建议改进或新功能,请加入 Ghostfolio Slack 社区,发布到 @ghostfolio_ + If you encounter a bug, would like to suggest an improvement or a new feature, please join the Ghostfolio Slack community, post to @ghostfolio_ + 如果您遇到错误,想要建议改进或新功能,请加入 Ghostfolio Slack 社区,发布到 @ghostfolio_ apps/client/src/app/pages/about/overview/about-overview-page.html - 69 + 71 @@ -8717,11 +8817,19 @@ 在 GitHub 上查找 Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 99 + 20 apps/client/src/app/pages/about/overview/about-overview-page.html - 138 + 103 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 142 + + + apps/client/src/app/pages/open/open-page.html + 12 @@ -8729,7 +8837,11 @@ 加入 Ghostfolio Slack 社区 apps/client/src/app/pages/about/overview/about-overview-page.html - 109 + 78 + + + apps/client/src/app/pages/about/overview/about-overview-page.html + 113 @@ -8737,7 +8849,7 @@ 在 X (前身为 Twitter) 上关注 Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 118 + 122 @@ -8745,11 +8857,11 @@ 发送电子邮件 apps/client/src/app/pages/about/overview/about-overview-page.html - 89 + 93 apps/client/src/app/pages/about/overview/about-overview-page.html - 128 + 132 @@ -8765,7 +8877,7 @@ 在 LinkedIn 上关注 Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 147 + 151 @@ -8773,7 +8885,7 @@ Ghostfolio 是一家独立的自筹资金企业 apps/client/src/app/pages/about/overview/about-overview-page.html - 157 + 161 @@ -8781,7 +8893,7 @@ 支持 Ghostfolio apps/client/src/app/pages/about/overview/about-overview-page.html - 166 + 170 diff --git a/libs/ui/src/lib/account-balances/account-balances.component.html b/libs/ui/src/lib/account-balances/account-balances.component.html index ee1450435..780653c67 100644 --- a/libs/ui/src/lib/account-balances/account-balances.component.html +++ b/libs/ui/src/lib/account-balances/account-balances.component.html @@ -22,7 +22,7 @@ [matDatepicker]="date" [max]="maxDate" /> - + + [for]="date" + > + + diff --git a/libs/ui/src/lib/fire-calculator/fire-calculator.component.ts b/libs/ui/src/lib/fire-calculator/fire-calculator.component.ts index c8e281609..fa998778d 100644 --- a/libs/ui/src/lib/fire-calculator/fire-calculator.component.ts +++ b/libs/ui/src/lib/fire-calculator/fire-calculator.component.ts @@ -34,6 +34,7 @@ import { } from '@angular/material/datepicker'; import { MatFormFieldModule } from '@angular/material/form-field'; import { MatInputModule } from '@angular/material/input'; +import { IonIcon } from '@ionic/angular/standalone'; import { BarController, BarElement, @@ -56,6 +57,8 @@ import { startOfMonth, sub } from 'date-fns'; +import { addIcons } from 'ionicons'; +import { calendarClearOutline } from 'ionicons/icons'; import { isNumber } from 'lodash'; import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader'; import { debounceTime } from 'rxjs'; @@ -67,6 +70,7 @@ import { FireCalculatorService } from './fire-calculator.service'; imports: [ CommonModule, FormsModule, + IonIcon, MatButtonModule, MatDatepickerModule, MatFormFieldModule, @@ -136,6 +140,8 @@ export class GfFireCalculatorComponent implements OnChanges, OnDestroy { Tooltip ); + addIcons({ calendarClearOutline }); + this.calculatorForm.valueChanges .pipe(takeUntilDestroyed(this.destroyRef)) .subscribe(() => { diff --git a/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html b/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html index 7bb5827ef..7e8183664 100644 --- a/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html +++ b/libs/ui/src/lib/historical-market-data-editor/historical-market-data-editor-dialog/historical-market-data-editor-dialog.html @@ -35,6 +35,7 @@