...
- your PHP must have gettext support compiled in (it usually is the case, see your phpinfo() for more information). For example, under Debian or Ubuntu:
- apt-get install php-gettext
your operating system must have the locale enabled. For example, on Linux-based systems, this is in /etc/locale.gen, or you can type the following:
locale -a
Debian/Ubuntu based systems can enable locales by typing:
- dpkg-reconfigure locales
- you must restart Apache after adding a new locale (/etc/init.d/apache2 restart)
- Add the following to your civicrm.settings.php: define('CIVICRM_GETTEXT_NATIVE', 1);
...