Merge pull request #8218 from nextcloud/display_proper_lang_string
Display the proper language strings in setttings
This commit is contained in:
commit
d767d01a0c
|
@ -205,7 +205,7 @@ class PersonalInfo implements ISettings {
|
|||
$languages = [];
|
||||
|
||||
foreach($languageCodes as $lang) {
|
||||
$l = \OC::$server->getL10N('settings', $lang);
|
||||
$l = \OC::$server->getL10N('lib', $lang);
|
||||
// TRANSLATORS this is the language name for the language switcher in the personal settings and should be the localized version
|
||||
$potentialName = (string) $l->t('__language_name__');
|
||||
if($l->getLanguageCode() === $lang && $potentialName[0] !== '_') {//first check if the language name is in the translation file
|
||||
|
|
Loading…
Reference in New Issue