From 7fb0f9b6e8da4b8e7362704fa6640d820a5a191b Mon Sep 17 00:00:00 2001
From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com>
Date: Sat, 26 Apr 2025 07:02:31 +0200
Subject: [PATCH 1/2] Feature/refactor import service (#4599)
* Refactoring
---
apps/api/src/app/import/import.service.ts | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
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) {
From e86801dfe9e53f0c3a036e1ab3b429b0f3bcc9a7 Mon Sep 17 00:00:00 2001
From: Vinodh Zamboulingame <48854069+vzamboulingame@users.noreply.github.com>
Date: Sat, 26 Apr 2025 17:36:49 +0200
Subject: [PATCH 2/2] Feature/improve language localization for FR 20250426
(#4603)
* Improve french translation
* Update changelog
---
CHANGELOG.md | 1 +
apps/client/src/locales/messages.fr.xlf | 12 ++++++------
2 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 328d7749e..a7f152eb8 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`)
### Fixed
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 pourapps/client/src/app/pages/pricing/pricing-page.html266
@@ -7891,7 +7891,7 @@
Gather Recent Historical Market Data
- Gather Recent Historical Market Data
+ Collecter les données récentes du marché historiqueapps/client/src/app/components/admin-market-data/admin-market-data.html225
@@ -7899,7 +7899,7 @@
Gather All Historical Market Data
- Gather All Historical Market Data
+ Collecter toutes les données du marché historiqueapps/client/src/app/components/admin-market-data/admin-market-data.html230
@@ -7907,7 +7907,7 @@
Gather Historical Market Data
- Gather Historical Market Data
+ Collecter les données du marché historiqueapps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.html29
@@ -7915,7 +7915,7 @@
Data Gathering is off
- Data Gathering is off
+ La collecte de données est désactivéeapps/client/src/app/components/admin-market-data/admin-market-data.html38
@@ -7923,7 +7923,7 @@
Performance Calculation
- Performance Calculation
+ Calcul de performanceapps/client/src/app/components/user-account-settings/user-account-settings.html31