diff --git a/CHANGELOG.md b/CHANGELOG.md index c383577f4..5e3e68430 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved the error message of the currency code validation - Tightened the currency code validation by requiring uppercase letters +- Improved the language localization for Français (`fr`) - Upgraded `Nx` from version `20.8.0` to `20.8.1` ### Fixed diff --git a/apps/api/src/app/import/import.service.ts b/apps/api/src/app/import/import.service.ts index babe7c3e3..b6fe0d949 100644 --- a/apps/api/src/app/import/import.service.ts +++ b/apps/api/src/app/import/import.service.ts @@ -167,9 +167,9 @@ export class ImportService { for (const account of accountsDto) { // Check if there is any existing account with the same ID - const accountWithSameId = existingAccounts.find( - (existingAccount) => existingAccount.id === account.id - ); + const accountWithSameId = existingAccounts.find((existingAccount) => { + return existingAccount.id === account.id; + }); // If there is no account or if the account belongs to a different user then create a new account if (!accountWithSameId || accountWithSameId.userId !== user.id) { diff --git a/apps/client/src/locales/messages.fr.xlf b/apps/client/src/locales/messages.fr.xlf index 78893b590..c788e87e1 100644 --- a/apps/client/src/locales/messages.fr.xlf +++ b/apps/client/src/locales/messages.fr.xlf @@ -7883,7 +7883,7 @@ with API access for - with API access for + avec accès API pour apps/client/src/app/pages/pricing/pricing-page.html 266 @@ -7891,7 +7891,7 @@ Gather Recent Historical Market Data - Gather Recent Historical Market Data + Collecter les données récentes du marché historique apps/client/src/app/components/admin-market-data/admin-market-data.html 225 @@ -7899,7 +7899,7 @@ Gather All Historical Market Data - Gather All Historical Market Data + Collecter toutes les données du marché historique apps/client/src/app/components/admin-market-data/admin-market-data.html 230 @@ -7907,7 +7907,7 @@ Gather Historical Market Data - Gather Historical Market Data + Collecter les données du marché historique apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html 29 @@ -7915,7 +7915,7 @@ Data Gathering is off - Data Gathering is off + La collecte de données est désactivée apps/client/src/app/components/admin-market-data/admin-market-data.html 38 @@ -7923,7 +7923,7 @@ Performance Calculation - Performance Calculation + Calcul de performance apps/client/src/app/components/user-account-settings/user-account-settings.html 31