Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-06-01 18:07:51 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2016-06-10 13:44:12 +0300
commitb4f14f1f488b5dd22a8a72be3c6f3c7b1192e9d4 (patch)
tree497fca8f51dc7fd27b33f55bef89282925679b2d /settings
parentd9a2b8505936a4cbee37e2af46ff8d58efb44281 (diff)
Do not use the language name, when it's not the one from the language we want
Diffstat (limited to 'settings')
-rw-r--r--settings/personal.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/settings/personal.php b/settings/personal.php
index 62a718985f8..244cd7eb581 100644
--- a/settings/personal.php
+++ b/settings/personal.php
@@ -76,8 +76,9 @@ $commonLanguages = array();
foreach($languageCodes as $lang) {
$l = \OC::$server->getL10N('settings', $lang);
// TRANSLATORS this is the language name for the language switcher in the personal settings and should be the localized version
- if(substr($l->t('__language_name__'), 0, 1) !== '_') {//first check if the language name is in the translation file
- $ln=array('code'=>$lang, 'name'=> (string)$l->t('__language_name__'));
+ $potentialName = (string) $l->t('__language_name__');
+ if($l->getLanguageCode() === $lang && substr($potentialName, 0, 1) !== '_') {//first check if the language name is in the translation file
+ $ln=array('code'=>$lang, 'name'=> $potentialName);
}elseif(isset($languageNames[$lang])) {
$ln=array('code'=>$lang, 'name'=>$languageNames[$lang]);
}else{//fallback to language code