Skip to content

Commit

Permalink
feat: Allow to include translations for extended profile fields (#10)
Browse files Browse the repository at this point in the history
* feat: Allow to include translations for extended profile fields

(cherry picked from commit 5d03359)

* fix: test with pr suggestion
  • Loading branch information
johanseto authored Jan 31, 2024
1 parent 535faf4 commit 55cc8e6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions openedx/core/djangoapps/user_api/accounts/settings_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
from openedx.core.djangoapps.lang_pref.api import all_languages, released_languages
from openedx.core.djangoapps.programs.models import ProgramsApiConfig
from openedx.core.djangoapps.site_configuration import helpers as configuration_helpers
from openedx.core.djangoapps.theming import helpers as theming_helpers
from openedx.core.djangoapps.user_api.accounts.toggles import (
should_redirect_to_account_microfrontend,
should_redirect_to_order_history_microfrontend,
Expand Down Expand Up @@ -275,6 +276,15 @@ def _get_extended_profile_fields():
"profession": _("Profession"),
"specialty": _("Specialty")
}
request = theming_helpers.get_current_request()

if request:
extended_profile_fields_translations = configuration_helpers.get_value(
'extended_profile_fields_translations',
{},
)
translations = extended_profile_fields_translations.get(request.LANGUAGE_CODE, {})
field_labels_map.update(translations)

extended_profile_field_names = configuration_helpers.get_value('extended_profile_fields', [])
for field_to_exclude in fields_already_showing:
Expand Down

0 comments on commit 55cc8e6

Please sign in to comment.