diff options
author | kondou <kondou@ts.unde.re> | 2013-04-11 17:20:14 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-04-23 12:31:13 +0200 |
commit | 0d3afadab28c5d4008c6b0c1051c31f0c67a462e (patch) | |
tree | dd80c55a741560ab4b46ff4181bdc0408ab9bca2 /core/lostpassword | |
parent | 06dfc951227375ae3729e93d5c0a3f90e4cdc566 (diff) | |
download | nextcloud-server-0d3afadab28c5d4008c6b0c1051c31f0c67a462e.tar.gz nextcloud-server-0d3afadab28c5d4008c6b0c1051c31f0c67a462e.zip |
Don't split translation lines
Diffstat (limited to 'core/lostpassword')
-rw-r--r-- | core/lostpassword/templates/lostpassword.php | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/core/lostpassword/templates/lostpassword.php b/core/lostpassword/templates/lostpassword.php index dd4d05d25c0..bb06249b722 100644 --- a/core/lostpassword/templates/lostpassword.php +++ b/core/lostpassword/templates/lostpassword.php @@ -1,11 +1,9 @@ <?php if ($_['requested']): ?> <div class="success"><p> <?php - echo $l->t('The link to reset your password has been sent to your email.'); - echo "</p><p>"; - echo $l->t('If you do not receive it within a reasonable amount of time, check your spam/junk folders.'); - echo "</p><p>"; - echo $l->t('If it is not there ask your local administrator .'); + echo $l->t('The link to reset your password has been sent to your email.</p> + <p>If you do not receive it within a reasonable amount of time, check your spam/junk folders.</p> + <p>If it is not there ask your local administrator .'); ?> </p></div> <?php else: ?> @@ -13,11 +11,7 @@ <fieldset> <?php if ($_['error']): ?> <div class="errors"><p> - <?php - echo $l->t('Request failed!'); - echo "</p><p>"; - echo $l->t('Did you make sure the Email was right?'); - ?> + <?php echo $l->t('Request failed!</p><p>Did you make sure the Email was right?'); ?> </p></div> <?php endif; ?> <?php echo $l->t('You will receive a link to reset your password via Email.'); ?> |