diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-08 21:04:26 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-04-08 21:04:26 -0400 |
commit | 6551c9ce4c169100f55ec6912233f8e627a5cc05 (patch) | |
tree | 67f62521b6c0c192645cf77979cd74d252335c3c /core | |
parent | 681a11416849131ef4a9294e274c13bd04d57117 (diff) |
Change date format for the french translation to avoid Windows bug
Diffstat (limited to 'core')
-rw-r--r-- | core/translator.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/translator.php b/core/translator.php index 75d40a23..0f8c3d89 100644 --- a/core/translator.php +++ b/core/translator.php @@ -69,7 +69,7 @@ namespace Translator { function load($language) { - setlocale(LC_TIME, $language.'.UTF-8'); + setlocale(LC_TIME, $language.'.UTF-8', $language); $path = PATH.$language; $locales = array(); |