Created
December 11, 2012 11:47
-
-
Save nfreear/4257985 to your computer and use it in GitHub Desktop.
Configuration options - adding custom locales - CloudEngine/ Cloudworks / internationalization / i18n
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Feature flag for internationalisation | |
| $config['x_translate'] = TRUE; | |
| $config['locale_array']= array( | |
| // Danish. | |
| 'da' => array( | |
| 'name' => 'Dansk/ Danish', | |
| 'locales'=> array('da_DK.UTF-8', 'da_DK.utf8'), | |
| ), | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment