diff options
author | Michael Tänzer <neo@nhng.de> | 2014-04-11 18:51:39 +0200 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2014-04-11 18:51:39 +0200 |
commit | 374a109bd7db6c71fdfff3e396d0a42c1c298d98 (patch) | |
tree | 46fb84ba473a6570f347e3cd8238c067f2491226 /pages | |
parent | c3014c5dd41aaf4d87059ad42383f9bcf25b2163 (diff) | |
download | cacert-devel-374a109bd7db6c71fdfff3e396d0a42c1c298d98.tar.gz cacert-devel-374a109bd7db6c71fdfff3e396d0a42c1c298d98.tar.xz cacert-devel-374a109bd7db6c71fdfff3e396d0a42c1c298d98.zip |
bug 1138: make string more readable for translators
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'pages')
-rw-r--r-- | pages/account/44.php | 2 | ||||
-rw-r--r-- | pages/account/59.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pages/account/44.php b/pages/account/44.php index 02dd164..d7e31c6 100644 --- a/pages/account/44.php +++ b/pages/account/44.php @@ -29,7 +29,7 @@ if (array_key_exists('ticketno', $_SESSION)) { } if (!valid_ticket_number($ticketno)) { - printf(_("I'm sorry, you did not enter a ticket number!%sYou cannot reset the password."), '<br/>'); + printf(_("I'm sorry, you did not enter a ticket number! %s You cannot reset the password."), '<br/>'); echo '<br/><a href="account.php?id=43&userid='.intval($_REQUEST['userid']).'">'._('Back to previous page.').'</a>'; showfooter(); exit; diff --git a/pages/account/59.php b/pages/account/59.php index 09771b1..ebcc5fc 100644 --- a/pages/account/59.php +++ b/pages/account/59.php @@ -46,7 +46,7 @@ if(intval($_REQUEST['oldid'])==43){ } $ticketno = ""; if(array_key_exists('ticketno', $_SESSION)) $ticketno = $_SESSION['ticketno']; if (!valid_ticket_number($ticketno) && $support == 1) { - printf(_("I'm sorry, you did not enter a ticket number!%sSupport is not allowed to view the account history without a ticket number."), '<br/>'); + printf(_("I'm sorry, you did not enter a ticket number! %s Support is not allowed to view the account history without a ticket number."), '<br/>'); echo '<br/><a href="account.php?id=43&userid=' . intval($_REQUEST['userid']) .'">'. _('Back to previous page.').'</a>'; showfooter(); exit; |