Merge pull request #18429 from nextcloud/locale-fallback

add a fallback locale for personal settings page
This commit is contained in:
Roeland Jago Douma 2019-12-17 12:31:17 +01:00 committed by GitHub
commit 7f2b3eabe1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -251,6 +251,13 @@ class PersonalInfo implements ISettings {
return 0 === strpos($localeCode['code'], $userLang);
});
if (!$userLocale) {
$userLocale = [
'code' => 'en',
'name' => 'English'
];
}
return [
'activelocaleLang' => $userLocaleString,
'activelocale' => $userLocale,