diff --git a/frontend/src/lang/en.json b/frontend/src/lang/en.json
index d725f60d97cff71ba041e29c84885c985eb05387..42ade9d8b1368648cdc4e50973486e748a777241 100644
--- a/frontend/src/lang/en.json
+++ b/frontend/src/lang/en.json
@@ -214,6 +214,7 @@
 	},
 	"register": {
 		"birthyear": "Year of birth",
+		"birthyear.note": "In what year were you born?",
 		"confirmPassword": "Confirm password",
 		"confirmTutor": "Do you confirm selecting “{NAME}” as your guardian?",
 		"consent": {
@@ -287,6 +288,19 @@
 			"information": "Information",
 			"signup": "Registration",
 			"start": "To start"
+		},
+		"welcome": "Welcome to LanguageLab! Before you begin, please fill out the following information. This will allow us to get to know you better and tailor the experience to your needs.",
+		"homeLanguage": "First language",
+		"homeLanguage.note": "Native language or primary home language",
+		"targetLanguage": "Target language",
+		"targetLanguage.note": "Language you want to learn",
+		"gender": "Are you...",
+		"gender.note": "Gender identity you mostly identify with",
+		"genders": {
+			"male": "A man",
+			"female": "A woman",
+			"other": "Other",
+			"na": "Prefer not to say"
 		}
 	},
 	"session": {
diff --git a/frontend/src/lang/fr.json b/frontend/src/lang/fr.json
index 81c90b4d8004c33a344b311ccdbf78acbe7090d8..8a0b09732dfaaf6d975666a1c2d3bf9ee678eb34 100644
--- a/frontend/src/lang/fr.json
+++ b/frontend/src/lang/fr.json
@@ -213,6 +213,7 @@
 			"na": "Je préfère ne pas répondre"
 		},
 		"birthyear": "Année de naissance",
+		"birthyear.note": "En quelle année êtes-vous né·e ?",
 		"confirmTutor": "Confirmez-vous sélectionner \"{NAME}\" comme tuteur ?",
 		"continue": "Aut sint sint et nihil aut. Quia nihil eos rerum neque exercitationem molestiae. Aut ab accusantium consequatur rerum architecto voluptas. Repudiandae minima nemo vitae tempore. Molestiae rerum aliquid ut fugit eligendi. Tempore eum id nobis sunt deleniti et non ducimus. Maiores perferendis non consequuntur neque nostrum. Odio itaque fugiat non. Laboriosam sint voluptatem aut placeat et perferendis. Sed quam voluptatem necessitatibus quia dolorum. Eius est nihil natus modi natus quisquam ut impedit. Tempore enim autem laboriosam sequi ipsum quo. <bold class=\"font-bold\">Aut voluptatum debitis et aliquam vel rerum facere.</bold>",
 		"continueButton": "Continuer vers les tests",
diff --git a/frontend/src/routes/register/+page.svelte b/frontend/src/routes/register/+page.svelte
index 4f63297d305c84dfa6f397efc566134d988563e9..431a5ce766442936c49d1eacec23812674cb61dd 100644
--- a/frontend/src/routes/register/+page.svelte
+++ b/frontend/src/routes/register/+page.svelte
@@ -188,6 +188,7 @@
 			<div class="form-control">
 				<label for="birthyear" class="label">
 					<span class="label-text">{$t('register.birthyear')}</span>
+					<span class="label-text-alt">{$t('register.birthyear.note')}</span>
 				</label>
 				<select class="select select-bordered" id="birthyear" name="birthyear" required>
 					<option disabled selected value="">{$t('register.birthyear')}</option>