Fix that en_US is used as default locale
Using this locale is not an issue, but it might not be available in a user's environment
This commit is contained in:
parent
fc93bc50f3
commit
3aee13cd9b
|
@ -43,8 +43,11 @@ class Translator
|
|||
|
||||
/**
|
||||
* The locale code that is used in the project
|
||||
*
|
||||
* We are actually using en_US. "C" refers to "whatever is hardcoded"
|
||||
* and is used because en_US might not be available though.
|
||||
*/
|
||||
const DEFAULT_LOCALE = 'en_US';
|
||||
const DEFAULT_LOCALE = 'C';
|
||||
|
||||
/**
|
||||
* Known gettext domains and directories
|
||||
|
|
Loading…
Reference in New Issue