Skip to content

Commit

Permalink
Fixed irrelevant information in the categories (#2830)
Browse files Browse the repository at this point in the history
  • Loading branch information
Made1ra authored Nov 23, 2024
1 parent 8054428 commit 4cf481c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/constants/translations/en/edit-profile.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"mainTitle": "Professional information",
"mainDescription": "Here you can edit public professional information about yourself.",
"categoriesTitle": "Your professional categories",
"categoriesDescription": "State your professional field you want to work in with your students.\nChoose at least one study category, one subject and one proficiency level.",
"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.",
"addCategoryBtn": "Add category",
"addCategoryModal": {
"title": "Your professional category",
Expand Down
3 changes: 2 additions & 1 deletion src/constants/translations/uk/edit-profile.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"mainTitle": "Професійні відомості",
"mainDescription": "Тут ви можете редагувати публічну професійну інформацію про себе.",
"categoriesTitle": "Ваші професійні категорії",
"categoriesDescription": "Вкажіть свою професійну сферу, в якій ви хочете працювати зі своїми студентами.\nОбepiть принаймні одну навчальну категорію, один предмет i один рівень володіння мовою",
"categoriesDescriptionForTutor": "Вкажіть свою професійну сферу, в якій ви хочете працювати зі своїми студентами.\nОбepiть принаймні одну навчальну категорію, один предмет i один рівень володіння мовою",
"categoriesDescriptionForStudent": "Вкажіть категорію, яку ви хочете вивчати.\nОбepiть принаймні одну навчальну категорію, один предмет i один рівень володіння мовою",
"addCategoryBtn": "Створити категорію",
"addCategoryModal": {
"title": "Ваша професійна категорія",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,12 @@ 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 @@ -130,9 +136,7 @@ const ProfessionalInfoTab: FC = () => {
<Box component={ComponentEnum.Section} id='category'>
<Box sx={highlightElem}></Box>
<TitleWithDescription
description={t(
'editProfilePage.profile.professionalTab.categoriesDescription'
)}
description={professionalTabCategoriesDescription}
isHighlighted
style={styles.titleWithDescription}
title={t('editProfilePage.profile.professionalTab.categoriesTitle')}
Expand Down

0 comments on commit 4cf481c

Please sign in to comment.