diff --git a/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/draft-signup-form/draft-onboarding-form.component.html b/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/draft-signup-form/draft-onboarding-form.component.html index c6748a41d9c..74fdd8f9d00 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/draft-signup-form/draft-onboarding-form.component.html +++ b/src/SIL.XForge.Scripture/ClientApp/src/app/translate/draft-generation/draft-signup-form/draft-onboarding-form.component.html @@ -69,6 +69,9 @@

{{ t("title") }}

formControlName="translationLanguageName" [placeholder]="t('translation_language_name_placeholder')" /> + @if (signupForm.controls.translationLanguageName.hasError("required")) { + {{ t("translation_language_name_required") }} + } @@ -80,6 +83,9 @@

{{ t("title") }}

formControlName="translationLanguageIsoCode" [placeholder]="t('translation_language_iso_placeholder')" /> + @if (signupForm.controls.translationLanguageIsoCode.hasError("required")) { + {{ t("translation_language_iso_required") }} + } diff --git a/src/SIL.XForge.Scripture/ClientApp/src/assets/i18n/non_checking_en.json b/src/SIL.XForge.Scripture/ClientApp/src/assets/i18n/non_checking_en.json index 690db49f5fa..a2e09333558 100644 --- a/src/SIL.XForge.Scripture/ClientApp/src/assets/i18n/non_checking_en.json +++ b/src/SIL.XForge.Scripture/ClientApp/src/assets/i18n/non_checking_en.json @@ -972,8 +972,10 @@ "title": "Sign up for draft generation", "translation_language_iso_label": "Translation language ISO code", "translation_language_iso_placeholder": "e.g. swa, tpi", + "translation_language_iso_required": "Translation language ISO code is required", "translation_language_name_label": "Translation language name", - "translation_language_name_placeholder": "e.g. Swahili, Tok Pisin" + "translation_language_name_placeholder": "e.g. Swahili, Tok Pisin", + "translation_language_name_required": "Translation language name is required" }, "users": { "collaborators": "Collaborators",