From 4d97f7033f66608681fc26f92e0bc8e752e4115c Mon Sep 17 00:00:00 2001 From: kashaf-ansari-dev Date: Mon, 3 Aug 2026 10:49:31 +0500 Subject: [PATCH] mobile: remove accent color on dialogue text and estrics from the string Signed-off-by: kashaf-ansari-dev --- apps/mobile/app/components/auth/header.tsx | 1 - packages/intl/locale/en.po | 4 ++-- packages/intl/locale/pseudo-LOCALE.po | 2 +- packages/intl/src/strings.ts | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/apps/mobile/app/components/auth/header.tsx b/apps/mobile/app/components/auth/header.tsx index e8597a4ae..1df0b7fb4 100644 --- a/apps/mobile/app/components/auth/header.tsx +++ b/apps/mobile/app/components/auth/header.tsx @@ -63,7 +63,6 @@ export const AuthHeader = (props: { welcome?: boolean }) => { presentDialog({ title: strings.offlineMode(), paragraph: strings.offlineModeDesc(), - paragraphColor: colors.primary.accent, positiveText: strings.understand(), positivePress: hideAuth as any }); diff --git a/packages/intl/locale/en.po b/packages/intl/locale/en.po index dd465c6b1..71ead12cb 100644 --- a/packages/intl/locale/en.po +++ b/packages/intl/locale/en.po @@ -7490,8 +7490,8 @@ msgid "Using {instance} (v{version})" msgstr "Using {instance} (v{version})" #: src/strings.ts:2812 -msgid "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly." -msgstr "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly." +msgid "Using Notesnook without an account will NOT sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly." +msgstr "Using Notesnook without an account will NOT sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly." #: src/strings.ts:2265 msgid "Using official Notesnook instance" diff --git a/packages/intl/locale/pseudo-LOCALE.po b/packages/intl/locale/pseudo-LOCALE.po index 47cb81373..f686dc3e0 100644 --- a/packages/intl/locale/pseudo-LOCALE.po +++ b/packages/intl/locale/pseudo-LOCALE.po @@ -7440,7 +7440,7 @@ msgid "Using {instance} (v{version})" msgstr "" #: src/strings.ts:2812 -msgid "Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly." +msgid "Using Notesnook without an account will NOT sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly." msgstr "" #: src/strings.ts:2265 diff --git a/packages/intl/src/strings.ts b/packages/intl/src/strings.ts index e148b2196..46a8cf681 100644 --- a/packages/intl/src/strings.ts +++ b/packages/intl/src/strings.ts @@ -2809,5 +2809,5 @@ Continue without attachments?`, versionDeleted: () => actions.deleted.version(1), offlineMode: () => t`Offline mode`, offlineModeDesc: () => - t`Using Notesnook without an account will **NOT** sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly.` + t`Using Notesnook without an account will NOT sync your notes across devices and could result in data loss if you lose access to your device or uninstall the app. Make sure to backup your notes regularly.` };