Skip to content
Merged
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
7 changes: 2 additions & 5 deletions openedx/core/djangoapps/plugins/i18n_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,8 @@ def get_installed_plugins_module_names():
root_modules[entry_point.group].add(root_module)

return (
# Return all lms.djangopapp, cms.djangoapp and openedx.proctoring plugins.
# The openedx.proctoring group covers proctoring backends (e.g.
# edx-proctoring-proctortrack), which are not registered as edx-platform
# django app plugins but still ship their own conf/locale translations.
(root_modules['lms.djangoapp'] | root_modules['cms.djangoapp'] | root_modules['openedx.proctoring'])
# Return all lms.djangopapp and cms.djangoapp plugins
(root_modules['lms.djangoapp'] | root_modules['cms.djangoapp'])
# excluding the edx-platform built-in plugins which don't need atlas
- {'lms', 'cms', 'common', 'openedx', 'xmodule'}
# excluding XBlocks, which is handled by `pull_xblock_translations` command
Expand Down
Loading