Skip to content

Commit 39eb3e0

Browse files
fix(client): add beta back to a2-english (freeCodeCamp#64368)
1 parent a28ff5d commit 39eb3e0

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

client/i18n/locales/english/intro.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1394,7 +1394,7 @@
13941394
}
13951395
},
13961396
"a2-english-for-developers": {
1397-
"title": "A2 English for Developers Certification",
1397+
"title": "A2 English for Developers Certification (Beta)",
13981398
"intro": [
13991399
"In this English for Developers Curriculum, you'll learn the essentials of English communication. This will follow the A2 level of the Common European Framework of Reference (CEFR). And we've focused on vocabulary that is particularly useful for developers.",
14001400
"The first half of the curriculum will help you get comfortable with English grammar and usage. It will give you tons of hands-on practice. You'll learn basics like introducing yourself, making small talk, and discussing your work.",

client/i18n/locales/english/translations.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1229,7 +1229,7 @@
12291229
"foundational-c-sharp-with-microsoft": "Foundational C# with Microsoft",
12301230
"foundational-c-sharp-with-microsoft-cert": "Foundational C# with Microsoft Certification",
12311231
"a2-english-for-developers": "A2 English for Developers",
1232-
"a2-english-for-developers-cert": "A2 English for Developers Certification",
1232+
"a2-english-for-developers-cert": "A2 English for Developers Certification (Beta)",
12331233
"b1-english-for-developers": "B1 English for Developers",
12341234
"b1-english-for-developers-cert": "B1 English for Developers Certification",
12351235
"responsive-web-design-v9": "Responsive Web Design",

client/src/components/profile/components/utils/certification.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const getCertifications = (user: User) => {
5656
currentCerts: [
5757
{
5858
show: isA2EnglishCert,
59-
title: 'A2 English for Developers Certification',
59+
title: 'A2 English for Developers Certification (Beta)',
6060
certSlug: Certification.A2English
6161
},
6262
{

client/src/templates/Introduction/components/super-block-intro.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const ConditionalDonationAlert = ({
3030
}: ConditionalDonationAlertProps): JSX.Element | null => {
3131
const { t } = useTranslation();
3232

33-
const betaCertifications: SuperBlocks[] = [];
33+
const betaCertifications: SuperBlocks[] = [SuperBlocks.A2English];
3434

3535
const unfinishedCertifications = [
3636
SuperBlocks.B1English,

curriculum/challenges/english/certifications/a2-english-for-developers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
id: 651dd7e01d697d0aab7833b7
2-
title: A2 English for Developers Certification
2+
title: A2 English for Developers Certification (Beta)
33
certification: a2-english-for-developers
44
challengeType: 7
55
tests:

e2e/map.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const LANDING_PAGE_LINKS = [
3636
},
3737
{
3838
slug: 'a2-english-for-developers',
39-
name: 'A2 English for Developers Certification'
39+
name: 'A2 English for Developers Certification (Beta)'
4040
},
4141
{
4242
slug: 'b1-english-for-developers',

0 commit comments

Comments
 (0)