mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-23 09:26:29 -06:00
UTF8 locale support for Windows
This commit is contained in:
parent
e29b2066c2
commit
c741d56b32
@ -614,6 +614,11 @@ class Steam
|
||||
if ('equal' === $locale) {
|
||||
return $this->getLanguage();
|
||||
}
|
||||
|
||||
// Check for Windows to replace the locale correctly.
|
||||
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
||||
$locale = str_replace('_', '-', $locale);
|
||||
}
|
||||
|
||||
return $locale;
|
||||
}
|
||||
@ -627,7 +632,6 @@ class Steam
|
||||
return [
|
||||
sprintf('%s.utf8', $locale),
|
||||
sprintf('%s.UTF-8', $locale),
|
||||
str_replace('_', '-', $locale), // for Windows.
|
||||
];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user