summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-05-27 11:55:33 +0200
committerVincent Petry <pvince81@owncloud.com>2014-05-27 11:55:33 +0200
commit17276af6ad60ea789a8d7d5e37d520ff337b4a4b (patch)
treec2efd635e4cb76a0671b1cdb49d61a47623903b4
parenta79f3fd1c0ddf9b8ac4d59ce2affccd4aabf83a0 (diff)
parent188c5435d8b14b6eeb8abc571a1311ce412e558d (diff)
downloadnextcloud-server-17276af6ad60ea789a8d7d5e37d520ff337b4a4b.tar.gz
nextcloud-server-17276af6ad60ea789a8d7d5e37d520ff337b4a4b.zip
Merge pull request #8733 from owncloud/l10n-forgotten-tags
unwrapped strings fix
-rw-r--r--settings/templates/admin.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index a4a3698d3bd..5f6a051c209 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -357,10 +357,10 @@ if (!$_['internetconnectionworking']) {
<p>
<label for="mail_from_address"><?php p($l->t( 'From address' )); ?></label>
- <input type="text" name='mail_from_address' id="mail_from_address" placeholder="<?php p('mail')?>"
+ <input type="text" name='mail_from_address' id="mail_from_address" placeholder="<?php p($l->t('mail'))?>"
value='<?php p($_['mail_from_address']) ?>' />
@
- <input type="text" name='mail_domain' id="mail_domain" placeholder="<?php p('example.com')?>"
+ <input type="text" name='mail_domain' id="mail_domain" placeholder="<?php p($l->t('example.com'))?>"
value='<?php p($_['mail_domain']) ?>' />
</p>
@@ -383,7 +383,7 @@ if (!$_['internetconnectionworking']) {
<p id="setting_smtphost" <?php if ($_['mail_smtpmode'] != 'smtp') print_unescaped(' class="hidden"'); ?>>
<label for="mail_smtphost"><?php p($l->t( 'Server address' )); ?></label>
- <input type="text" name='mail_smtphost' id="mail_smtphost" placeholder="<?php p('smtp.example.com')?>"
+ <input type="text" name='mail_smtphost' id="mail_smtphost" placeholder="<?php p($l->t('smtp.example.com'))?>"
value='<?php p($_['mail_smtphost']) ?>' />
:
<input type="text" name='mail_smtpport' id="mail_smtpport" placeholder="<?php p($l->t('Port'))?>"