Files
edx-platform/common/djangoapps/student/constants.py
2025-06-03 17:24:24 -04:00

5 lines
189 B
Python

"""# Generate a sorted list of unique language names from pycountry """
import pycountry
LANGUAGE_CHOICES = sorted({lang.name for lang in pycountry.languages if hasattr(lang, 'alpha_2')})