r114343 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r114342‎ | r114343 | r114344 >
Date:03:24, 21 March 2012
Author:demon
Status:ok
Tags:
Comment:
Fix r98081: use parseinline rather than raw html in message
Modified paths:
  • /trunk/extensions/NewSignupPage/NewSignupPage.i18n.php (modified) (history)
  • /trunk/extensions/NewSignupPage/NewSignupPage.php (modified) (history)

Diff [purge]

Index: trunk/extensions/NewSignupPage/NewSignupPage.i18n.php
@@ -11,7 +11,7 @@
1212 /** English */
1313 $messages['en'] = array(
1414 // Social tools
15 - 'login-reg-recruited' => 'recruited <a href="$1">$2</a>',
 15+ 'login-reg-recruited' => 'recruited [$1 $2]',
1616 // Text displayed next to the checkbox
1717 'shoutwiki-loginform-tos' => 'I am over 13 years of age and I have read, understood and agree to be bound by the <a href="http://www.shoutwiki.com/wiki/Terms_of_use">Terms of Service</a> and <a href="http://www.shoutwiki.com/wiki/Privacy_policy">Privacy Policy</a>',
1818 // Error message if the user doesn't accept the site's Terms of Service
@@ -52,7 +52,7 @@
5353
5454 /** Finnish (Suomi) */
5555 $messages['fi'] = array(
56 - 'login-reg-recruited' => 'värväsi käyttäjän <a href="$1">$2</a>',
 56+ 'login-reg-recruited' => 'värväsi käyttäjän [$1 $2]',
5757 'shoutwiki-loginform-tos' => 'Olen yli 13-vuotias ja olen lukenut, ymmärtänyt ja sitoutunut noudattamaan <a href="http://www.shoutwiki.com/wiki/Terms_of_use">käyttöehtoja</a> ja <a href="http://www.shoutwiki.com/wiki/Privacy_policy">tietosuojakäytäntöä</a>',
5858 'shoutwiki-must-accept-tos' => 'Sinun tulee hyväksyä sivuston käyttöehdot voidaksesi luoda tunnuksen!',
5959 'right-bypasstoscheck' => 'Luoda uusia tunnuksia hyväksymättä sivuston käyttöehtoja',
@@ -84,7 +84,7 @@
8585 * @author Mitchel Corstjens
8686 */
8787 $messages['nl'] = array(
88 - 'login-reg-recruited' => 'rekruteerde <a href="$1">$2</a>',
 88+ 'login-reg-recruited' => 'rekruteerde [$1 $2]',
8989 'shoutwiki-loginform-tos' => 'Ik ben ouder dan 13 jaar en heb de <a href="http://www.shoutwiki.com/wiki/Terms_of_use">gebruiks overeenkomst</a> en de <a href="http://www.shoutwiki.com/wiki/Privacy_policy">Privacy Policy</a> gelezen en ga hier mee akkoord',
9090 'shoutwiki-must-accept-tos' => 'Je moet akkoord gaan met de gebruiks overeenkomst van de site om een account aan te kunnen maken!',
9191 'right-bypasstoscheck' => "Creëer een nieuwe account zonder akkoord te gaan met de gebruiks overeenkomst",
Index: trunk/extensions/NewSignupPage/NewSignupPage.php
@@ -180,8 +180,9 @@
181181 // Nees to be forContent because addMessage adds this into a
182182 // database table - we don't want to display Japanese text
183183 // to English users
184 - $message = wfMsgForContent(
 184+ $message = wfMsgExt(
185185 'login-reg-recruited',
 186+ array( 'parseinline' ),
186187 $user_registering_title->getFullURL(),
187188 $user->getName()
188189 );

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r98081New extension that adds a checkbox to Special:UserLogin/signup and requires u...ashley20:13, 25 September 2011

Status & tagging log