Skip to content

Commit d08f577

Browse files
authored
Revert "Revert "fix: this change to close the build-time pull gap (#348)" (#366)" (#367)
This reverts commit 0281a82.
1 parent 0281a82 commit d08f577

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

openedx/core/djangoapps/plugins/i18n_api.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,11 @@ def get_installed_plugins_module_names():
165165
root_modules[entry_point.group].add(root_module)
166166

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

0 commit comments

Comments
 (0)