Localization
ChurchCRM supports more than 45 languages. The application language is configured in Admin → General Settings → Localization.
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:
- Extract terms:
npm run locale:build
# produces: locale/terms/messages.po
- Translate:
- Recommended: Upload
locale/terms/messages.poto POEditor (project-managed translations) and translate there. - Alternative: Edit the
.pofile locally with Poedit or similar.
- Download & build translated assets:
npm run locale:download
npm run deploy # or npm run build
-
Restart webserver / containers so PHP picks up installed
.mofiles. -
Verify:
- Use Admin → System → Debug 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.
- 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