Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed irrelevant information in the categories #2830

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading