diff options
author | Michael Tänzer <neo@nhng.de> | 2012-03-01 01:52:57 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2012-03-01 01:52:57 +0100 |
commit | 01c885f8fc88cd42c750890b9accf67adfbeee40 (patch) | |
tree | cb6f0965113e9ffbdce16595d2c2fedbdd9a1cb5 | |
parent | 9422c4b9a9907928ff49c8524938630749c928ab (diff) | |
download | cacert-devel-01c885f8fc88cd42c750890b9accf67adfbeee40.tar.gz cacert-devel-01c885f8fc88cd42c750890b9accf67adfbeee40.tar.xz cacert-devel-01c885f8fc88cd42c750890b9accf67adfbeee40.zip |
bug 1019: Doh, it's printf not sprintf, and make the string translatable
Signed-off-by: Michael Tänzer <neo@nhng.de>
-rw-r--r-- | pages/account/40.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/account/40.php b/pages/account/40.php index d458329..499bf4d 100644 --- a/pages/account/40.php +++ b/pages/account/40.php @@ -19,9 +19,9 @@ if(!array_key_exists('secrethash',$_SESSION['_config'])) $_SESSION['_config']['s ?> <H3><?=_("Contact Us")?></H3> -<p><? sprintf("To contact us please log out and then use the contact form ". +<p><? printf(_("To contact us please log out and then use the contact form ". "there or send us an email to %s. We are working to fix this ". - "situation so you may contact us while staying logged in again.", + "situation so you may contact us while staying logged in again."), "<a href='mailto:support@cacert.org'>support@cacert.org</a>" ) ?> |