Skip to content

Commit

Permalink
Fixed irrelevant information in the your professional categories (#2835)
Browse files Browse the repository at this point in the history
"Choose at least one study category and one subject." is written instead of "Choose at least one study category, one subject and one proficiency level."
  • Loading branch information
Made1ra authored Nov 25, 2024
1 parent 13d84a3 commit aecf3a3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 4 additions & 2 deletions src/constants/translations/en/edit-profile.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@
"mainTitle": "Professional information",
"mainDescription": "Here you can edit public professional information about yourself.",
"categoriesTitle": "Your professional categories",
"categoriesDescriptionForTutor": "State your professional field you want to work in with your students.\nChoose at least one study category, one subject and one proficiency level.",
"categoriesDescriptionForStudent": "State the category you want to study.\nChoose at least one study category, one subject and one proficiency level.",
"categoriesDescription": {
"tutor": "State your professional field you want to work in with your students.\nChoose at least one study category and one subject.",
"student": "State the category you want to study.\nChoose at least one study category and one subject."
},
"addCategoryBtn": "Add category",
"addCategoryModal": {
"title": "Your professional category",
Expand Down
6 changes: 4 additions & 2 deletions src/constants/translations/uk/edit-profile.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@
"mainTitle": "Професійні відомості",
"mainDescription": "Тут ви можете редагувати публічну професійну інформацію про себе.",
"categoriesTitle": "Ваші професійні категорії",
"categoriesDescriptionForTutor": "Вкажіть свою професійну сферу, в якій ви хочете працювати зі своїми студентами.\nОбepiть принаймні одну навчальну категорію, один предмет i один рівень володіння мовою",
"categoriesDescriptionForStudent": "Вкажіть категорію, яку ви хочете вивчати.\nОбepiть принаймні одну навчальну категорію, один предмет i один рівень володіння мовою",
"categoriesDescription": {
"tutor": "Вкажіть свою професійну сферу, в якій ви хочете працювати зі своїми студентами.\nОбepiть принаймні одну навчальну категорію i один предмет.",
"student": "Вкажіть категорію, яку ви хочете вивчати.\nОбepiть принаймні одну навчальну категорію i один предмет."
},
"addCategoryBtn": "Створити категорію",
"addCategoryModal": {
"title": "Ваша професійна категорія",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,6 @@ const ProfessionalInfoTab: FC = () => {
</Box>
)

const professionalTabCategoriesDescription = t(
userRole === UserRoleEnum.Student
? 'editProfilePage.profile.professionalTab.categoriesDescriptionForStudent'
: 'editProfilePage.profile.professionalTab.categoriesDescriptionForTutor'
)

return (
<Box sx={styles.root}>
<TitleWithDescription
Expand All @@ -144,7 +138,9 @@ const ProfessionalInfoTab: FC = () => {
<Box component={ComponentEnum.Section} id='category'>
<Box sx={highlightElem}></Box>
<TitleWithDescription
description={professionalTabCategoriesDescription}
description={t(
`editProfilePage.profile.professionalTab.categoriesDescription.${userRole}`
)}
isHighlighted
style={styles.titleWithDescription}
title={t('editProfilePage.profile.professionalTab.categoriesTitle')}
Expand Down

0 comments on commit aecf3a3

Please sign in to comment.