Setup different languages for CMS and LMS

Hi everyone,

I am looking for a way to configure 2 different languages for CMS and LMS.
Reading from the document of Open edX, we can do it by setting the LANGUAGE_CODE in the lms.env.json and cms.env.json

How can I do this using tutor config?

Thank you.

Hi @nhanquach! I would suggest creating a simple YAML plugin for tutor that would override the LANGUAGE_CODE setting in the CMS only. See the docs: https://docs.tutor.overhang.io/plugins/gettingstarted.html#yaml-file

It would be something like:

name: customcmslanguage
version: 0.1.0
patches:
  openedx-cms-common-settings: |
    LANGUAGE_CODE = "fr"
2 Likes