aboutsummaryrefslogtreecommitdiff
path: root/about.cgi
diff options
context:
space:
mode:
authorBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2017-10-22 20:45:51 +0200
committerBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2017-10-22 20:45:51 +0200
commitf06dffa03595afdaf4a6e5eb4efa6d538c28a903 (patch)
tree000af6d605e1e9323c1c781c8ac8f83076dc84f0 /about.cgi
parent4a5d467bc5671df66495302dbfce7fc6c96823d4 (diff)
bugfix in translation string
Diffstat (limited to 'about.cgi')
-rwxr-xr-xabout.cgi7
1 files changed, 4 insertions, 3 deletions
diff --git a/about.cgi b/about.cgi
index 38f2eef..623ff40 100755
--- a/about.cgi
+++ b/about.cgi
@@ -25,16 +25,17 @@ require_relative "dudle"
$d = Dudle.new
-$d << "<div>"
+$d << "<div>"
$d << _('This Application is powered by %{Dudle}.') % {:Dudle => "<a href='https://dudle.inf.tu-dresden.de' />dudle</a>"}
$d << "</div>"
$d << "<div><h2>" + _("License") + "</h2>"
-$d << _("The sourcecode of this application is available under the terms of <a href='http://www.fsf.org/licensing/licenses/agpl-3.0.html'>AGPL Version 3</a>")
-$d << _("The Sourcecode of this application can be found %{here}.") % { :here => "<a href=\"#{$conf.dudle_src}\">here</a>"}
+$d << _("The sourcecode of this application is available under the terms of <a href='http://www.fsf.org/licensing/licenses/agpl-3.0.html'>AGPL Version 3</a>")
+$d << _("The Sourcecode of this application can be found %{a_start}here%{a_end}.") % { :a_start => "<a href=\"#{$conf.dudle_src}\">", :a_end => "</a>"}
$d << '<a href="mailto:Benjamin_dot_Kellermann@gmx_in_germany?subject=Feedback%20to%20dudle">'
$d << _('Write me an e-mail if you found a bug, have something which disturbes you or any other feedback.')
$d << '</a>'
$d << "<br />"
+$d << "</div>"
$d << $conf.aboutnotice