From 774514c9e8c7379df1d1479289e616e2507e8413 Mon Sep 17 00:00:00 2001 From: Gerrit Uitslag <klapinklapin@gmail.com> Date: Sat, 28 May 2016 00:39:11 +0200 Subject: [PATCH] translate html and text string for signature Default only text string exists, via localized translation a wiki admin can add his/her own (html) version. --- _test/tests/inc/mailer.test.php | 87 +++++++++++++++++++++++++++++++++ inc/Mailer.class.php | 25 ++++++++-- inc/lang/ar/lang.php | 3 +- inc/lang/az/lang.php | 3 +- inc/lang/bg/lang.php | 5 +- inc/lang/ca-valencia/lang.php | 4 +- inc/lang/ca/lang.php | 3 +- inc/lang/cs/lang.php | 5 +- inc/lang/da/lang.php | 5 +- inc/lang/de-informal/lang.php | 3 +- inc/lang/de/lang.php | 5 +- inc/lang/el/lang.php | 3 +- inc/lang/en/lang.php | 4 +- inc/lang/eo/lang.php | 3 +- inc/lang/es/lang.php | 3 +- inc/lang/et/lang.php | 3 +- inc/lang/eu/lang.php | 5 +- inc/lang/fa/lang.php | 3 +- inc/lang/fi/lang.php | 3 +- inc/lang/fo/lang.php | 3 +- inc/lang/fr/lang.php | 5 +- inc/lang/gl/lang.php | 3 +- inc/lang/he/lang.php | 5 +- inc/lang/hr/lang.php | 3 +- inc/lang/hu-formal/lang.php | 5 +- inc/lang/hu/lang.php | 3 +- inc/lang/ia/lang.php | 3 +- inc/lang/id/lang.php | 3 +- inc/lang/it/lang.php | 3 +- inc/lang/ja/lang.php | 5 +- inc/lang/km/lang.php | 3 +- inc/lang/la/lang.php | 3 +- inc/lang/lb/lang.php | 3 +- inc/lang/lt/lang.php | 5 +- inc/lang/lv/lang.php | 5 +- inc/lang/mg/lang.php | 3 +- inc/lang/mr/lang.php | 3 +- inc/lang/ne/lang.php | 5 +- inc/lang/nl/lang.php | 3 +- inc/lang/no/lang.php | 3 +- inc/lang/pl/lang.php | 3 +- inc/lang/pt-br/lang.php | 3 +- inc/lang/pt/lang.php | 5 +- inc/lang/ro/lang.php | 3 +- inc/lang/ru/lang.php | 5 +- inc/lang/sk/lang.php | 5 +- inc/lang/sl/lang.php | 5 +- inc/lang/sq/lang.php | 3 +- inc/lang/sr/lang.php | 3 +- inc/lang/sv/lang.php | 5 +- inc/lang/th/lang.php | 5 +- inc/lang/tr/lang.php | 5 +- inc/lang/uk/lang.php | 3 +- inc/lang/vi/lang.php | 5 +- inc/lang/zh-tw/lang.php | 5 +- inc/lang/zh/lang.php | 5 +- 56 files changed, 239 insertions(+), 81 deletions(-) diff --git a/_test/tests/inc/mailer.test.php b/_test/tests/inc/mailer.test.php index 4a6645fe5..5f9c09bea 100644 --- a/_test/tests/inc/mailer.test.php +++ b/_test/tests/inc/mailer.test.php @@ -242,5 +242,92 @@ class mailer_test extends DokuWikiTest { } } + + function test_simplemailsignature(){ + global $conf; + $conf['htmlmail'] = 0; + + $mailbody = 'A test mail in ASCII'; + $signature = "\n-- \n" . 'This mail was generated by DokuWiki at' . "\n" . DOKU_URL . "\n"; + $mail = new TestMailer(); + $mail->to('test@example.com'); + $mail->setBody($mailbody); + + $dump = $mail->dump(); + + // construct the expected mail body text - include the expected dokuwiki signature + $expected_mail_body = chunk_split(base64_encode($mailbody.$signature),72,MAILHEADER_EOL); + $this->assertRegexp('/'.preg_quote($expected_mail_body,'/').'/',$dump); + + $conf['htmlmail'] = 1; + } + + function test_htmlmailsignature(){ + $mailbody_text = 'A test mail in ASCII :)'; + $mailbody_html = 'A test mail in <strong>html</strong>'; + $htmlmsg_expected = '<html> +<head> + <title>My Test Wiki</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +</head> +<body> + +A test mail in <strong>html</strong> + +<br /><hr /> +<small>This mail was generated by DokuWiki at<br /><a href="http://wiki.example.com/tmp/">http://wiki.example.com/tmp/</a></small> +</body> +</html> +'; + + $mail = new TestMailer(); + $mail->to('test@example.com'); + $mail->setBody($mailbody_text,null,null,$mailbody_html); + + $dump = $mail->dump(); + + // construct the expected mail body text - include the expected dokuwiki signature + $expected_mail_body = chunk_split(base64_encode($htmlmsg_expected),72,MAILHEADER_EOL); + + $this->assertRegexp('/Content-Type: multipart/',$dump); + $this->assertRegexp('#Content-Type: text/plain; charset=UTF-8#',$dump); + $this->assertRegexp('/'.preg_quote($expected_mail_body,'/').'/',$dump); + + } + + function test_htmlmailsignaturecustom(){ + global $lang; + $lang['email_signature_html'] = 'Official message from your DokuWiki @DOKUWIKIURL@<br />Created by wonderful mail class <a href="https://www.dokuwiki.org/devel:mail">https://www.dokuwiki.org/devel:mail</a>'; + + $mailbody_text = 'A test mail in ASCII :)'; + $mailbody_html = 'A test mail in <strong>html</strong>'; + $htmlmsg_expected = '<html> +<head> + <title>My Test Wiki</title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +</head> +<body> + +A test mail in <strong>html</strong> + +<br /><hr /> +<small>Official message from your DokuWiki <a href="http://wiki.example.com/tmp/">http://wiki.example.com/tmp/</a><br />Created by wonderful mail class <a href="https://www.dokuwiki.org/devel:mail">https://www.dokuwiki.org/devel:mail</a></small> +</body> +</html> +'; + + $mail = new TestMailer(); + $mail->to('test@example.com'); + $mail->setBody($mailbody_text,null,null,$mailbody_html); + + $dump = $mail->dump(); + + // construct the expected mail body text - include the expected dokuwiki signature + $replacements = $mail->prop('replacements'); + $expected_mail_body = chunk_split(base64_encode($htmlmsg_expected),72,MAILHEADER_EOL); + + $this->assertRegexp('/'.preg_quote($expected_mail_body,'/').'/',$dump); + + } } //Setup VIM: ex: et ts=4 : diff --git a/inc/Mailer.class.php b/inc/Mailer.class.php index 4e5062104..abc8463bb 100644 --- a/inc/Mailer.class.php +++ b/inc/Mailer.class.php @@ -620,9 +620,10 @@ class Mailer { 'DOKUWIKIURL' => DOKU_URL, 'USER' => $INPUT->server->str('REMOTE_USER'), 'NAME' => $INFO['userinfo']['name'], - 'MAIL' => $INFO['userinfo']['mail'], - 'EMAILSIGNATURE' => "\n-- \n" . $lang['email_signature'] . "\n" . DOKU_URL . "\n", + 'MAIL' => $INFO['userinfo']['mail'] ); + $signature = str_replace('@DOKUWIKIURL@',$this->replacements['text']['DOKUWIKIURL'], $lang['email_signature_text']); + $this->replacements['text']['EMAILSIGNATURE'] = "\n-- \n" . $signature . "\n"; $this->replacements['html'] = array( 'DATE' => '<i>' . hsc(dformat()) . '</i>', @@ -634,10 +635,24 @@ class Mailer { 'USER' => hsc($INPUT->server->str('REMOTE_USER')), 'NAME' => hsc($INFO['userinfo']['name']), 'MAIL' => '<a href="mailto:"' . hsc($INFO['userinfo']['mail']) . '">' . - hsc($INFO['userinfo']['mail']) . '</a>', - 'EMAILSIGNATURE' => hsc($lang['email_signature']) . ':<br />' . - '<a href="' . DOKU_URL . '">' . DOKU_URL . '</a>', + hsc($INFO['userinfo']['mail']) . '</a>' ); + $signature = $lang['email_signature_text']; + if(!empty($lang['email_signature_html'])) { + $signature = $lang['email_signature_html']; + } + $signature = str_replace( + array( + '@DOKUWIKIURL@', + "\n" + ), + array( + $this->replacements['html']['DOKUWIKIURL'], + '<br />' + ), + $signature + ); + $this->replacements['html']['EMAILSIGNATURE'] = $signature; } /** diff --git a/inc/lang/ar/lang.php b/inc/lang/ar/lang.php index a1b47f223..e25d0ee5d 100644 --- a/inc/lang/ar/lang.php +++ b/inc/lang/ar/lang.php @@ -345,4 +345,5 @@ $lang['currentns'] = 'Ù…Ø³Ø§ØØ© الاسم Ø§Ù„ØØ§Ù„ية'; $lang['searchresult'] = 'نتيجة Ø§Ù„Ø¨ØØ«'; $lang['plainhtml'] = 'نص HTML غير منسق'; $lang['wikimarkup'] = 'علامات الوكي'; -$lang['email_signature'] = 'أنشئت هذه الرسالة من دوكو ويكي ÙÙŠ'; +$lang['email_signature_text'] = 'أنشئت هذه الرسالة من دوكو ويكي ÙÙŠ +@DOKUWIKIURL@'; diff --git a/inc/lang/az/lang.php b/inc/lang/az/lang.php index c027b373a..b842c798f 100644 --- a/inc/lang/az/lang.php +++ b/inc/lang/az/lang.php @@ -213,4 +213,5 @@ $lang['days'] = '%d gün É™vvÉ™l'; $lang['hours'] = '%d saat É™vvÉ™l'; $lang['minutes'] = '%d dÉ™qiqÉ™ É™vvÉ™l'; $lang['seconds'] = '%d saniyÉ™ É™vvÉ™l'; -$lang['email_signature'] = 'DokuWiki aÅŸağıdakı adresdÉ™ yerləşir'; +$lang['email_signature_text'] = 'DokuWiki aÅŸağıdakı adresdÉ™ yerləşir +@DOKUWIKIURL@'; diff --git a/inc/lang/bg/lang.php b/inc/lang/bg/lang.php index be3006c55..6296070d4 100644 --- a/inc/lang/bg/lang.php +++ b/inc/lang/bg/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Nikolay Vladimirov <nikolay@vladimiroff.com> * @author Viktor Usunov <usun0v@mail.bg> * @author Kiril <neohidra@gmail.com> @@ -334,4 +334,5 @@ $lang['media_restore'] = 'ВъзÑтановÑване на тази в $lang['currentns'] = 'Текущо именно проÑтранÑтво'; $lang['searchresult'] = 'Резултати от търÑенето'; $lang['plainhtml'] = 'Обикновен HTML'; -$lang['email_signature'] = 'ПиÑмото е генерирано от DokuWiki на адреÑ'; +$lang['email_signature_text'] = 'ПиÑмото е генерирано от DokuWiki на Ð°Ð´Ñ€ÐµÑ +@DOKUWIKIURL@'; diff --git a/inc/lang/ca-valencia/lang.php b/inc/lang/ca-valencia/lang.php index 5391873de..b899bf36e 100644 --- a/inc/lang/ca-valencia/lang.php +++ b/inc/lang/ca-valencia/lang.php @@ -218,4 +218,6 @@ $lang['days'] = 'fa %d dies'; $lang['hours'] = 'fa %d hores'; $lang['minutes'] = 'fa %d minuts'; $lang['seconds'] = 'fa %d segons'; -$lang['email_signature'] = 'Este correu ha segut generat per DokuWiki en'; +$lang['email_signature_text'] = 'Este correu ha segut generat per DokuWiki en +@DOKUWIKIURL@'; + diff --git a/inc/lang/ca/lang.php b/inc/lang/ca/lang.php index 40c5f30a3..9b8f437da 100644 --- a/inc/lang/ca/lang.php +++ b/inc/lang/ca/lang.php @@ -331,7 +331,8 @@ $lang['media_perm_read'] = 'No teniu permisos suficients per a llegir arxi $lang['media_perm_upload'] = 'No teniu permisos suficients per a pujar arxius'; $lang['media_update'] = 'Puja la nova versió'; $lang['media_restore'] = 'Restaura aquesta versió'; -$lang['email_signature'] = 'Aquest mail ha estat generat per DokuWiki a'; +$lang['email_signature_text'] = 'Aquest mail ha estat generat per DokuWiki a +@DOKUWIKIURL@'; $lang['currentns'] = 'Espai de noms actual'; $lang['searchresult'] = 'Resultats cerca'; $lang['plainhtml'] = 'HTML pla'; diff --git a/inc/lang/cs/lang.php b/inc/lang/cs/lang.php index 16ea738f1..3abfdbffb 100644 --- a/inc/lang/cs/lang.php +++ b/inc/lang/cs/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Bohumir Zamecnik <bohumir@zamecnik.org> * @author Tomas Valenta <t.valenta@sh.cvut.cz> * @author Tomas Valenta <tomas@valenta.cz> @@ -353,4 +353,5 @@ $lang['plainhtml'] = 'ÄŒisté HTML'; $lang['wikimarkup'] = 'Wiki jazyk'; $lang['page_nonexist_rev'] = 'Stránka neexistovala na %s. Byla vytvoÅ™ena dodateÄne na <a href="%s">%s</a>.'; $lang['unable_to_parse_date'] = 'Nelze rozebrat parametr "%s".'; -$lang['email_signature'] = 'Tento e-mail byl automaticky vygenerován systémem DokuWiki'; +$lang['email_signature_text'] = 'Tento e-mail byl automaticky vygenerován systémem DokuWiki +@DOKUWIKIURL@'; diff --git a/inc/lang/da/lang.php b/inc/lang/da/lang.php index 24cf0e1fa..29f57ae1d 100644 --- a/inc/lang/da/lang.php +++ b/inc/lang/da/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author koeppe <koeppe@kazur.dk> * @author Jon Bendtsen <bendtsen@diku.dk> * @author Lars Næsbye Christensen <larsnaesbye@stud.ku.dk> @@ -350,4 +350,5 @@ $lang['searchresult'] = 'Søgsresultat'; $lang['plainhtml'] = 'Ren HTML'; $lang['wikimarkup'] = 'Wiki Opmærkning'; $lang['page_nonexist_rev'] = 'Siden blev ikke fundet ved %s. Den blev efterfølgende oprettet ved <a href="%s">%s</a>.'; -$lang['email_signature'] = 'Denne e-mail blev genereret af DokuWiki pÃ¥'; +$lang['email_signature_text'] = 'Denne e-mail blev genereret af DokuWiki pÃ¥ +@DOKUWIKIURL@'; diff --git a/inc/lang/de-informal/lang.php b/inc/lang/de-informal/lang.php index 065848c61..be1084326 100644 --- a/inc/lang/de-informal/lang.php +++ b/inc/lang/de-informal/lang.php @@ -350,7 +350,8 @@ $lang['media_restore'] = 'Diese Version wiederherstellen'; $lang['media_acl_warning'] = 'Diese Liste ist möglicherweise nicht vollständig. Versteckte und durch ACL gesperrte Seiten werden nicht angezeigt.'; $lang['currentns'] = 'Aktueller Namensraum'; $lang['searchresult'] = 'Suchergebnis'; -$lang['email_signature'] = 'Diese E-Mail wurde erzeugt vom DokuWiki unter'; +$lang['email_signature_text'] = 'Diese E-Mail wurde erzeugt vom DokuWiki unter +@DOKUWIKIURL@'; $lang['plainhtml'] = 'Reines HTML'; $lang['wikimarkup'] = 'Wiki Markup'; $lang['page_nonexist_rev'] = 'Seite existierte nicht an der Stelle %s. Sie wurde an folgende Stelle erstellt: <a href="%s">%s</a>.'; diff --git a/inc/lang/de/lang.php b/inc/lang/de/lang.php index abf44881c..0e04de18d 100644 --- a/inc/lang/de/lang.php +++ b/inc/lang/de/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Andreas Gohr <andi@splitbrain.org> * @author Christof <gagi@fin.de> * @author Anika Henke <anika@selfthinker.org> @@ -360,4 +360,5 @@ $lang['plainhtml'] = 'HTML Klartext'; $lang['wikimarkup'] = 'Wiki Markup'; $lang['page_nonexist_rev'] = 'Die Seite exitiert nicht unter %s. Sie wurde aber unter <a href="%s">%s</a>'; $lang['unable_to_parse_date'] = 'Parameter "%s" kann nicht geparsed werden.'; -$lang['email_signature'] = 'Diese E-Mail wurde erzeugt vom DokuWiki unter'; +$lang['email_signature_text'] = 'Diese E-Mail wurde erzeugt vom DokuWiki unter +@DOKUWIKIURL@'; diff --git a/inc/lang/el/lang.php b/inc/lang/el/lang.php index 548a38c25..c32a0b029 100644 --- a/inc/lang/el/lang.php +++ b/inc/lang/el/lang.php @@ -326,4 +326,5 @@ $lang['media_perm_upload'] = 'Συγνώμη, δεν Îχετε επαÏκή $lang['media_update'] = 'ΦόÏτωση νÎας Îκδοσης'; $lang['media_restore'] = 'ΕπαναφοÏά αυτή της Îκδοσης'; $lang['searchresult'] = 'ΑποτÎλεσμα ÎÏευνας'; -$lang['email_signature'] = 'Αυτό το e-mail δημιουÏγήθηκε αυτόματα από την εφαÏμογή DokuWiki στην διεÏθυνση'; +$lang['email_signature_text'] = 'Αυτό το e-mail δημιουÏγήθηκε αυτόματα από την εφαÏμογή DokuWiki στην διεÏθυνση +@DOKUWIKIURL@'; diff --git a/inc/lang/en/lang.php b/inc/lang/en/lang.php index 105269ead..2e7d368e2 100644 --- a/inc/lang/en/lang.php +++ b/inc/lang/en/lang.php @@ -368,5 +368,7 @@ $lang['plainhtml'] = 'Plain HTML'; $lang['wikimarkup'] = 'Wiki Markup'; $lang['page_nonexist_rev'] = 'Page did not exist at %s. It was subsequently created at <a href="%s">%s</a>.'; $lang['unable_to_parse_date'] = 'Unable to parse at parameter "%s".'; -$lang['email_signature'] = 'This mail was generated by DokuWiki at'; +$lang['email_signature_text'] = 'This mail was generated by DokuWiki at +@DOKUWIKIURL@'; +$lang['email_signature_html'] = ''; //Setup VIM: ex: et ts=2 : diff --git a/inc/lang/eo/lang.php b/inc/lang/eo/lang.php index 82462cd94..fdccb899d 100644 --- a/inc/lang/eo/lang.php +++ b/inc/lang/eo/lang.php @@ -337,4 +337,5 @@ $lang['currentns'] = 'Aktuala nomspaco'; $lang['searchresult'] = 'Serĉrezulto'; $lang['plainhtml'] = 'Plena HTML'; $lang['wikimarkup'] = 'Vikiteksto'; -$lang['email_signature'] = 'Tiu ĉi mesaÄo kreiÄis de DokuWiki ĉe'; +$lang['email_signature_text'] = 'Tiu ĉi mesaÄo kreiÄis de DokuWiki ĉe +@DOKUWIKIURL@'; diff --git a/inc/lang/es/lang.php b/inc/lang/es/lang.php index ff6a035a9..e48c954dc 100644 --- a/inc/lang/es/lang.php +++ b/inc/lang/es/lang.php @@ -376,4 +376,5 @@ $lang['plainhtml'] = 'HTML sencillo'; $lang['wikimarkup'] = 'Etiquetado Wiki'; $lang['page_nonexist_rev'] = 'La página no existÃa en %s. Por tanto fue creada en <a href="%s">%s</a>.'; $lang['unable_to_parse_date'] = 'Incapaz de evaluar el parámetro "%s".'; -$lang['email_signature'] = 'Este mail ha sido generado por DokuWiki en'; +$lang['email_signature_text'] = 'Este mail ha sido generado por DokuWiki en +@DOKUWIKIURL@'; diff --git a/inc/lang/et/lang.php b/inc/lang/et/lang.php index bda5e6483..f8051d0fc 100644 --- a/inc/lang/et/lang.php +++ b/inc/lang/et/lang.php @@ -333,4 +333,5 @@ $lang['currentns'] = 'Hetke nimeruum'; $lang['searchresult'] = 'Otsingu tulemus'; $lang['plainhtml'] = 'Liht-HTML'; $lang['wikimarkup'] = 'Wiki märgistus'; -$lang['email_signature'] = 'See meil on saadetud DokuWiki poolt'; +$lang['email_signature_text'] = 'See meil on saadetud DokuWiki poolt +@DOKUWIKIURL@'; diff --git a/inc/lang/eu/lang.php b/inc/lang/eu/lang.php index 5205bd6cf..fc33830c3 100644 --- a/inc/lang/eu/lang.php +++ b/inc/lang/eu/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Xabi Ezpeleta <xezpeleta@mendikute.com> * @author Inko Illarramendi <inko.i.a@gmail.com> * @author Zigor Astarbe <astarbe@gmail.com> @@ -306,4 +306,5 @@ $lang['media_viewold'] = '%s -n %s'; $lang['media_edit'] = '%s editatu'; $lang['media_update'] = 'Bertsio berria igo'; $lang['media_restore'] = 'Bertsio hau berrezarri'; -$lang['email_signature'] = 'Email hau DokuWiki erabiliz sortu da'; +$lang['email_signature_text'] = 'Email hau DokuWiki erabiliz sortu da +@DOKUWIKIURL@'; diff --git a/inc/lang/fa/lang.php b/inc/lang/fa/lang.php index feacf2460..c8c36d2a6 100644 --- a/inc/lang/fa/lang.php +++ b/inc/lang/fa/lang.php @@ -347,6 +347,7 @@ $lang['currentns'] = 'ÙØ¶Ø§ÛŒ نام جاری'; $lang['searchresult'] = 'نتیجه‌ی جستجو'; $lang['plainhtml'] = 'HTML ساده'; $lang['wikimarkup'] = 'نشانه‌گذاری ویکی'; -$lang['email_signature'] = 'این ایمیل توسط DokuWiki تولید شده است'; +$lang['email_signature_text'] = 'این ایمیل توسط DokuWiki تولید شده است +@DOKUWIKIURL@'; $lang['page_nonexist_rev'] = 'ØµÙØÙ‡ %s وجود نداشت. این ØµÙØÙ‡ معاقباً در<a href="%s">%s</a> ایجاد شد.'; $lang['unable_to_parse_date'] = 'امکان تجزیه Ùˆ تØÙ„یل پارامتر «%s» وجود ندارد.'; diff --git a/inc/lang/fi/lang.php b/inc/lang/fi/lang.php index 2bf5d6858..779f69f91 100644 --- a/inc/lang/fi/lang.php +++ b/inc/lang/fi/lang.php @@ -337,4 +337,5 @@ $lang['searchresult'] = 'Haun tulokset'; $lang['plainhtml'] = 'pelkkä HTML'; $lang['wikimarkup'] = 'Wiki markup'; $lang['unable_to_parse_date'] = 'Parametrin "%s" jäsennys ei onnistu.'; -$lang['email_signature'] = 'Tämän postin loi DokuWiki osoitteessa'; +$lang['email_signature_text'] = 'Tämän postin loi DokuWiki osoitteessa +@DOKUWIKIURL@'; diff --git a/inc/lang/fo/lang.php b/inc/lang/fo/lang.php index cd2c37397..50f2faca7 100644 --- a/inc/lang/fo/lang.php +++ b/inc/lang/fo/lang.php @@ -167,4 +167,5 @@ $lang['img_format'] = 'Snið:'; $lang['img_camera'] = 'Fototól:'; $lang['img_keywords'] = 'Evnisorð:'; $lang['authtempfail'] = 'Validering av brúkara virkar fyribils ikki. Um hetta er varandi, fá so samband við umboðsstjóran á hesi wiki.'; -$lang['email_signature'] = 'Hesin t-postur var skaptur av DokuWiki á'; +$lang['email_signature_text'] = 'Hesin t-postur var skaptur av DokuWiki á +@DOKUWIKIURL@'; diff --git a/inc/lang/fr/lang.php b/inc/lang/fr/lang.php index 08847f20e..4d4f25494 100644 --- a/inc/lang/fr/lang.php +++ b/inc/lang/fr/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Sébastien Bauer <sebastien.bauer@advalvas.be> * @author Antoine Fixary <antoine.fixary@freesbee.fr> * @author cumulus <pta-n56@myamail.com> @@ -369,4 +369,5 @@ $lang['plainhtml'] = 'HTML brut'; $lang['wikimarkup'] = 'Wiki balise'; $lang['page_nonexist_rev'] = 'La page n\'existait pas le %s. Elle a été créée le <a href="%s">%s</a>.'; $lang['unable_to_parse_date'] = 'Ne peut analyser le paramètre date "%s".'; -$lang['email_signature'] = 'Ce courriel a été généré par DokuWiki depuis'; +$lang['email_signature_text'] = 'Ce courriel a été généré par DokuWiki depuis +@DOKUWIKIURL@'; diff --git a/inc/lang/gl/lang.php b/inc/lang/gl/lang.php index 087c0bf34..941989a32 100644 --- a/inc/lang/gl/lang.php +++ b/inc/lang/gl/lang.php @@ -315,4 +315,5 @@ $lang['media_perm_read'] = 'SentÃmolo, non tes permisos suficientes para $lang['media_perm_upload'] = 'SentÃmolo, non tes permisos suficientes para subir arquivos.'; $lang['media_update'] = 'Subir nova versión'; $lang['media_restore'] = 'Restaurar esta versión'; -$lang['email_signature'] = 'Este correo foi xerado polo DokuWiki en'; +$lang['email_signature_text'] = 'Este correo foi xerado polo DokuWiki en +@DOKUWIKIURL@'; diff --git a/inc/lang/he/lang.php b/inc/lang/he/lang.php index 21eff8983..49f17c3e4 100644 --- a/inc/lang/he/lang.php +++ b/inc/lang/he/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author ×’×™× ×©×¤×¨ <guysoft@ort.org.il> * @author Denis Simakov <akinoame1@gmail.com> * @author Dotan Kamber <kamberd@yahoo.com> @@ -349,4 +349,5 @@ $lang['searchresult'] = 'תוצ×ות חיפוש'; $lang['plainhtml'] = 'HTML פשוט'; $lang['page_nonexist_rev'] = 'העמוד ×œ× ×§×™×™× ×‘%s. העמוד × ×•×¦×¨ ×‘×ž×§×•× ×–×ת ב<a href="%s">%s</a>.'; $lang['unable_to_parse_date'] = '×œ× × ×™×ª×Ÿ ×œ×¤×¢× ×— פרמטר "%s".'; -$lang['email_signature'] = 'הודעת דו×״ל זו × ×•×¦×¨×” על ידי ×”Ö¾DokuWiki הזמין בכתובת'; +$lang['email_signature_text'] = 'הודעת דו×״ל זו × ×•×¦×¨×” על ידי ×”Ö¾DokuWiki הזמין בכתובת +@DOKUWIKIURL@'; diff --git a/inc/lang/hr/lang.php b/inc/lang/hr/lang.php index 65a900484..e46e7368a 100644 --- a/inc/lang/hr/lang.php +++ b/inc/lang/hr/lang.php @@ -341,4 +341,5 @@ $lang['plainhtml'] = 'ÄŒisti HTML'; $lang['wikimarkup'] = 'Wiki kod'; $lang['page_nonexist_rev'] = 'Stranica ne postoji na %s. Ona je naknadno napravljena na <a href="%s">%s</a>.'; $lang['unable_to_parse_date'] = 'Ne mogu analizirati parametar "%s".'; -$lang['email_signature'] = 'Ovaj email je poslan na'; +$lang['email_signature_text'] = 'Ovaj email je poslan na +@DOKUWIKIURL@'; diff --git a/inc/lang/hu-formal/lang.php b/inc/lang/hu-formal/lang.php index 7d6d69d89..66ff893f3 100644 --- a/inc/lang/hu-formal/lang.php +++ b/inc/lang/hu-formal/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Marina Vladi <deldadam@gmail.com> */ $lang['encoding'] = 'utf-8'; @@ -25,4 +25,5 @@ $lang['btn_older'] = 'régebbi >>'; $lang['btn_revs'] = 'Korábbi változatok'; $lang['btn_recent'] = 'Legújabb változások'; $lang['btn_upload'] = 'Feltöltés'; -$lang['email_signature'] = 'Ezt a levelet a DokuWiki generálta'; +$lang['email_signature_text'] = 'Ezt a levelet a DokuWiki generálta +@DOKUWIKIURL@'; diff --git a/inc/lang/hu/lang.php b/inc/lang/hu/lang.php index 106e751f8..cbb337488 100644 --- a/inc/lang/hu/lang.php +++ b/inc/lang/hu/lang.php @@ -345,6 +345,7 @@ $lang['currentns'] = 'Aktuális névtér'; $lang['searchresult'] = 'Keresés eredménye'; $lang['plainhtml'] = 'Sima HTML'; $lang['wikimarkup'] = 'Wiki-jelölÅ‘nyelv'; -$lang['email_signature'] = 'Ezt a levelet a DokuWiki generálta'; +$lang['email_signature_text'] = 'Ezt a levelet a DokuWiki generálta +@DOKUWIKIURL@'; $lang['page_nonexist_rev'] = 'A(z) %s oldal nem létezik. KésÅ‘bb lett létrehozva a(z) <a href="%s">%s</a> helyen.'; $lang['unable_to_parse_date'] = 'A "%s" paraméter feldolgozása sikertelen.'; diff --git a/inc/lang/ia/lang.php b/inc/lang/ia/lang.php index ad9ec1f34..b40d99c48 100644 --- a/inc/lang/ia/lang.php +++ b/inc/lang/ia/lang.php @@ -258,4 +258,5 @@ $lang['days'] = '%d dies retro'; $lang['hours'] = '%d horas retro'; $lang['minutes'] = '%d minutas retro'; $lang['seconds'] = '%d secundas retro'; -$lang['email_signature'] = 'Iste message ha essite generate per DokuWiki a'; +$lang['email_signature_text'] = 'Iste message ha essite generate per DokuWiki a +@DOKUWIKIURL@'; diff --git a/inc/lang/id/lang.php b/inc/lang/id/lang.php index 96a172f4c..fad99299c 100644 --- a/inc/lang/id/lang.php +++ b/inc/lang/id/lang.php @@ -309,4 +309,5 @@ $lang['media_restore'] = 'Kembalikan versi ini'; $lang['currentns'] = 'Namespace saat ini'; $lang['searchresult'] = 'Hasil Pencarian'; $lang['wikimarkup'] = 'Markah Wiki'; -$lang['email_signature'] = 'Email ini dibuat otomatis oleh DokuWiki'; +$lang['email_signature_text'] = 'Email ini dibuat otomatis oleh DokuWiki +@DOKUWIKIURL@'; diff --git a/inc/lang/it/lang.php b/inc/lang/it/lang.php index 7188663a0..24e670cf7 100644 --- a/inc/lang/it/lang.php +++ b/inc/lang/it/lang.php @@ -355,5 +355,6 @@ $lang['searchresult'] = 'Risultati della ricerca'; $lang['plainhtml'] = 'HTML'; $lang['wikimarkup'] = 'Marcatura wiki'; $lang['page_nonexist_rev'] = 'Pagina non esistente a %s. E\' stata creata successivamente a <a href="%s">%s</a>.'; -$lang['email_signature'] = 'Questa email è stata generata dal DokuWiki all\'indirizzo'; +$lang['email_signature_text'] = 'Questa email è stata generata dal DokuWiki all\'indirizzo +@DOKUWIKIURL@'; $lang['unable_to_parse_date'] = 'Impossibile eseguire l\'analisi al parametro "%s".'; diff --git a/inc/lang/ja/lang.php b/inc/lang/ja/lang.php index 7883b2405..03ed55389 100644 --- a/inc/lang/ja/lang.php +++ b/inc/lang/ja/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Yuji Takenaka <webmaster@davilin.com> * @author Ikuo Obataya <i.obataya@gmail.com> * @author Daniel Dupriest <kououken@gmail.com> @@ -345,4 +345,5 @@ $lang['plainhtml'] = 'プレーンHTML'; $lang['wikimarkup'] = 'Wikiマークアップ'; $lang['page_nonexist_rev'] = '指定ページ %s ã¯ã‚りã¾ã›ã‚“。ã“ã®ãƒªãƒ³ã‚¯ <a href="%s">%s</a> ã‹ã‚‰ä½œæˆã§ãã¾ã™ã€‚'; $lang['unable_to_parse_date'] = 'パラメータ "%s" を処ç†ã§ãã¾ã›ã‚“。'; -$lang['email_signature'] = 'ã“ã®ãƒ¡ãƒ¼ãƒ«ã¯æ¬¡ã®DokuWikiより自動的ã«é€ä¿¡ã•れã¦ã„ã¾ã™ã€‚'; +$lang['email_signature_text'] = 'ã“ã®ãƒ¡ãƒ¼ãƒ«ã¯æ¬¡ã®DokuWikiより自動的ã«é€ä¿¡ã•れã¦ã„ã¾ã™ã€‚ +@DOKUWIKIURL@'; diff --git a/inc/lang/km/lang.php b/inc/lang/km/lang.php index 1b2bfdc8b..2dbc0d385 100644 --- a/inc/lang/km/lang.php +++ b/inc/lang/km/lang.php @@ -198,4 +198,5 @@ $lang['i_pol2'] = 'វីគីបិទជិáž'; $lang['i_retry'] = 'ម្ážáž„ទៀáž'; //Setup VIM: ex: et ts=2 : -$lang['email_signature'] = 'អ៊ីមáŸáž›áž“áŸáŸ‡áž”ន្ចáŸáž¢áž–ីឌោគូវីគីនៅ'; +$lang['email_signature_text'] = 'អ៊ីមáŸáž›áž“áŸáŸ‡áž”ន្ចáŸáž¢áž–ីឌោគូវីគីនៅ +@DOKUWIKIURL@'; diff --git a/inc/lang/la/lang.php b/inc/lang/la/lang.php index 1c0883837..5f5f59e12 100644 --- a/inc/lang/la/lang.php +++ b/inc/lang/la/lang.php @@ -257,4 +257,5 @@ $lang['hours'] = 'a horis %d'; $lang['minutes'] = 'a minutis %d'; $lang['seconds'] = 'a secundis %d'; $lang['wordblock'] = 'Mutationes non seruantur, eo quod mala uerba contenit'; -$lang['email_signature'] = 'Hic cursus generatus a'; +$lang['email_signature_text'] = 'Hic cursus generatus a +@DOKUWIKIURL@'; diff --git a/inc/lang/lb/lang.php b/inc/lang/lb/lang.php index e06ba5d1c..f15e878b4 100644 --- a/inc/lang/lb/lang.php +++ b/inc/lang/lb/lang.php @@ -192,4 +192,5 @@ $lang['days'] = 'virun %d Deeg'; $lang['hours'] = 'virun %d Stonnen'; $lang['minutes'] = 'virun %d Minutten'; $lang['seconds'] = 'virun %d Sekonnen'; -$lang['email_signature'] = 'Dës Mail gouf generéiert vun DokuWiki op'; +$lang['email_signature_text'] = 'Dës Mail gouf generéiert vun DokuWiki op +@DOKUWIKIURL@'; diff --git a/inc/lang/lt/lang.php b/inc/lang/lt/lang.php index 9e6826928..dcf0985ec 100644 --- a/inc/lang/lt/lang.php +++ b/inc/lang/lt/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Linas Valiukas <shirshegsm@gmail.com> * @author Edmondas Girkantas <eg@zemaitija.net> * @author ArÅ«nas VaitekÅ«nas <aras@fan.lt> @@ -180,4 +180,5 @@ $lang['i_wikiname'] = 'Wiki vardas'; $lang['i_enableacl'] = 'Ä®jungti ACL (rekomenduojama)'; $lang['i_superuser'] = 'Supervartotojas'; $lang['i_problems'] = 'Instaliavimo metu buvo klaidų, kurios pateiktos žemiau. TÄ™sti negalima, kol nebus paÅ¡alintos priežastys.'; -$lang['email_signature'] = 'Å is laiÅ¡kas buvo sugeneruotas DokuWiki'; +$lang['email_signature_text'] = 'Å is laiÅ¡kas buvo sugeneruotas DokuWiki +@DOKUWIKIURL@'; diff --git a/inc/lang/lv/lang.php b/inc/lang/lv/lang.php index a5ac36d75..88f8e5f94 100644 --- a/inc/lang/lv/lang.php +++ b/inc/lang/lv/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Aivars MiÅ¡ka <allefm@gmail.com> */ $lang['encoding'] = 'utf-8'; @@ -333,4 +333,5 @@ $lang['currentns'] = 'PaÅ¡reizÄ“jÄ sadaļa'; $lang['searchresult'] = 'Meklēšanas rezultÄti'; $lang['plainhtml'] = 'TÄ«rs HTML'; $lang['wikimarkup'] = 'Viki iezÄ«mēšana valoda'; -$lang['email_signature'] = 'VÄ“stuli nosÅ«tÄ«jusi DokuWiki programma no'; +$lang['email_signature_text'] = 'VÄ“stuli nosÅ«tÄ«jusi DokuWiki programma no +@DOKUWIKIURL@'; diff --git a/inc/lang/mg/lang.php b/inc/lang/mg/lang.php index f1f8fcce5..240133f29 100644 --- a/inc/lang/mg/lang.php +++ b/inc/lang/mg/lang.php @@ -116,4 +116,5 @@ $lang['js']['del_confirm']= 'Hofafana ilay andalana?'; $lang['searchcreatepage'] = "Raha tsy nahita izay notadiavinao ianao, dia afaka mamorona pejy vaovao avy amin'ny teny nanaovanao fikarohana; Ampiasao ny bokotra ''Hanova ny pejy''."; //Setup VIM: ex: et ts=2 : -$lang['email_signature'] = 'Ity imailaka ity dia navoakan\'ny wiki tao amin\'ny'; +$lang['email_signature_text'] = 'Ity imailaka ity dia navoakan\'ny wiki tao amin\'ny +@DOKUWIKIURL@'; diff --git a/inc/lang/mr/lang.php b/inc/lang/mr/lang.php index c17d1581b..4b6d1bd69 100644 --- a/inc/lang/mr/lang.php +++ b/inc/lang/mr/lang.php @@ -262,4 +262,5 @@ $lang['i_pol1'] = 'सारà¥à¤µà¤œà¤¨à¤¿à¤• विकी ( स $lang['i_pol2'] = 'बंदिसà¥à¤¤ विकी ( वाचन , लेखन व अपलोडची परवानगी फकà¥à¤¤ नोंदणीकृत सदसà¥à¤¯à¤¾à¤‚ना ) '; $lang['i_retry'] = 'पà¥à¤¨à¥à¤¹à¤¾ पà¥à¤°à¤¯à¤¤à¥à¤¨'; $lang['recent_global'] = 'तà¥à¤®à¥à¤¹à¥€ सधà¥à¤¯à¤¾ <b>%s</b> या नेमसà¥à¤ªà¥‡à¤¸ मधील बदल पाहात आहात.तà¥à¤®à¥à¤¹à¥€ <a href="%s">पूरà¥à¤£ विकी मधले बदल </a> सà¥à¤¦à¥à¤§à¤¾ पाहू शकता.'; -$lang['email_signature'] = 'हा ईमेल, येथील डॉकà¥à¤¯à¥à¤µà¤¿à¤•िदà¥à¤µà¤¾à¤°à¤¾ आपोआप तयार केला गेला आहे'; +$lang['email_signature_text'] = 'हा ईमेल, येथील डॉकà¥à¤¯à¥à¤µà¤¿à¤•िदà¥à¤µà¤¾à¤°à¤¾ आपोआप तयार केला गेला आहे +@DOKUWIKIURL@'; diff --git a/inc/lang/ne/lang.php b/inc/lang/ne/lang.php index 79b324f5c..fae403f23 100644 --- a/inc/lang/ne/lang.php +++ b/inc/lang/ne/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Saroj Kumar Dhakal <lotusnagarkot@gmail.com> * @author Saroj Kumar Dhakal <lotusnagarkot@yahoo.com> * @author सरोज ढकाल <lotusnagarkot@gmail.com> @@ -201,4 +201,5 @@ $lang['i_pol1'] = 'Public विकि (पठन सवैका $lang['i_pol2'] = 'बनà¥à¤¦ विकि (पठन , लेखन, अपलोड ) दरà¥à¤¤à¤¾ à¤à¤à¤•ा पà¥à¤°à¤¯à¥‹à¤—करà¥à¤¤à¤¾à¤•ा लागि मातà¥à¤° ।'; $lang['i_retry'] = 'पà¥à¤¨: पà¥à¤°à¤¯à¤¾à¤¸ गरà¥à¤¨à¥à¤¹à¥‹à¤¸à¥ '; $lang['recent_global'] = 'तपाई अहिले <b>%s</b> नेमसà¥à¤ªà¥‡à¤¸ à¤à¤¿à¤¤à¥à¤° à¤à¤à¤•ा परिवरà¥à¤¤à¤¨ हेरà¥à¤¦à¥ˆà¤¹à¥à¤¨à¥à¤¹à¥à¤¨à¥à¤›à¥¤ तपाई <a href="%s">पà¥à¤°à¥ˆ विकिमा à¤à¤à¤•ो परिवरà¥à¤¤à¤¨ हेरà¥à¤¨ सकà¥à¤¨à¥à¤¹à¥à¤¨à¥à¤›</a>.'; -$lang['email_signature'] = 'यो पतà¥à¤° DokuWiki ले, मा तयार पारेको हो ।'; +$lang['email_signature_text'] = 'यो पतà¥à¤° DokuWiki ले, मा तयार पारेको हो । +@DOKUWIKIURL@'; diff --git a/inc/lang/nl/lang.php b/inc/lang/nl/lang.php index dd5f6bcd8..eb7ef09ad 100644 --- a/inc/lang/nl/lang.php +++ b/inc/lang/nl/lang.php @@ -361,6 +361,7 @@ $lang['currentns'] = 'Huidige namespace'; $lang['searchresult'] = 'Zoekresultaat'; $lang['plainhtml'] = 'Alleen HTML'; $lang['wikimarkup'] = 'Wiki Opmaak'; -$lang['email_signature'] = 'Deze mail werd gegenereerd door DokuWiki op'; +$lang['email_signature_text'] = 'Deze mail werd gegenereerd door DokuWiki op +@DOKUWIKIURL@'; $lang['page_nonexist_rev'] = 'Pagina bestaat niet bij %s. Het is vervolgens aangemaakt bij <a href="%s">%s</a>.'; $lang['unable_to_parse_date'] = 'Begrijp het niet bij parameter "%s".'; diff --git a/inc/lang/no/lang.php b/inc/lang/no/lang.php index 7e37a459b..8379923fa 100644 --- a/inc/lang/no/lang.php +++ b/inc/lang/no/lang.php @@ -358,5 +358,6 @@ $lang['searchresult'] = 'Søk i resultat'; $lang['plainhtml'] = 'Enkel HTML'; $lang['wikimarkup'] = 'wiki-format'; $lang['page_nonexist_rev'] = 'Finnes ingen side pÃ¥ %s. Den er derfor laget pÃ¥ <a href="%s">%s</a>'; -$lang['email_signature'] = 'Denne meldingen ble laget av DokuWiki'; +$lang['email_signature_text'] = 'Denne meldingen ble laget av DokuWiki +@DOKUWIKIURL@'; $lang['unable_to_parse_date'] = 'Ikke mulig Ã¥ tolke "%s".'; diff --git a/inc/lang/pl/lang.php b/inc/lang/pl/lang.php index 323602306..d9c90cdf3 100644 --- a/inc/lang/pl/lang.php +++ b/inc/lang/pl/lang.php @@ -345,4 +345,5 @@ $lang['currentns'] = 'Obecny katalog'; $lang['searchresult'] = 'Wyniki wyszukiwania'; $lang['plainhtml'] = 'Czysty HTML'; $lang['wikimarkup'] = 'Znaczniki'; -$lang['email_signature'] = 'List zostaÅ‚ wygenerowany przez DokuWiki pod adresem'; +$lang['email_signature_text'] = 'List zostaÅ‚ wygenerowany przez DokuWiki pod adresem +@DOKUWIKIURL@'; diff --git a/inc/lang/pt-br/lang.php b/inc/lang/pt-br/lang.php index 69b65f3b2..73f00d806 100644 --- a/inc/lang/pt-br/lang.php +++ b/inc/lang/pt-br/lang.php @@ -359,6 +359,7 @@ $lang['currentns'] = 'DomÃnio atual'; $lang['searchresult'] = 'Resultado da Busca'; $lang['plainhtml'] = 'HTML simples'; $lang['wikimarkup'] = 'Marcação wiki'; -$lang['email_signature'] = 'Essa mensagem foi gerada pelo DokuWiki em'; +$lang['email_signature_text'] = 'Essa mensagem foi gerada pelo DokuWiki em +@DOKUWIKIURL@'; $lang['page_nonexist_rev'] = 'Página não encontrada em %s. Foi criada posteriormente em <a href="%s">%s</a>.'; $lang['unable_to_parse_date'] = 'ImpossÃvel analisar em "%s".'; diff --git a/inc/lang/pt/lang.php b/inc/lang/pt/lang.php index 5c3562580..890a6fd57 100644 --- a/inc/lang/pt/lang.php +++ b/inc/lang/pt/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author José Carlos Monteiro <jose.c.monteiro@netcabo.pt> * @author José Monteiro <Jose.Monteiro@DoWeDo-IT.com> * @author Enrico Nicoletto <liverig@gmail.com> @@ -346,4 +346,5 @@ $lang['plainhtml'] = 'HTML simples'; $lang['wikimarkup'] = 'Markup de Wiki'; $lang['page_nonexist_rev'] = 'Página não existia no %s. Posteriormente, foi criado em <a href="%s">%s</a>.'; $lang['unable_to_parse_date'] = 'Não é possÃvel analisar o parâmetro "%s".'; -$lang['email_signature'] = 'Este email foi gerado por DokuWiki em'; +$lang['email_signature_text'] = 'Este email foi gerado por DokuWiki em +@DOKUWIKIURL@'; diff --git a/inc/lang/ro/lang.php b/inc/lang/ro/lang.php index 33bbf6b79..1eb99555e 100644 --- a/inc/lang/ro/lang.php +++ b/inc/lang/ro/lang.php @@ -333,5 +333,6 @@ $lang['media_perm_read'] = 'Ne pare rău, dar nu ai suficiente permisiuni $lang['media_perm_upload'] = 'Ne pare rău, dar nu ai suficiente permisiuni pentru a putea încărca fiÈ™iere.'; $lang['media_update'] = 'ÃŽncarcă noua versiune'; $lang['media_restore'] = 'Restaurează această versiune'; -$lang['email_signature'] = 'Acest e-mail a fost generat de DokuWiki la'; +$lang['email_signature_text'] = 'Acest e-mail a fost generat de DokuWiki la +@DOKUWIKIURL@'; $lang['searchresult'] = 'Rezultatul cautarii'; diff --git a/inc/lang/ru/lang.php b/inc/lang/ru/lang.php index 078fa58c9..0e19dfa60 100644 --- a/inc/lang/ru/lang.php +++ b/inc/lang/ru/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Yuri Pimenov <up@ftpsearch.lv> * @author Igor Tarasov <tigr@mail15.com> * @author Denis Simakov <akinoame1@gmail.com> @@ -371,4 +371,5 @@ $lang['plainhtml'] = 'ПроÑтой HTML'; $lang['wikimarkup'] = 'вики-разметка'; $lang['page_nonexist_rev'] = 'Ðта Ñтраница ещё не ÑущеÑтвовала %s. Она была Ñоздана <a href="%s">%s</a>.'; $lang['unable_to_parse_date'] = 'Ðевозможно обработать параметр "%s".'; -$lang['email_signature'] = 'Ðто пиÑьмо Ñоздано «Докувики» Ñ Ñайта'; +$lang['email_signature_text'] = 'Ðто пиÑьмо Ñоздано «Докувики» Ñ Ñайта +@DOKUWIKIURL@'; diff --git a/inc/lang/sk/lang.php b/inc/lang/sk/lang.php index dd1a5a295..0b81f5e3a 100644 --- a/inc/lang/sk/lang.php +++ b/inc/lang/sk/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Ondrej Vegh <ov@vsieti.sk> with help of the scholars from Zdruzena stredna skola polygraficka in Bratislava * @author Michal Mesko <michal.mesko@gmail.com> * @author exusik@gmail.com @@ -331,4 +331,5 @@ $lang['currentns'] = 'Aktuálny menný priestor'; $lang['searchresult'] = 'Výsledky hľadania'; $lang['plainhtml'] = 'Jednoduché HTML'; $lang['wikimarkup'] = 'Wiki formát'; -$lang['email_signature'] = 'Táto správa bola zaslaná DokuWiki'; +$lang['email_signature_text'] = 'Táto správa bola zaslaná DokuWiki +@DOKUWIKIURL@'; diff --git a/inc/lang/sl/lang.php b/inc/lang/sl/lang.php index ef082cc6e..9baa9dd09 100644 --- a/inc/lang/sl/lang.php +++ b/inc/lang/sl/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Jaka Kranjc <lynxlupodian@hotmail.com> * @author BoÅ¡tjan SeniÄar <senicar@gmail.com> * @author Dejan Levec <webphp@gmail.com> @@ -331,4 +331,5 @@ $lang['currentns'] = 'Trenutni imenski prostor'; $lang['searchresult'] = 'Rezultati iskanja'; $lang['plainhtml'] = 'Zapis HTML'; $lang['wikimarkup'] = 'Oblikovni jezik Wiki'; -$lang['email_signature'] = 'SporoÄilo je samodejno ustvarjeno na spletiÅ¡Äu'; +$lang['email_signature_text'] = 'SporoÄilo je samodejno ustvarjeno na spletiÅ¡Äu +@DOKUWIKIURL@'; diff --git a/inc/lang/sq/lang.php b/inc/lang/sq/lang.php index 2bc8dea00..6de6af81e 100644 --- a/inc/lang/sq/lang.php +++ b/inc/lang/sq/lang.php @@ -233,4 +233,5 @@ $lang['days'] = '%d ditë më parë'; $lang['hours'] = '%d orë më parë'; $lang['minutes'] = '%d minuta më parë'; $lang['seconds'] = '%d sekonda më parë'; -$lang['email_signature'] = 'Ky email u gjenerua nga DokuWiki në'; +$lang['email_signature_text'] = 'Ky email u gjenerua nga DokuWiki në +@DOKUWIKIURL@'; diff --git a/inc/lang/sr/lang.php b/inc/lang/sr/lang.php index 3c2cc6542..80f0d36d9 100644 --- a/inc/lang/sr/lang.php +++ b/inc/lang/sr/lang.php @@ -258,4 +258,5 @@ $lang['hours'] = 'Пре %d Ñати'; $lang['minutes'] = 'Пре %d минута'; $lang['seconds'] = 'Пре %d Ñекунди'; $lang['wordblock'] = 'Ваше измене ниÑу Ñачуване јер Ñадрже забрањен текÑÑ‚ (Ñпам)'; -$lang['email_signature'] = 'Ову поруку је генериÑао DokuWiki sa'; +$lang['email_signature_text'] = 'Ову поруку је генериÑао DokuWiki sa +@DOKUWIKIURL@'; diff --git a/inc/lang/sv/lang.php b/inc/lang/sv/lang.php index 721334afd..b2bb07347 100644 --- a/inc/lang/sv/lang.php +++ b/inc/lang/sv/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Joaquim Homrighausen <joho@webbplatsen.se> * @author Per Foreby <per@foreby.se> * @author Nicklas Henriksson <nicklas[at]nihe.se> @@ -341,4 +341,5 @@ $lang['media_update'] = 'Ladda upp ny version'; $lang['media_restore'] = 'Ã…terställ denna version'; $lang['searchresult'] = 'Sökresultat'; $lang['plainhtml'] = 'Ren HTML'; -$lang['email_signature'] = 'Detta meddelande har skapats av DokuWiki pÃ¥'; +$lang['email_signature_text'] = 'Detta meddelande har skapats av DokuWiki pÃ¥ +@DOKUWIKIURL@'; diff --git a/inc/lang/th/lang.php b/inc/lang/th/lang.php index 3273faedb..570d92968 100644 --- a/inc/lang/th/lang.php +++ b/inc/lang/th/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Komgrit Niyomrath <n.komgrit@gmail.com> * @author Arthit Suriyawongkul <arthit@gmail.com> * @author Kittithat Arnontavilas <mrtomyum@gmail.com> @@ -242,4 +242,5 @@ $lang['days'] = '%d วันà¸à¹ˆà¸à¸™'; $lang['hours'] = '%d ชั่วโมงà¸à¹ˆà¸à¸™'; $lang['minutes'] = '%d นาทีà¸à¹ˆà¸à¸™'; $lang['seconds'] = '%d วินาทีà¸à¹ˆà¸à¸™'; -$lang['email_signature'] = 'จดหมายนี้ถูà¸à¸ªà¸£à¹‰à¸²à¸‡à¸‚ึ้นโดยโดà¸à¸¸à¸§à¸´à¸à¸´à¸—ี่'; +$lang['email_signature_text'] = 'จดหมายนี้ถูà¸à¸ªà¸£à¹‰à¸²à¸‡à¸‚ึ้นโดยโดà¸à¸¸à¸§à¸´à¸à¸´à¸—ี่ +@DOKUWIKIURL@'; diff --git a/inc/lang/tr/lang.php b/inc/lang/tr/lang.php index 52bece889..49236c5f9 100644 --- a/inc/lang/tr/lang.php +++ b/inc/lang/tr/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author Selim FarsakoÄŸlu <farsakogluselim@yahoo.de> * @author Aydın CoÅŸkuner <aydinweb@gmail.com> * @author Cihan Kahveci <kahvecicihan@gmail.com> @@ -339,4 +339,5 @@ $lang['currentns'] = 'Geçerli isimalanı'; $lang['searchresult'] = 'Arama Sonucu'; $lang['plainhtml'] = 'Yalın HTML'; $lang['wikimarkup'] = 'Wiki Biçimlendirmesi'; -$lang['email_signature'] = 'Bu e-posta aÅŸağıdaki DokuWiki tarafından otomatik olarak oluÅŸturulmuÅŸtur'; +$lang['email_signature_text'] = 'Bu e-posta aÅŸağıdaki DokuWiki tarafından otomatik olarak oluÅŸturulmuÅŸtur +@DOKUWIKIURL@'; diff --git a/inc/lang/uk/lang.php b/inc/lang/uk/lang.php index b1c821f3e..2fe447b0f 100644 --- a/inc/lang/uk/lang.php +++ b/inc/lang/uk/lang.php @@ -305,7 +305,8 @@ $lang['hours'] = '%d годин тому'; $lang['minutes'] = '%d хвилин тому'; $lang['seconds'] = '%d Ñекунд тому'; $lang['wordblock'] = 'Ваші зміни не збережено, тому що вони розпізнані Ñк такі, що міÑÑ‚Ñть заблокований текÑÑ‚(Ñпам).'; -$lang['email_signature'] = 'Це Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð±ÑƒÐ»Ð¾ Ñтворене ДокуВікі з'; +$lang['email_signature_text'] = 'Це Ð¿Ð¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ Ð±ÑƒÐ»Ð¾ Ñтворене ДокуВікі з +@DOKUWIKIURL@'; $lang['media_searchtab'] = 'Пошук'; $lang['media_file'] = 'Файл'; $lang['media_viewtab'] = 'ОглÑд'; diff --git a/inc/lang/vi/lang.php b/inc/lang/vi/lang.php index 02e790bd4..ea1d053a8 100644 --- a/inc/lang/vi/lang.php +++ b/inc/lang/vi/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author James Do <jdo@myrealbox.com> */ $lang['encoding'] = 'utf-8'; @@ -239,4 +239,5 @@ $lang['media_perm_read'] = 'Sorry, bạn không đủ quyá»n truy cáºp.' $lang['media_perm_upload'] = 'Xin lá»—i, bạn không đủ quyá»n để upload file lên.'; $lang['media_update'] = 'Tải lên phiên bản má»›i'; $lang['media_restore'] = 'Phục hồi phiên bản nà y'; -$lang['email_signature'] = 'Äiện thư nà y tạo bởi DokuWiki ở'; +$lang['email_signature_text'] = 'Äiện thư nà y tạo bởi DokuWiki ở +@DOKUWIKIURL@'; diff --git a/inc/lang/zh-tw/lang.php b/inc/lang/zh-tw/lang.php index b3364b99d..bc49b33dc 100644 --- a/inc/lang/zh-tw/lang.php +++ b/inc/lang/zh-tw/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author chinsan <chinsan@mail2000.com.tw> * @author Li-Jiun Huang <ljhuang.tw@gmail.com> * @author http://www.chinese-tools.com/tools/converter-simptrad.html @@ -345,4 +345,5 @@ $lang['currentns'] = 'ç›®å‰çš„命å空間'; $lang['searchresult'] = 'æœå°‹çµæžœ'; $lang['plainhtml'] = 'ç´” HTML'; $lang['wikimarkup'] = 'Wiki 語法標記'; -$lang['email_signature'] = '本信件由以下 DokuWiki 網站產生'; +$lang['email_signature_text'] = '本信件由以下 DokuWiki 網站產生 +@DOKUWIKIURL@'; diff --git a/inc/lang/zh/lang.php b/inc/lang/zh/lang.php index 7a8533815..4ed1116fd 100644 --- a/inc/lang/zh/lang.php +++ b/inc/lang/zh/lang.php @@ -2,7 +2,7 @@ /** * @license GPL 2 (http://www.gnu.org/licenses/gpl.html) - * + * * @author ZDYX <zhangduyixiong@gmail.com> * @author http://www.chinese-tools.com/tools/converter-tradsimp.html * @author George Sheraton <guxd@163.com> @@ -363,4 +363,5 @@ $lang['plainhtml'] = '纯HTML'; $lang['wikimarkup'] = 'Wiki Markup è¯è¨€'; $lang['page_nonexist_rev'] = '页é¢åœ¨ %s ä¸å˜åœ¨ã€‚它曾创建于 <a href="%s">%s</a>。'; $lang['unable_to_parse_date'] = 'æ— æ³•è§£æžå‚æ•° "%s"。'; -$lang['email_signature'] = '本邮件由 DokuWiki 自动创建'; +$lang['email_signature_text'] = '本邮件由 DokuWiki 自动创建 +@DOKUWIKIURL@'; -- GitLab