diff --git a/client/i18n/locales/english/translations.json b/client/i18n/locales/english/translations.json index 9265e4afd6c..a8667c7face 100644 --- a/client/i18n/locales/english/translations.json +++ b/client/i18n/locales/english/translations.json @@ -1115,6 +1115,7 @@ "issued": "Issued", "fulltext": "<0>This certifies that <1>{{user}} <2>successfully completed the <3>{{title}} <4>Developer Certification on {{time}} <5>representing approximately {{completionTime}} hours of work", "fulltextNoHours": "<0>This certifies that <1>{{user}} <2>successfully completed the <3>{{title}} <4>Developer Certification on {{time}}", + "fulltextLanguageExam": "<0>This certifies that <1>{{user}} <2>has successfully passed the <3>{{title}} <4>exam on {{time}} <5>demonstrating competence in grammar, listening, and reading portions of the CEFR standards for this level based on the content covered in the curriculum.", "quincy-larson-signature": "Quincy Larson's Signature", "julia-liuson-signature": "Julia Liuson's Signature", "project": { diff --git a/client/src/client-only-routes/show-certification.tsx b/client/src/client-only-routes/show-certification.tsx index 9172590dfab..33e1125ec3c 100644 --- a/client/src/client-only-routes/show-certification.tsx +++ b/client/src/client-only-routes/show-certification.tsx @@ -389,6 +389,14 @@ const ShowCertification = (props: ShowCertificationProps): JSX.Element => { const isMicrosoftCert = certSlug === Certification.FoundationalCSharp; + const isLanguageCert = [ + Certification.A1Chinese, + Certification.A2Chinese, + Certification.A2English, + Certification.A2Spanish, + Certification.B1English + ].includes(certSlug); + return ( {isDonationDisplayed && !isDonationClosed ? ( @@ -441,7 +449,9 @@ const ShowCertification = (props: ShowCertificationProps): JSX.Element => { i18nKey={ isMicrosoftCert ? 'certification.fulltextNoHours' - : 'certification.fulltext' + : isLanguageCert + ? 'certification.fulltextLanguageExam' + : 'certification.fulltext' } title={t(`certification.title.${certSlug}`, certTitle)} >