summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-01-16 15:17:09 +0100
committerGitHub <noreply@github.com>2017-01-16 15:17:09 +0100
commit182f570b046765fdb57d7eb513fe8c4b2490ed8f (patch)
tree54b29338dac6e507d1f1cdc4756984cfbe03e915 /settings
parent6c7a7e0c1a9c8c38ed246176ee5c491620d9630c (diff)
parentdeb05a9f9d0cf9ee524f09415efdc88b4e712ad6 (diff)
downloadnextcloud-server-182f570b046765fdb57d7eb513fe8c4b2490ed8f.tar.gz
nextcloud-server-182f570b046765fdb57d7eb513fe8c4b2490ed8f.zip
Merge pull request #3070 from dnel/Clarify-English-setting
Clarify that English refers to US English
Diffstat (limited to 'settings')
-rw-r--r--settings/personal.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/personal.php b/settings/personal.php
index a5cf88a781d..a79e9764a6b 100644
--- a/settings/personal.php
+++ b/settings/personal.php
@@ -88,7 +88,7 @@ foreach($languageCodes as $lang) {
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 ($lang === 'en') {
- $ln = ['code' => $lang, 'name' => 'English'];
+ $ln = ['code' => $lang, 'name' => 'English (US)'];
}else{//fallback to language code
$ln=array('code'=>$lang, 'name'=>$lang);
}