Details
Description
It would be nice to support gettext natively for the systems that can.
On non-usenglish installations, translation will add a 20-30% overhead, if APC is not correctly configured.
We need to:
- use native gettext in CRM/Core/I18n.php, if supported (fallback otherwise)
- show a warning in the UI, if people are using a localized version of CiviCRM without native gettext
- document how to configure native gettext (the operating system must support it) - in the wiki?
- change the hierarchy of l10n files to l10n/fr_FR/LC_MESSAGES/civicrm.mo
See: http://forum.civicrm.org/index.php/topic,22740.msg101591.html#msg101591
Committed to version 39390.
To use it, you must define a constant in your civicrm.settings.php:
define('CIVICRM_GETTEXT_NATIVE', 1);
If your operating system does not support your locale, it will fallback to English. We have no method to detect whether the locale is supported or not.