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:
Johannes Meyer 2014-02-03 11:05:28 +01:00
parent fc93bc50f3
commit 3aee13cd9b
1 changed files with 4 additions and 1 deletions

View File

@ -43,8 +43,11 @@ class Translator
/** /**
* The locale code that is used in the project * 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 * Known gettext domains and directories