mobile: fix Extra punctuation in “Setting up your account” screen text

This commit is contained in:
Ammar Ahmed
2026-06-08 08:47:44 +05:00
committed by Abdullah Atta
parent 0c04bf7361
commit beb68e12d7
4 changed files with 21 additions and 3 deletions

View File

@@ -363,9 +363,9 @@ export const Signup = ({
>
{welcome ? <ProgressPills activePillIndex={2} /> : null}
<Loading
title={"Setting up your account..."}
title={strings.settingUpYourAccount()}
svgSrc={SETTING_ACCOUNT_SVG}
description="Your account is almost ready, please wait..."
description={strings.accountAlmostReady()}
style={{
height: undefined,
marginTop: Spacing.LEVEL_6

View File

@@ -6377,6 +6377,10 @@ msgstr "Set the interval to create a partial backup (without attachments) automa
msgid "Set your name"
msgstr "Set your name"
#: src/strings.ts:2796
msgid "Setting up your account..."
msgstr "Setting up your account..."
#: src/strings.ts:387
#: src/strings.ts:1545
msgid "Settings"
@@ -8031,6 +8035,10 @@ msgstr "Your account email will be changed without affecting your subscription o
msgid "Your account has been recovered."
msgstr "Your account has been recovered."
#: src/strings.ts:2797
msgid "Your account is almost ready, please wait."
msgstr "Your account is almost ready, please wait."
#: src/strings.ts:502
#: src/strings.ts:1749
msgid "Your account is now 100% secure against unauthorized logins."

View File

@@ -6351,6 +6351,10 @@ msgstr ""
msgid "Set your name"
msgstr ""
#: src/strings.ts:2796
msgid "Setting up your account..."
msgstr ""
#: src/strings.ts:387
#: src/strings.ts:1545
msgid "Settings"
@@ -7970,6 +7974,10 @@ msgstr ""
msgid "Your account has been recovered."
msgstr ""
#: src/strings.ts:2797
msgid "Your account is almost ready, please wait."
msgstr ""
#: src/strings.ts:502
#: src/strings.ts:1749
msgid "Your account is now 100% secure against unauthorized logins."

View File

@@ -2845,5 +2845,7 @@ Continue without attachments?`,
description: () =>
t`Your thoughts deserve a home. Create your first note and start organizing your life today.`,
button: () => t`Add Your First Note`
}
},
settingUpYourAccount: () => t`Setting up your account...`,
accountAlmostReady: () => t`Your account is almost ready, please wait.`
};