mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -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) {
|
if ('equal' === $locale) {
|
||||||
return $this->getLanguage();
|
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;
|
return $locale;
|
||||||
}
|
}
|
||||||
@ -627,7 +632,6 @@ class Steam
|
|||||||
return [
|
return [
|
||||||
sprintf('%s.utf8', $locale),
|
sprintf('%s.utf8', $locale),
|
||||||
sprintf('%s.UTF-8', $locale),
|
sprintf('%s.UTF-8', $locale),
|
||||||
str_replace('_', '-', $locale), // for Windows.
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user