From 772b7973851ed932eee378688e94dfc7d1c5b362 Mon Sep 17 00:00:00 2001 From: Zurab Balamtsarashvili <113359504+ZurabBalamtsarashvili@users.noreply.github.com> Date: Sun, 14 Sep 2025 14:30:10 +0400 Subject: [PATCH 1/3] Fix Georgian translation for cancellation message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed a translation issue in the Georgian locale file where the German word 'jederzeit' was mistakenly left from the template. Updated it to the correct Georgian translation 'ნებისმიერ დროს'. This ensures full consistency in the localized UI and removes the last leftover from the German base file. --- .../src/translation/locales/ka_ge/translation.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/react-shared-libraries/src/translation/locales/ka_ge/translation.json b/libraries/react-shared-libraries/src/translation/locales/ka_ge/translation.json index e8614579..2cccb3e7 100644 --- a/libraries/react-shared-libraries/src/translation/locales/ka_ge/translation.json +++ b/libraries/react-shared-libraries/src/translation/locales/ka_ge/translation.json @@ -149,7 +149,7 @@ "to_manage_all_your_social_media_channels": "ყველა სოციალური არხის სამართავად", "100_no_risk_trial": "100% რისკის გარეშე საცდელი პერიოდი", "pay_nothing_for_the_first_7_days": "პირველი 7 დღე უფასოა", - "cancel_anytime_hassle_free": "გაუქმება jederzeit, უპრობლემოდ", + "cancel_anytime_hassle_free": "გაუქმება ნებისმიერ დროს, უპრობლემოდ", "add_free_subscription": "-- უფასო გამოწერის დამატება --", "currently_impersonating": "ამჟამად იმპერსონაციაა", "user_1": "მომხმარებელი:", From cc36d6a2dc0bbdb2771f25f0e704e67a7258625d Mon Sep 17 00:00:00 2001 From: Enno Gelhaus Date: Wed, 17 Sep 2025 00:54:53 +0200 Subject: [PATCH 2/3] Adjust Sentry replay sample rates for production --- .../src/sentry/initialize.sentry.client.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/react-shared-libraries/src/sentry/initialize.sentry.client.ts b/libraries/react-shared-libraries/src/sentry/initialize.sentry.client.ts index 70e626d7..6bc1833b 100644 --- a/libraries/react-shared-libraries/src/sentry/initialize.sentry.client.ts +++ b/libraries/react-shared-libraries/src/sentry/initialize.sentry.client.ts @@ -15,6 +15,6 @@ export const initializeSentryClient = (environment: string, dsn: string) => autoInject: false, }), ], - replaysSessionSampleRate: environment === 'development' ? 1.0 : 0.1, - replaysOnErrorSampleRate: environment === 'development' ? 1.0 : 0.1, + replaysSessionSampleRate: environment === 'development' ? 1.0 : 0.5, + replaysOnErrorSampleRate: 1.0, }); From c3b83224be6e398c589afbedf64def4b46474d22 Mon Sep 17 00:00:00 2001 From: Enno Gelhaus Date: Wed, 17 Sep 2025 01:01:45 +0200 Subject: [PATCH 3/3] Attempt to fix Profiling --- libraries/nestjs-libraries/src/sentry/initialize.sentry.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libraries/nestjs-libraries/src/sentry/initialize.sentry.ts b/libraries/nestjs-libraries/src/sentry/initialize.sentry.ts index 6c5864be..370a308e 100644 --- a/libraries/nestjs-libraries/src/sentry/initialize.sentry.ts +++ b/libraries/nestjs-libraries/src/sentry/initialize.sentry.ts @@ -29,6 +29,10 @@ export const initializeSentry = (appName: string, allowLogs = false) => { ], tracesSampleRate: process.env.NODE_ENV === 'development' ? 1.0 : 0.3, enableLogs: true, + + // Profiling + profileSessionSampleRate: process.env.NODE_ENV === 'development' ? 1.0 : 0.3, + profileLifecycle: 'trace', }); } catch (err) { console.log(err);