18590 Posts in 4875 Topics by 2285 members
General Questions
SilverStripe Forums » General Questions » Hopefully a simple Multi Language question
General questions about getting started with SilverStripe that don't fit in any of the categories above.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 601 Views |
-
Hopefully a simple Multi Language question

21 September 2010 at 1:37pm
Working with SS 2.3.2.
Client needs to have a distinction between en_US and en_GB content.
Noticing that the default language dropdown in the CMS only contains "English" - with no further distinction.
Is there a way I can override the language entries that appear in this dropdown and affect the languages available for the CMS?
Any ideas? Thanks in advance.
-
Re: Hopefully a simple Multi Language question

21 September 2010 at 2:25pm
Thanks to DesignCity on the IRC channel for this...
In the _config.php file, add the following...
global $allowed_locales;
$allowed_locales = array('en_GB' => array('English (UK)','English (UK)'));
i18n::$common_locales = $allowed_locales;This will replace the default list of alternative languages, so populate the $allowed_locales array with ALL of the languages you need.
| 601 Views | ||
|
Page:
1
|
Go to Top |

