From f06dffa03595afdaf4a6e5eb4efa6d538c28a903 Mon Sep 17 00:00:00 2001 From: Benjamin Kellermann Date: Sun, 22 Oct 2017 20:45:51 +0200 Subject: bugfix in translation string --- about.cgi | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'about.cgi') 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 << "
" +$d << "
" $d << _('This Application is powered by %{Dudle}.') % {:Dudle => "dudle"} $d << "
" $d << "

" + _("License") + "

" -$d << _("The sourcecode of this application is available under the terms of AGPL Version 3") -$d << _("The Sourcecode of this application can be found %{here}.") % { :here => "here"} +$d << _("The sourcecode of this application is available under the terms of AGPL Version 3") +$d << _("The Sourcecode of this application can be found %{a_start}here%{a_end}.") % { :a_start => "", :a_end => ""} $d << '' $d << _('Write me an e-mail if you found a bug, have something which disturbes you or any other feedback.') $d << '' $d << "
" +$d << "
" $d << $conf.aboutnotice -- cgit v1.2.3