diff options
author | Michael Tänzer <neo@nhng.de> | 2012-02-08 00:31:06 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2012-02-08 00:31:06 +0100 |
commit | 453ad50dc25092fd99fed58147168056580db05a (patch) | |
tree | 7ed8052e1f60b4eab0bdc1531ab74d7222b3e21a /www/advertising.php | |
parent | 56cff58b4856066a83c7ee1a649c0e2d26e17173 (diff) | |
download | cacert-devel-453ad50dc25092fd99fed58147168056580db05a.tar.gz cacert-devel-453ad50dc25092fd99fed58147168056580db05a.tar.xz cacert-devel-453ad50dc25092fd99fed58147168056580db05a.zip |
bug 1011: Move HTML markup out of the translationbug-1011
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'www/advertising.php')
-rw-r--r-- | www/advertising.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/advertising.php b/www/advertising.php index e987461..43e4f93 100644 --- a/www/advertising.php +++ b/www/advertising.php @@ -47,7 +47,7 @@ if($months < 1 || $months > 12) { $id = 1; - $errmsg .= _("You can only place an advertisement for up to 12 months.<br />"); + $errmsg .= _("You can only place an advertisement for up to 12 months.")."<br />"; $process=""; $oldid=0; } @@ -55,7 +55,7 @@ if(strlen($title) <= 5) { $id = 1; - $errmsg .= _("Link title was too short.<br />"); + $errmsg .= _("Link title was too short.")."<br />"; $process=""; $oldid=0; } @@ -63,7 +63,7 @@ if(strlen($link) <= 10) { $id = 1; - $errmsg .= _("Link URI was too short.<br />"); + $errmsg .= _("Link URI was too short.")."<br />"; $process=""; $oldid=0; } |