Translate creating profile

This commit is contained in:
MartinBraquet
2026-03-09 14:13:51 +01:00
parent 3a2db534ab
commit 57edf80bfd
3 changed files with 7 additions and 1 deletions

View File

@@ -1139,6 +1139,7 @@
"signup.submit": "Konto erstellen",
"signup.title": "Konto erstellen",
"signup.toast.created": "Konto erstellt",
"signup.creating_profile": "Profil wird erstellt...",
"social.community.desc": "Treten Sie unseren Community-Diskussionen und Chats bei.",
"social.community.title": "Community",
"social.contact.desc": "Kontaktieren Sie uns direkt für Anfragen.",

View File

@@ -1138,6 +1138,7 @@
"signup.submit": "Créer le compte",
"signup.title": "Créer un compte",
"signup.toast.created": "Compte créé",
"signup.creating_profile": "Création de votre profil...",
"social.community.desc": "Rejoignez nos discussions et chats communautaires.",
"social.community.title": "Communauté",
"social.contact.desc": "Contactez-nous directement pour toute demande.",

View File

@@ -17,6 +17,7 @@ import {useTracking} from 'web/hooks/use-tracking'
import {api} from 'web/lib/api'
import {auth, CACHED_REFERRAL_USERNAME_KEY} from 'web/lib/firebase/users'
import {useLocale} from 'web/lib/locale'
import {useT} from 'web/lib/locale'
import {getLocale} from 'web/lib/locale-cookie'
import {track} from 'web/lib/service/analytics'
import {safeLocalStorage} from 'web/lib/util/local'
@@ -30,6 +31,7 @@ export default function SignupPage() {
const {locale} = useLocale()
const language = LOCALE_TO_LANGUAGE[locale]
const t = useT()
const [baseUser, setBaseUser] = useState<BaseUser>(getInitialBaseUser())
@@ -124,7 +126,9 @@ export default function SignupPage() {
{isSubmitting ? (
<Col className="flex-1 items-center justify-center py-20">
<CompassLoadingIndicator />
<div className="mt-4 text-gray-500">Creating your profile...</div>
<div className="mt-4 text-gray-500">
{t('signup.creating_profile', 'Creating your profile...')}
</div>
</Col>
) : (
<Col className={'w-full max-w-4xl px-6 py-4'}>