Skip to main content

Localization

ChurchCRM supports more than 45 languages. The application language is configured in AdminGeneral SettingsLocalization.

Select the appropriate language from the dropdown and save the settings. The interface will switch to the selected language immediately.

Note: Translations are community-contributed and may be incomplete for some languages. If you encounter untranslated strings, the text will fall back to English.

How to translate ChurchCRM (brief)

If you'd like to contribute translations or add a new language, follow this short workflow:

  1. Extract terms:
npm run locale:build
# produces: locale/terms/messages.po
  1. Translate:
  • Recommended: Upload locale/terms/messages.po to POEditor (project-managed translations) and translate there.
  • Alternative: Edit the .po file locally with Poedit or similar.
  1. Download & build translated assets:
npm run locale:download
npm run deploy # or npm run build
  1. Restart webserver / containers so PHP picks up installed .mo files.

  2. Verify:

  • Use AdminSystemDebug and open the Locale Support card to confirm the OS locale is installed and translations are available.
  • Browse the UI to confirm translated strings render correctly.
  1. Commit & publish:
  • Commit locale/terms/messages.po (and generated frontend JSON if your workflow requires it) and open a PR, or sync via POEditor integration.

For a complete developer-oriented guide (commands, POEditor API examples, and troubleshooting), see the Localization management guide: https://github.com/ChurchCRM/CRM/wiki/Localization