Skip to content
Snippets Groups Projects
Commit f69fa272 authored by Björn Schießle's avatar Björn Schießle
Browse files

Merge pull request #1958 from owncloud/fixing-1933-master

the locale name is no longer part of the translation string
parents 0828bb7e c71fdf04
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment