summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-02-27 11:41:50 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-02-27 11:41:50 +0100
commitc71fdf04d7873c7fdece57afe98d8adcc08617aa (patch)
tree4d5236ad4f11c11a542c9e2b062f32afe6f941f4 /settings
parent58b06c5c9a8b49b1db9c696b2f46595f229bb729 (diff)
downloadnextcloud-server-c71fdf04d7873c7fdece57afe98d8adcc08617aa.tar.gz
nextcloud-server-c71fdf04d7873c7fdece57afe98d8adcc08617aa.zip
fixes 1933 - the locale name is no longer part of the translation string
Diffstat (limited to 'settings')
-rw-r--r--settings/templates/admin.php5
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>