diff options
author | Björn Schießle <bjoern@schiessle.org> | 2013-02-27 03:15:03 -0800 |
---|---|---|
committer | Björn Schießle <bjoern@schiessle.org> | 2013-02-27 03:15:03 -0800 |
commit | f69fa2726c98f8dc018b8491adafc59ce55aaf8d (patch) | |
tree | d2b86fedf972d873aab7e0079b2f031c8fb56ec7 | |
parent | 0828bb7e0e86e0b0964d841d98f034ab79f34a55 (diff) | |
parent | c71fdf04d7873c7fdece57afe98d8adcc08617aa (diff) | |
download | nextcloud-server-f69fa2726c98f8dc018b8491adafc59ce55aaf8d.tar.gz nextcloud-server-f69fa2726c98f8dc018b8491adafc59ce55aaf8d.zip |
Merge pull request #1958 from owncloud/fixing-1933-master
the locale name is no longer part of the translation string
-rw-r--r-- | settings/templates/admin.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 17be3396930..f3dc9154bbd 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -58,7 +58,10 @@ if (!$_['islocaleworking']) { <legend><strong><?php echo $l->t('Locale not working');?></strong></legend> <span class="connectionwarning"> - <?php echo $l->t('This ownCloud server can\'t set system locale to "en_US.UTF-8"/"en_US.UTF8". This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support en_US.UTF-8/en_US.UTF8.'); ?> + <?php + $locales = 'en_US.UTF-8/en_US.UTF8'; + echo $l->t('This ownCloud server can\'t set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s.', array($locales, $locales)); + ?> </span> </fieldset> |