diff --git a/CHANGELOG.md b/CHANGELOG.md index d51ebd29..0b241a2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Added a hint about delayed market data to the markets overview - Added the asset profile count per data provider to the endpoint `GET api/v1/admin` ### Changed @@ -23,9 +24,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved the language localization for Catalan (`ca`) - Improved the language localization for Chinese (`zh`) - Improved the language localization for Dutch (`nl`) +- Improved the language localization for Español (`es`) - Improved the language localization for French (`fr`) - Improved the language localization for German (`de`) - Improved the language localization for Italian (`it`) +- Improved the language localization for Portuguese (`pt`) - Upgraded `countup.js` from version `2.8.0` to `2.8.2` - Upgraded `nestjs` from version `10.4.15` to `11.0.12` - Upgraded `twitter-api-v2` from version `1.14.2` to `1.23.0` diff --git a/apps/api/src/app/endpoints/data-providers/ghostfolio/ghostfolio.controller.ts b/apps/api/src/app/endpoints/data-providers/ghostfolio/ghostfolio.controller.ts index 83e1b5ce..7cb2520b 100644 --- a/apps/api/src/app/endpoints/data-providers/ghostfolio/ghostfolio.controller.ts +++ b/apps/api/src/app/endpoints/data-providers/ghostfolio/ghostfolio.controller.ts @@ -74,48 +74,6 @@ export class GhostfolioController { } } - /** - * @deprecated - */ - @Get('dividends/:symbol') - @HasPermission(permissions.enableDataProviderGhostfolio) - @UseGuards(AuthGuard('jwt'), HasPermissionGuard) - public async getDividendsV1( - @Param('symbol') symbol: string, - @Query() query: GetDividendsDto - ): Promise { - const maxDailyRequests = await this.ghostfolioService.getMaxDailyRequests(); - - if ( - this.request.user.dataProviderGhostfolioDailyRequests > maxDailyRequests - ) { - throw new HttpException( - getReasonPhrase(StatusCodes.TOO_MANY_REQUESTS), - StatusCodes.TOO_MANY_REQUESTS - ); - } - - try { - const dividends = await this.ghostfolioService.getDividends({ - symbol, - from: parseDate(query.from), - granularity: query.granularity, - to: parseDate(query.to) - }); - - await this.ghostfolioService.incrementDailyRequests({ - userId: this.request.user.id - }); - - return dividends; - } catch { - throw new HttpException( - getReasonPhrase(StatusCodes.INTERNAL_SERVER_ERROR), - StatusCodes.INTERNAL_SERVER_ERROR - ); - } - } - @Get('dividends/:symbol') @HasPermission(permissions.enableDataProviderGhostfolio) @UseGuards(AuthGuard('api-key'), HasPermissionGuard) @@ -156,48 +114,6 @@ export class GhostfolioController { } } - /** - * @deprecated - */ - @Get('historical/:symbol') - @HasPermission(permissions.enableDataProviderGhostfolio) - @UseGuards(AuthGuard('jwt'), HasPermissionGuard) - public async getHistoricalV1( - @Param('symbol') symbol: string, - @Query() query: GetHistoricalDto - ): Promise { - const maxDailyRequests = await this.ghostfolioService.getMaxDailyRequests(); - - if ( - this.request.user.dataProviderGhostfolioDailyRequests > maxDailyRequests - ) { - throw new HttpException( - getReasonPhrase(StatusCodes.TOO_MANY_REQUESTS), - StatusCodes.TOO_MANY_REQUESTS - ); - } - - try { - const historicalData = await this.ghostfolioService.getHistorical({ - symbol, - from: parseDate(query.from), - granularity: query.granularity, - to: parseDate(query.to) - }); - - await this.ghostfolioService.incrementDailyRequests({ - userId: this.request.user.id - }); - - return historicalData; - } catch { - throw new HttpException( - getReasonPhrase(StatusCodes.INTERNAL_SERVER_ERROR), - StatusCodes.INTERNAL_SERVER_ERROR - ); - } - } - @Get('historical/:symbol') @HasPermission(permissions.enableDataProviderGhostfolio) @UseGuards(AuthGuard('api-key'), HasPermissionGuard) @@ -238,47 +154,6 @@ export class GhostfolioController { } } - /** - * @deprecated - */ - @Get('lookup') - @HasPermission(permissions.enableDataProviderGhostfolio) - @UseGuards(AuthGuard('jwt'), HasPermissionGuard) - public async lookupSymbolV1( - @Query('includeIndices') includeIndicesParam = 'false', - @Query('query') query = '' - ): Promise { - const includeIndices = includeIndicesParam === 'true'; - const maxDailyRequests = await this.ghostfolioService.getMaxDailyRequests(); - - if ( - this.request.user.dataProviderGhostfolioDailyRequests > maxDailyRequests - ) { - throw new HttpException( - getReasonPhrase(StatusCodes.TOO_MANY_REQUESTS), - StatusCodes.TOO_MANY_REQUESTS - ); - } - - try { - const result = await this.ghostfolioService.lookup({ - includeIndices, - query: query.toLowerCase() - }); - - await this.ghostfolioService.incrementDailyRequests({ - userId: this.request.user.id - }); - - return result; - } catch { - throw new HttpException( - getReasonPhrase(StatusCodes.INTERNAL_SERVER_ERROR), - StatusCodes.INTERNAL_SERVER_ERROR - ); - } - } - @Get('lookup') @HasPermission(permissions.enableDataProviderGhostfolio) @UseGuards(AuthGuard('api-key'), HasPermissionGuard) @@ -320,44 +195,6 @@ export class GhostfolioController { } } - /** - * @deprecated - */ - @Get('quotes') - @HasPermission(permissions.enableDataProviderGhostfolio) - @UseGuards(AuthGuard('jwt'), HasPermissionGuard) - public async getQuotesV1( - @Query() query: GetQuotesDto - ): Promise { - const maxDailyRequests = await this.ghostfolioService.getMaxDailyRequests(); - - if ( - this.request.user.dataProviderGhostfolioDailyRequests > maxDailyRequests - ) { - throw new HttpException( - getReasonPhrase(StatusCodes.TOO_MANY_REQUESTS), - StatusCodes.TOO_MANY_REQUESTS - ); - } - - try { - const quotes = await this.ghostfolioService.getQuotes({ - symbols: query.symbols - }); - - await this.ghostfolioService.incrementDailyRequests({ - userId: this.request.user.id - }); - - return quotes; - } catch { - throw new HttpException( - getReasonPhrase(StatusCodes.INTERNAL_SERVER_ERROR), - StatusCodes.INTERNAL_SERVER_ERROR - ); - } - } - @Get('quotes') @HasPermission(permissions.enableDataProviderGhostfolio) @UseGuards(AuthGuard('api-key'), HasPermissionGuard) @@ -394,16 +231,6 @@ export class GhostfolioController { } } - /** - * @deprecated - */ - @Get('status') - @HasPermission(permissions.enableDataProviderGhostfolio) - @UseGuards(AuthGuard('jwt'), HasPermissionGuard) - public async getStatusV1(): Promise { - return this.ghostfolioService.getStatus({ user: this.request.user }); - } - @Get('status') @HasPermission(permissions.enableDataProviderGhostfolio) @UseGuards(AuthGuard('api-key'), HasPermissionGuard) diff --git a/apps/client/src/app/components/home-market/home-market.html b/apps/client/src/app/components/home-market/home-market.html index 2fcdb571..189c87c8 100644 --- a/apps/client/src/app/components/home-market/home-market.html +++ b/apps/client/src/app/components/home-market/home-market.html @@ -36,6 +36,14 @@ [locale]="user?.settings?.locale || undefined" [user]="user" /> + @if (benchmarks?.length > 0) { +
+ + Calculations are based on delayed market data and may not be + displayed in real-time. +
+ } diff --git a/apps/client/src/locales/messages.ca.xlf b/apps/client/src/locales/messages.ca.xlf index 38ae4f13..fc7e685b 100644 --- a/apps/client/src/locales/messages.ca.xlf +++ b/apps/client/src/locales/messages.ca.xlf @@ -8001,6 +8001,14 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + Calculations are based on delayed market data and may not be displayed in real-time. + + apps/client/src/app/components/home-market/home-market.html + 41 + + diff --git a/apps/client/src/locales/messages.de.xlf b/apps/client/src/locales/messages.de.xlf index f1e006a1..b37c6254 100644 --- a/apps/client/src/locales/messages.de.xlf +++ b/apps/client/src/locales/messages.de.xlf @@ -8001,6 +8001,14 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + Berechnungen basieren auf verzögerten Marktdaten und werden nicht in Echtzeit angezeigt. + + apps/client/src/app/components/home-market/home-market.html + 41 + + diff --git a/apps/client/src/locales/messages.es.xlf b/apps/client/src/locales/messages.es.xlf index 3490217e..d172d785 100644 --- a/apps/client/src/locales/messages.es.xlf +++ b/apps/client/src/locales/messages.es.xlf @@ -1276,7 +1276,7 @@ Please set the amount of your emergency fund. - Por favor, ingresa la cantidad de tu fondo de emergencia: + Por favor, ingresa la cantidad de tu fondo de emergencia: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts 64 @@ -1624,7 +1624,7 @@ Please enter your coupon code. - Por favor, ingresa tu código de cupón: + Por favor, ingresa tu código de cupón: apps/client/src/app/components/user-account-membership/user-account-membership.component.ts 201 @@ -2832,7 +2832,7 @@ Hello, has shared a Portfolio with you! - Hola, ha compartido una Cartera contigo! + Hola, ha compartido una Cartera contigo! apps/client/src/app/pages/public/public-page.html 4 @@ -3356,7 +3356,7 @@ Holding - Holding + Participación apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html 32 @@ -3404,7 +3404,7 @@ Core - Core + Núcleo libs/ui/src/lib/i18n.ts 10 @@ -3816,7 +3816,7 @@ Retirement Date - Retirement Date + Fecha de jubilación libs/ui/src/lib/fire-calculator/fire-calculator.component.html 32 @@ -3824,7 +3824,7 @@ Professional Data Provider - Professional Data Provider + Proveedor de datos profesional apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 40 @@ -3836,7 +3836,7 @@ Pricing Plans - Pricing Plans + Planes de precios apps/client/src/app/pages/pricing/pricing-page.html 4 @@ -3860,7 +3860,7 @@ Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. - Our official Ghostfolio Premium cloud offering is the easiest way to get started. Due to the time it saves, this will be the best option for most people. Revenue is used to cover the costs of the hosting infrastructure and to fund ongoing development. + Nuestra oferta oficial en la nube de Ghostfolio Premium es la forma más sencilla de comenzar. Debido al tiempo que ahorra, esta será la mejor opción para la mayoría de las personas. Los ingresos se utilizan para cubrir los costos de la infraestructura de alojamiento y para financiar el desarrollo continuo. apps/client/src/app/pages/pricing/pricing-page.html 6 @@ -3868,7 +3868,7 @@ Impersonate User - Impersonate User + Suplantar usuario apps/client/src/app/components/admin-users/admin-users.html 239 @@ -3876,7 +3876,7 @@ Delete User - Delete User + Eliminar usuario apps/client/src/app/components/admin-users/admin-users.html 260 @@ -3884,7 +3884,7 @@ Do you really want to delete these activities? - Do you really want to delete these activities? + ¿Realmente deseas eliminar estas actividades? libs/ui/src/lib/activities-table/activities-table.component.ts 219 @@ -3892,7 +3892,7 @@ By ETF Provider - By ETF Provider + Por proveedor de ETF apps/client/src/app/pages/portfolio/allocations/allocations-page.html 306 @@ -3900,7 +3900,7 @@ Update platform - Update platform + Actualizar plataforma apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html 8 @@ -3908,7 +3908,7 @@ Add platform - Add platform + Agregar plataforma apps/client/src/app/components/admin-platform/create-or-update-platform-dialog/create-or-update-platform-dialog.html 10 @@ -3916,7 +3916,7 @@ Url - Url + ¿La URL? apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html 455 @@ -3936,7 +3936,7 @@ Do you really want to delete this platform? - Do you really want to delete this platform? + ¿Realmente deseas eliminar esta plataforma? apps/client/src/app/components/admin-platform/admin-platform.component.ts 87 @@ -3944,7 +3944,7 @@ Platforms - Platforms + Plataformas apps/client/src/app/components/admin-settings/admin-settings.component.html 137 @@ -3952,7 +3952,7 @@ Update Cash Balance - Update Cash Balance + Actualizar saldo en efectivo apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 112 @@ -3960,7 +3960,7 @@ By Platform - By Platform + Por plataforma apps/client/src/app/pages/portfolio/allocations/allocations-page.html 44 @@ -3968,7 +3968,7 @@ Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: - Upgrade to Ghostfolio Premium today and gain access to exclusive features to enhance your investment experience: + Actualiza a Ghostfolio Premium hoy y accede a características exclusivas para mejorar tu experiencia de inversión: apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 17 @@ -3976,7 +3976,7 @@ Get the tools to effectively manage your finances and refine your personal investment strategy. - Get the tools to effectively manage your finances and refine your personal investment strategy. + Obtén las herramientas para gestionar eficazmente tus finanzas y perfeccionar tu estrategia de inversión personal. apps/client/src/app/components/subscription-interstitial-dialog/subscription-interstitial-dialog.html 47 @@ -3984,7 +3984,7 @@ Add Platform - Add Platform + Agregar plataforma apps/client/src/app/components/admin-platform/admin-platform.component.html 8 @@ -3992,7 +3992,7 @@ Settings - Settings + Configuraciones apps/client/src/app/pages/admin/admin-page-routing.module.ts 35 @@ -4012,7 +4012,7 @@ Equity - Equity + Equidad apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html 58 @@ -4020,7 +4020,7 @@ This activity already exists. - This activity already exists. + Esta actividad ya existe. libs/ui/src/lib/i18n.ts 19 @@ -4028,7 +4028,7 @@ Manage Benchmarks - Manage Benchmarks + Gestionar puntos de referencia apps/client/src/app/components/benchmark-comparator/benchmark-comparator.component.html 35 @@ -4036,7 +4036,7 @@ Select Holding - Select Holding + Seleccionar posición apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html 20 @@ -4044,7 +4044,7 @@ Select File - Select File + Seleccionar archivo apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html 22 @@ -4052,7 +4052,7 @@ Select Dividends - Select Dividends + Seleccionar dividendos apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html 113 @@ -4060,7 +4060,7 @@ Select Activities - Select Activities + Seleccionar dividendos apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html 115 @@ -4068,7 +4068,7 @@ Import Activities - Import Activities + Seleccionar dividendos libs/ui/src/lib/activities-table/activities-table.component.html 9 @@ -4080,7 +4080,7 @@ Import Dividends - Import Dividends + Importar dividendos libs/ui/src/lib/activities-table/activities-table.component.html 29 @@ -4092,7 +4092,7 @@ Personal Finance - Personal Finance + Finanzas personales apps/client/src/app/app.component.html 57 @@ -4100,7 +4100,7 @@ Frequently Asked Questions (FAQ) - Frequently Asked Questions (FAQ) + Preguntas frecuentes (FAQ) apps/client/src/app/app.component.html 83 @@ -4112,7 +4112,7 @@ Current Streak - Current Streak + Racha actual apps/client/src/app/pages/portfolio/analysis/analysis-page.html 389 @@ -4120,7 +4120,7 @@ Longest Streak - Longest Streak + Racha más larga apps/client/src/app/pages/portfolio/analysis/analysis-page.html 398 @@ -4128,7 +4128,7 @@ Months - Months + Meses libs/ui/src/lib/i18n.ts 22 @@ -4136,7 +4136,7 @@ Years - Years + Años libs/ui/src/lib/i18n.ts 31 @@ -4144,7 +4144,7 @@ Month - Month + Mes libs/ui/src/lib/i18n.ts 21 @@ -4152,7 +4152,7 @@ Year - Year + Año libs/ui/src/lib/i18n.ts 30 @@ -4160,7 +4160,7 @@ Liabilities - Liabilities + Pasivos apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 255 @@ -4172,7 +4172,7 @@ Changelog - Changelog + Registro de cambios apps/client/src/app/pages/about/about-page.component.ts 50 @@ -4184,7 +4184,7 @@ License - License + Licencia apps/client/src/app/pages/about/about-page.component.ts 55 @@ -4196,7 +4196,7 @@ Stocks - Stocks + Acciones apps/client/src/app/pages/features/features-page.html 15 @@ -4204,7 +4204,7 @@ ETFs - ETFs + ETFs apps/client/src/app/pages/features/features-page.html 25 @@ -4212,7 +4212,7 @@ Bonds - Bonds + Bonos apps/client/src/app/pages/features/features-page.html 38 @@ -4220,7 +4220,7 @@ Cryptocurrencies - Cryptocurrencies + Criptomonedas apps/client/src/app/pages/features/features-page.html 51 @@ -4228,7 +4228,7 @@ Wealth Items - Wealth Items + Elementos de patrimonio apps/client/src/app/pages/features/features-page.html 76 @@ -4236,7 +4236,7 @@ Import and Export - Import and Export + Importar y exportar apps/client/src/app/pages/features/features-page.html 115 @@ -4244,7 +4244,7 @@ Multi-Accounts - Multi-Accounts + Cuentas múltiples apps/client/src/app/pages/features/features-page.html 127 @@ -4252,7 +4252,7 @@ Portfolio Calculations - Portfolio Calculations + Cálculos de portafolio apps/client/src/app/pages/features/features-page.html 141 @@ -4260,7 +4260,7 @@ Dark Mode - Dark Mode + Modo oscuro apps/client/src/app/pages/features/features-page.html 233 @@ -4268,7 +4268,7 @@ Market Mood - Market Mood + Modo de mercado apps/client/src/app/pages/features/features-page.html 215 @@ -4276,7 +4276,7 @@ Static Analysis - Static Analysis + Análisis estático apps/client/src/app/pages/features/features-page.html 179 @@ -4284,7 +4284,7 @@ Multi-Language - Multi-Language + Multilenguaje apps/client/src/app/pages/features/features-page.html 259 @@ -4292,7 +4292,7 @@ Open Source Software - Open Source Software + Software de código abierto apps/client/src/app/pages/features/features-page.html 295 @@ -4300,7 +4300,7 @@ Liability - Liability + Responsabilidad libs/ui/src/lib/i18n.ts 40 @@ -4308,7 +4308,7 @@ Scraper Configuration - Scraper Configuration + Configuración del scraper apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html 377 @@ -4316,7 +4316,7 @@ Add Asset Profile - Add Asset Profile + Agregar perfil de activo apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html 7 @@ -4324,7 +4324,7 @@ Personal Finance Tools - Personal Finance Tools + Herramientas de finanzas personales apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page-routing.module.ts 14 @@ -4444,7 +4444,7 @@ Self-Hosting - Self-Hosting + Autoalojamiento apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 170 @@ -4484,7 +4484,7 @@ Personal Finance Tools - Personal Finance Tools + Herramientas de finanzas personales apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 351 @@ -4492,7 +4492,7 @@ Guides - Guides + Guías apps/client/src/app/pages/resources/guides/resources-guides.component.html 4 @@ -4500,7 +4500,7 @@ Glossary - Glossary + Glosario apps/client/src/app/pages/resources/glossary/resources-glossary.component.html 4 @@ -4508,7 +4508,7 @@ Stocks, ETFs, bonds, cryptocurrencies, commodities - Stocks, ETFs, bonds, cryptocurrencies, commodities + Acciones, ETFs, bonos, criptomonedas, materias primas apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 25 @@ -4520,7 +4520,7 @@ Mortgages, personal loans, credit cards - Mortgages, personal loans, credit cards + Hipotecas, préstamos personales, tarjetas de crédito apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 57 @@ -4528,7 +4528,7 @@ Luxury items, real estate, private companies - Luxury items, real estate, private companies + Artículos de lujo, bienes raíces, empresas privadas apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 73 @@ -4536,7 +4536,7 @@ Buy - Buy + Comprar libs/ui/src/lib/i18n.ts 35 @@ -4544,7 +4544,7 @@ Valuable - Valuable + Valioso libs/ui/src/lib/i18n.ts 39 @@ -4552,7 +4552,7 @@ ETFs without Countries - ETFs without Countries + ETFs sin países apps/client/src/app/components/admin-market-data/admin-market-data.component.ts 91 @@ -4560,7 +4560,7 @@ ETFs without Sectors - ETFs without Sectors + ETFs sin sectores apps/client/src/app/components/admin-market-data/admin-market-data.component.ts 96 @@ -4568,7 +4568,7 @@ Assets - Assets + Activos apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 215 @@ -4576,7 +4576,7 @@ Preset - Preset + Preestablecido libs/ui/src/lib/i18n.ts 25 @@ -4584,7 +4584,7 @@ By Market - By Market + Por mercado apps/client/src/app/pages/portfolio/allocations/allocations-page.html 175 @@ -4592,7 +4592,7 @@ Asia-Pacific - Asia-Pacific + Asia-Pacífico libs/ui/src/lib/i18n.ts 5 @@ -4600,7 +4600,7 @@ Japan - Japan + Japón libs/ui/src/lib/i18n.ts 86 @@ -4608,7 +4608,7 @@ Welcome to Ghostfolio - Welcome to Ghostfolio + Bienvenido a Ghostfolio apps/client/src/app/components/home-overview/home-overview.html 7 @@ -4616,7 +4616,7 @@ Setup your accounts - Setup your accounts + Configura tus cuentas apps/client/src/app/components/home-overview/home-overview.html 15 @@ -8002,6 +8002,14 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + Calculations are based on delayed market data and may not be displayed in real-time. + + apps/client/src/app/components/home-market/home-market.html + 41 + + diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index aa5d6b26..36098ab9 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -8001,6 +8001,14 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + Calculations are based on delayed market data and may not be displayed in real-time. + + apps/client/src/app/components/home-market/home-market.html + 41 + + diff --git a/apps/client/src/locales/messages.it.xlf b/apps/client/src/locales/messages.it.xlf index 4d1423a9..98539f12 100644 --- a/apps/client/src/locales/messages.it.xlf +++ b/apps/client/src/locales/messages.it.xlf @@ -8002,6 +8002,14 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + Calculations are based on delayed market data and may not be displayed in real-time. + + apps/client/src/app/components/home-market/home-market.html + 41 + + diff --git a/apps/client/src/locales/messages.nl.xlf b/apps/client/src/locales/messages.nl.xlf index f49a838e..2d4920df 100644 --- a/apps/client/src/locales/messages.nl.xlf +++ b/apps/client/src/locales/messages.nl.xlf @@ -8001,6 +8001,14 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + Calculations are based on delayed market data and may not be displayed in real-time. + + apps/client/src/app/components/home-market/home-market.html + 41 + + diff --git a/apps/client/src/locales/messages.pl.xlf b/apps/client/src/locales/messages.pl.xlf index d550ce67..5b399a06 100644 --- a/apps/client/src/locales/messages.pl.xlf +++ b/apps/client/src/locales/messages.pl.xlf @@ -8001,6 +8001,14 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + Calculations are based on delayed market data and may not be displayed in real-time. + + apps/client/src/app/components/home-market/home-market.html + 41 + + diff --git a/apps/client/src/locales/messages.pt.xlf b/apps/client/src/locales/messages.pt.xlf index e6d822d8..d99926cc 100644 --- a/apps/client/src/locales/messages.pt.xlf +++ b/apps/client/src/locales/messages.pt.xlf @@ -1503,7 +1503,7 @@ Please set the amount of your emergency fund. - Por favor, insira o valor do seu fundo de emergência: + Por favor, insira o valor do seu fundo de emergência: apps/client/src/app/components/portfolio-summary/portfolio-summary.component.ts 64 @@ -1863,7 +1863,7 @@ Please enter your coupon code. - Por favor, insira o seu código de cupão: + Por favor, insira o seu código de cupão: apps/client/src/app/components/user-account-membership/user-account-membership.component.ts 201 @@ -2735,7 +2735,7 @@ Hello, has shared a Portfolio with you! - Olá, partilhou um Portefólio consigo! + Olá, partilhou um Portefólio consigo! apps/client/src/app/pages/public/public-page.html 4 @@ -4203,7 +4203,7 @@ ETFs - ETFs + ETFs apps/client/src/app/pages/features/features-page.html 25 @@ -4299,7 +4299,7 @@ Liability - Liability + Responsabilidade libs/ui/src/lib/i18n.ts 40 @@ -4307,7 +4307,7 @@ Scraper Configuration - Scraper Configuration + Configuração do raspador apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html 377 @@ -4507,7 +4507,7 @@ Stocks, ETFs, bonds, cryptocurrencies, commodities - Stocks, ETFs, bonds, cryptocurrencies, commodities + Ações, ETFs, títulos, criptomoedas, commodities apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 25 @@ -4543,7 +4543,7 @@ Valuable - Valuable + De valor libs/ui/src/lib/i18n.ts 39 @@ -4551,7 +4551,7 @@ ETFs without Countries - ETFs without Countries + ETFs sem países apps/client/src/app/components/admin-market-data/admin-market-data.component.ts 91 @@ -4559,7 +4559,7 @@ ETFs without Sectors - ETFs without Sectors + ETFs sem setores apps/client/src/app/components/admin-market-data/admin-market-data.component.ts 96 @@ -4631,7 +4631,7 @@ Capture your activities - Capture your activities + Capture suas atividades apps/client/src/app/components/home-overview/home-overview.html 24 @@ -4707,7 +4707,7 @@ 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. + 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 6 @@ -4763,7 +4763,7 @@ Pulls on Docker Hub - Pulls on Docker Hub + Não puxa Docker Hub apps/client/src/app/pages/landing/landing-page.html 106 @@ -4799,7 +4799,7 @@ Our - Our + Nosso apps/client/src/app/pages/about/oss-friends/oss-friends-page.html 6 @@ -4807,7 +4807,7 @@ Visit - Visit + Visita apps/client/src/app/pages/about/oss-friends/oss-friends-page.html 28 @@ -4839,7 +4839,7 @@ Check out the numerous features of Ghostfolio to manage your wealth - Check out the numerous features of Ghostfolio to manage your wealth + Confira os inúmeros recursos do Ghostfolio para gerenciar seu patrimônio apps/client/src/app/pages/features/features-page.html 6 @@ -4847,7 +4847,7 @@ Discover the latest Ghostfolio updates and insights on personal finance - Discover the latest Ghostfolio updates and insights on personal finance + Descubra as últimas atualizações e insights do Ghostfolio sobre finanças pessoais apps/client/src/app/pages/blog/blog-page.html 7 @@ -4855,7 +4855,7 @@ If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. - If you prefer to run Ghostfolio on your own infrastructure, please find the source code and further instructions on GitHub. + Se você preferir executar o Ghostfolio em sua própria infraestrutura, encontre o código-fonte e mais instruções em GitHub. apps/client/src/app/pages/pricing/pricing-page.html 26 @@ -4863,7 +4863,7 @@ Manage your wealth like a boss - Manage your wealth like a boss + Gerencie seu patrimônio como um chefe apps/client/src/app/pages/landing/landing-page.html 5 @@ -4871,7 +4871,7 @@ Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. - Ghostfolio is a privacy-first, open source dashboard for your personal finances. Break down your asset allocation, know your net worth and make solid, data-driven investment decisions. + Ghostfolio é um painel de código aberto que prioriza a privacidade para suas finanças pessoais. Divida sua alocação de ativos, conheça seu patrimônio líquido e tome decisões de investimento sólidas e baseadas em dados. apps/client/src/app/pages/landing/landing-page.html 9 @@ -4891,7 +4891,7 @@ Monthly Active Users - Monthly Active Users + Usuários ativos mensais apps/client/src/app/pages/landing/landing-page.html 70 @@ -4899,7 +4899,7 @@ As seen in - As seen in + Como visto em apps/client/src/app/pages/landing/landing-page.html 115 @@ -4907,7 +4907,7 @@ Protect your assets. Refine your personal investment strategy. - Protect your assets. Refine your personal investment strategy. + Proteja o seu assets. Refine your personal investment strategy. apps/client/src/app/pages/landing/landing-page.html 225 @@ -4915,7 +4915,7 @@ Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. - Ghostfolio empowers busy people to keep track of stocks, ETFs or cryptocurrencies without being tracked. + O Ghostfolio permite que pessoas ocupadas acompanhem ações, ETFs ou criptomoedas sem serem rastreadas. apps/client/src/app/pages/landing/landing-page.html 229 @@ -4923,7 +4923,7 @@ 360° View - 360° View + 360° visualizar apps/client/src/app/pages/landing/landing-page.html 240 @@ -4931,7 +4931,7 @@ Web3 Ready - Web3 Ready + Web3 Preparar apps/client/src/app/pages/landing/landing-page.html 251 @@ -4939,7 +4939,7 @@ Use Ghostfolio anonymously and own your financial data. - Use Ghostfolio anonymously and own your financial data. + Use o Ghostfolio anonimamente e possua seus dados financeiros. apps/client/src/app/pages/landing/landing-page.html 253 @@ -4947,7 +4947,7 @@ Open Source - Open Source + Código aberto apps/client/src/app/pages/landing/landing-page.html 261 @@ -4955,7 +4955,7 @@ Benefit from continuous improvements through a strong community. - Benefit from continuous improvements through a strong community. + Beneficie-se de melhorias contínuas através de uma comunidade forte. apps/client/src/app/pages/landing/landing-page.html 263 @@ -4963,7 +4963,7 @@ Why Ghostfolio? - Why Ghostfolio? + Por que Ghostfolio? apps/client/src/app/pages/landing/landing-page.html 272 @@ -4971,7 +4971,7 @@ Ghostfolio is for you if you are... - Ghostfolio is for you if you are... + Ghostfolio é para você se você for... apps/client/src/app/pages/landing/landing-page.html 273 @@ -4979,7 +4979,7 @@ trading stocks, ETFs or cryptocurrencies on multiple platforms - trading stocks, ETFs or cryptocurrencies on multiple platforms + negociar ações, ETFs ou criptomoedas em múltiplas plataformas apps/client/src/app/pages/landing/landing-page.html 280 @@ -4987,7 +4987,7 @@ pursuing a buy & hold strategy - pursuing a buy & hold strategy + buscando uma compra & estratégia de retenção apps/client/src/app/pages/landing/landing-page.html 286 @@ -4995,7 +4995,7 @@ interested in getting insights of your portfolio composition - interested in getting insights of your portfolio composition + interessado em obter insights sobre a composição do seu portfólio apps/client/src/app/pages/landing/landing-page.html 291 @@ -5003,7 +5003,7 @@ valuing privacy and data ownership - valuing privacy and data ownership + valorizando a privacidade e a propriedade dos dados apps/client/src/app/pages/landing/landing-page.html 296 @@ -5011,7 +5011,7 @@ into minimalism - into minimalism + no minimalismo apps/client/src/app/pages/landing/landing-page.html 299 @@ -5019,7 +5019,7 @@ caring about diversifying your financial resources - caring about diversifying your financial resources + preocupando-se em diversificar seus recursos financeiros apps/client/src/app/pages/landing/landing-page.html 303 @@ -5027,7 +5027,7 @@ interested in financial independence - interested in financial independence + interessado em independência financeira apps/client/src/app/pages/landing/landing-page.html 307 @@ -5035,7 +5035,7 @@ saying no to spreadsheets in - saying no to spreadsheets in + dizendo não às planilhas em apps/client/src/app/pages/landing/landing-page.html 311 @@ -5043,7 +5043,7 @@ still reading this list - still reading this list + ainda lendo esta lista apps/client/src/app/pages/landing/landing-page.html 314 @@ -5051,7 +5051,7 @@ Learn more about Ghostfolio - Learn more about Ghostfolio + Saiba mais sobre o Ghostfolio apps/client/src/app/pages/landing/landing-page.html 319 @@ -5059,7 +5059,7 @@ What our users are saying - What our users are saying + Qual é o nosso users are saying apps/client/src/app/pages/landing/landing-page.html 327 @@ -5067,7 +5067,7 @@ Members from around the globe are using Ghostfolio Premium - Members from around the globe are using Ghostfolio Premium + Membros de todo o mundo estão usando Ghostfolio Premium apps/client/src/app/pages/landing/landing-page.html 366 @@ -5075,7 +5075,7 @@ How does Ghostfolio work? - How does Ghostfolio work? + Como é que Ghostfolio work? apps/client/src/app/pages/landing/landing-page.html 383 @@ -5083,7 +5083,7 @@ Sign up anonymously* - Sign up anonymously* + Inscreva-se anonimamente* apps/client/src/app/pages/landing/landing-page.html 392 @@ -5091,7 +5091,7 @@ * no e-mail address nor credit card required - * no e-mail address nor credit card required + * no e-mail address nor credit card required apps/client/src/app/pages/landing/landing-page.html 394 @@ -5099,7 +5099,7 @@ Add any of your historical transactions - Add any of your historical transactions + Adicione qualquer uma de suas transações históricas apps/client/src/app/pages/landing/landing-page.html 405 @@ -5107,7 +5107,7 @@ Get valuable insights of your portfolio composition - Get valuable insights of your portfolio composition + Obtenha insights valiosos sobre a composição do seu portfólio apps/client/src/app/pages/landing/landing-page.html 417 @@ -5123,7 +5123,7 @@ Live Demo - Live Demo + Demonstração ao vivo apps/client/src/app/pages/landing/landing-page.html 49 @@ -5135,7 +5135,7 @@ Get the full picture of your personal finances across multiple platforms. - Get the full picture of your personal finances across multiple platforms. + Tenha uma visão completa das suas finanças pessoais em diversas plataformas. apps/client/src/app/pages/landing/landing-page.html 242 @@ -5143,7 +5143,7 @@ Get started in only 3 steps - Get started in only 3 steps + Comece em apenas 3 passos apps/client/src/app/pages/landing/landing-page.html 386 @@ -5628,7 +5628,7 @@ Explore the links below to compare a variety of personal finance tools with Ghostfolio. - Explore the links below to compare a variety of personal finance tools with Ghostfolio. + Explore os links abaixo para comparar uma variedade de ferramentas de finanças pessoais com o Ghostfolio. apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html 16 @@ -5636,7 +5636,7 @@ Open Source Alternative to - Alternativa de software livre ao + Alternativa de software livre ao apps/client/src/app/pages/resources/personal-finance-tools/personal-finance-tools-page.html 42 @@ -5660,7 +5660,7 @@ Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. - Are you looking for an open source alternative to ? Ghostfolio is a powerful portfolio management tool that provides individuals with a comprehensive platform to track, analyze, and optimize their investments. Whether you are an experienced investor or just starting out, Ghostfolio offers an intuitive user interface and a wide range of functionalities to help you make informed decisions and take control of your financial future. + Você está procurando uma alternativa de código aberto para ? Ghostfolio é uma poderosa ferramenta de gestão de portfólio que oferece aos investidores uma plataforma abrangente para monitorar, analisar e otimizar seus investimentos. Seja você um investidor experiente ou iniciante, o Ghostfolio oferece uma interface de usuário intuitiva e um ampla gama de funcionalidades para ajudá-lo a tomar decisões informadas e assumir o controle do seu futuro financeiro. apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 18 @@ -5668,7 +5668,7 @@ Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. - Ghostfolio is an open source software (OSS), providing a cost-effective alternative to making it particularly suitable for individuals on a tight budget, such as those pursuing Financial Independence, Retire Early (FIRE). By leveraging the collective efforts of a community of developers and personal finance enthusiasts, Ghostfolio continuously enhances its capabilities, security, and user experience. + Ghostfolio é um software de código aberto (OSS), que oferece uma alternativa econômica para tornando-o particularmente adequado para indivíduos com orçamento apertado, como aqueles buscando Independência Financeira, Aposentadoria Antecipada (FIRE). Ao aproveitar os esforços coletivos de uma comunidade de desenvolvedores e entusiastas de finanças pessoais, o Ghostfolio aprimora continuamente seus recursos, segurança e experiência do usuário. apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 32 @@ -5676,7 +5676,7 @@ Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. - Let’s dive deeper into the detailed Ghostfolio vs comparison table below to gain a thorough understanding of how Ghostfolio positions itself relative to . We will explore various aspects such as features, data privacy, pricing, and more, allowing you to make a well-informed choice for your personal requirements. + Vamos nos aprofundar nos detalhes do Ghostfolio vs tabela de comparação abaixo para obter uma compreensão completa de como o Ghostfolio se posiciona em relação a . Exploraremos vários aspectos, como recursos, privacidade de dados, preços e muito mais, permitindo que você faça uma escolha bem informada para suas necessidades pessoais. apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 43 @@ -5696,7 +5696,7 @@ Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. - Please note that the information provided in the Ghostfolio vs comparison table is based on our independent research and analysis. This website is not affiliated with or any other product mentioned in the comparison. As the landscape of personal finance tools evolves, it is essential to verify any specific details or changes directly from the respective product page. Data needs a refresh? Help us maintain accurate data on GitHub. + Observe que as informações fornecidas no Ghostfolio vs. A tabela de comparação é baseada em nossa pesquisa e análise independentes. Este site não é afiliado a ou qualquer outro produto mencionado na comparação. À medida que o cenário das ferramentas de finanças pessoais evolui, é essencial verificar quaisquer detalhes ou alterações específicas diretamente na página do produto correspondente. Os dados precisam de uma atualização? Ajude-nos a manter dados precisos sobre GitHub. apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 311 @@ -5704,7 +5704,7 @@ Ready to take your investments to the next level? - Ready to take your investments to the next level? + Pronto para levar o seu investimentos para o próximo nível? apps/client/src/app/pages/resources/personal-finance-tools/product-page.html 324 @@ -5720,7 +5720,7 @@ Switzerland - Switzerland + Suíça apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts 58 @@ -5732,7 +5732,7 @@ Global - Global + Global apps/client/src/app/pages/resources/personal-finance-tools/product-page.component.ts 59 @@ -5744,7 +5744,7 @@ (Last 24 hours) - (Last 24 hours) + (Últimas 24 horas) apps/client/src/app/pages/open/open-page.html 37 @@ -5752,7 +5752,7 @@ (Last 30 days) - (Last 30 days) + (Últimos 30 dias) apps/client/src/app/pages/open/open-page.html 48 @@ -5764,7 +5764,7 @@ (Last 90 days) - (Last 90 days) + (Últimos 90 dias) apps/client/src/app/pages/open/open-page.html 127 @@ -5772,7 +5772,7 @@ Choose or drop a file here - Choose or drop a file here + Selecione ou solte um arquivo aqui apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.html 84 @@ -5780,7 +5780,7 @@ You are using the Live Demo. - You are using the Live Demo. + Você está usando a demonstração ao vivo. apps/client/src/app/app.component.html 12 @@ -5788,7 +5788,7 @@ One-time fee, annual account fees - One-time fee, annual account fees + Taxa única, taxas de conta anuais apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 33 @@ -5796,7 +5796,7 @@ Distribution of corporate earnings - Distribution of corporate earnings + Distribuição de lucros corporativos apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 41 @@ -5804,7 +5804,7 @@ Fee - Fee + Taxa libs/ui/src/lib/i18n.ts 37 @@ -5812,7 +5812,7 @@ Interest - Interest + Interesse apps/client/src/app/components/portfolio-summary/portfolio-summary.component.html 307 @@ -5820,7 +5820,7 @@ Revenue for lending out money - Revenue for lending out money + Receita por empréstimo de dinheiro apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.html 49 @@ -5828,7 +5828,7 @@ Add Tag - Add Tag + Adicionar etiqueta apps/client/src/app/components/admin-tag/admin-tag.component.html 8 @@ -5836,7 +5836,7 @@ Do you really want to delete this tag? - Do you really want to delete this tag? + Você realmente deseja excluir esta tag? apps/client/src/app/components/admin-tag/admin-tag.component.ts 85 @@ -5844,7 +5844,7 @@ Update tag - Update tag + Atualizar etiqueta apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html 8 @@ -5852,7 +5852,7 @@ Add tag - Add tag + Adicionar etiqueta apps/client/src/app/components/admin-tag/create-or-update-tag-dialog/create-or-update-tag-dialog.html 10 @@ -5860,7 +5860,7 @@ Currency Cluster Risks - Currency Cluster Risks + Riscos de cluster monetário apps/client/src/app/pages/portfolio/x-ray/x-ray-page.component.html 93 @@ -5868,7 +5868,7 @@ Account Cluster Risks - Account Cluster Risks + Riscos de cluster de contas apps/client/src/app/pages/portfolio/x-ray/x-ray-page.component.html 141 @@ -5876,7 +5876,7 @@ Transfer Cash Balance - Transfer Cash Balance + Transferir saldo de dinheiro apps/client/src/app/components/accounts-table/accounts-table.component.html 10 @@ -5888,7 +5888,7 @@ Benchmark - Benchmark + Referência apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html 346 @@ -5896,7 +5896,7 @@ Version - Version + Versão apps/client/src/app/components/admin-overview/admin-overview.html 7 @@ -5904,7 +5904,7 @@ Settings - Settings + Configurações apps/client/src/app/components/user-account-settings/user-account-settings.html 2 @@ -5912,7 +5912,7 @@ From - From + De apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html 11 @@ -5920,7 +5920,7 @@ To - To + Para apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html 32 @@ -5928,7 +5928,7 @@ Transfer - Transfer + Transferir apps/client/src/app/pages/accounts/transfer-balance/transfer-balance-dialog.html 72 @@ -5936,7 +5936,7 @@ Membership - Membership + Associação apps/client/src/app/pages/user-account/user-account-page-routing.module.ts 23 @@ -5948,7 +5948,7 @@ Access - Access + Acesso apps/client/src/app/pages/user-account/user-account-page-routing.module.ts 28 @@ -5960,7 +5960,7 @@ Find holding... - Find holding... + Encontrar retenção... libs/ui/src/lib/assistant/assistant.component.ts 143 @@ -5968,7 +5968,7 @@ No entries... - No entries... + Nenhuma entrada... libs/ui/src/lib/assistant/assistant.html 62 @@ -5980,7 +5980,7 @@ Asset Profile - Asset Profile + Perfil de ativos apps/client/src/app/components/admin-jobs/admin-jobs.html 35 @@ -5988,7 +5988,7 @@ Do you really want to delete this asset profile? - Do you really want to delete this asset profile? + Você realmente deseja excluir este perfil de ativo? apps/client/src/app/components/admin-market-data/admin-market-data.service.ts 37 @@ -6004,7 +6004,7 @@ Add Manually - Add Manually + Adicionar manualmente apps/client/src/app/components/admin-market-data/create-asset-profile-dialog/create-asset-profile-dialog.html 19 @@ -6012,7 +6012,7 @@ Ghostfolio is a personal finance dashboard to keep track of your net worth including cash, stocks, ETFs and cryptocurrencies across multiple platforms. - Ghostfolio é um dashboard de finanças pessoais para acompanhar os seus activos como acções, ETFs ou criptomoedas em múltiplas plataformas. + Ghostfolio é um dashboard de finanças pessoais para acompanhar os seus activos como acções, ETFs ou criptomoedas em múltiplas plataformas. apps/client/src/app/pages/i18n/i18n-page.html 4 @@ -6020,7 +6020,7 @@ Last All Time High - Last All Time High + Última alta de todos os tempos libs/ui/src/lib/benchmark/benchmark.component.html 74 @@ -8001,6 +8001,14 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + Calculations are based on delayed market data and may not be displayed in real-time. + + apps/client/src/app/components/home-market/home-market.html + 41 + + diff --git a/apps/client/src/locales/messages.tr.xlf b/apps/client/src/locales/messages.tr.xlf index c70d74a5..7ad178a2 100644 --- a/apps/client/src/locales/messages.tr.xlf +++ b/apps/client/src/locales/messages.tr.xlf @@ -8001,6 +8001,14 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + Calculations are based on delayed market data and may not be displayed in real-time. + + apps/client/src/app/components/home-market/home-market.html + 41 + + diff --git a/apps/client/src/locales/messages.uk.xlf b/apps/client/src/locales/messages.uk.xlf index 7f9386e4..8bb56f08 100644 --- a/apps/client/src/locales/messages.uk.xlf +++ b/apps/client/src/locales/messages.uk.xlf @@ -8001,6 +8001,14 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + Calculations are based on delayed market data and may not be displayed in real-time. + + apps/client/src/app/components/home-market/home-market.html + 41 + + diff --git a/apps/client/src/locales/messages.xlf b/apps/client/src/locales/messages.xlf index 75d2164f..0eaf12d0 100644 --- a/apps/client/src/locales/messages.xlf +++ b/apps/client/src/locales/messages.xlf @@ -7237,6 +7237,13 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + + apps/client/src/app/components/home-market/home-market.html + 41 + + diff --git a/apps/client/src/locales/messages.zh.xlf b/apps/client/src/locales/messages.zh.xlf index 7c8694c3..3b6410a4 100644 --- a/apps/client/src/locales/messages.zh.xlf +++ b/apps/client/src/locales/messages.zh.xlf @@ -8002,6 +8002,14 @@ 315 + + Calculations are based on delayed market data and may not be displayed in real-time. + Calculations are based on delayed market data and may not be displayed in real-time. + + apps/client/src/app/components/home-market/home-market.html + 41 + +