]> source.dussan.org Git - nextcloud-server.git/commitdiff
unwrapped strings fix
authorVolkan Gezer <volkangezer@gmail.com>
Tue, 27 May 2014 01:48:24 +0000 (03:48 +0200)
committerVolkan Gezer <volkangezer@gmail.com>
Tue, 27 May 2014 01:48:24 +0000 (03:48 +0200)
settings/templates/admin.php

index a4a3698d3bd82595dec6cee6eba6ad1b97a3eabf..5f6a051c2091e6a28ba71b6ceaa68091d6269e2e 100644 (file)
@@ -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'))?>"