Index: trunk/extensions/NewSignupPage/NewSignupPage.i18n.php |
— | — | @@ -11,7 +11,7 @@ |
12 | 12 | /** English */ |
13 | 13 | $messages['en'] = array( |
14 | 14 | // Social tools |
15 | | - 'login-reg-recruited' => 'recruited <a href="$1">$2</a>', |
| 15 | + 'login-reg-recruited' => 'recruited [$1 $2]', |
16 | 16 | // Text displayed next to the checkbox |
17 | 17 | '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>', |
18 | 18 | // Error message if the user doesn't accept the site's Terms of Service |
— | — | @@ -52,7 +52,7 @@ |
53 | 53 | |
54 | 54 | /** Finnish (Suomi) */ |
55 | 55 | $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]', |
57 | 57 | '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>', |
58 | 58 | 'shoutwiki-must-accept-tos' => 'Sinun tulee hyväksyä sivuston käyttöehdot voidaksesi luoda tunnuksen!', |
59 | 59 | 'right-bypasstoscheck' => 'Luoda uusia tunnuksia hyväksymättä sivuston käyttöehtoja', |
— | — | @@ -84,7 +84,7 @@ |
85 | 85 | * @author Mitchel Corstjens |
86 | 86 | */ |
87 | 87 | $messages['nl'] = array( |
88 | | - 'login-reg-recruited' => 'rekruteerde <a href="$1">$2</a>', |
| 88 | + 'login-reg-recruited' => 'rekruteerde [$1 $2]', |
89 | 89 | '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', |
90 | 90 | 'shoutwiki-must-accept-tos' => 'Je moet akkoord gaan met de gebruiks overeenkomst van de site om een account aan te kunnen maken!', |
91 | 91 | '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 @@ |
181 | 181 | // Nees to be forContent because addMessage adds this into a |
182 | 182 | // database table - we don't want to display Japanese text |
183 | 183 | // to English users |
184 | | - $message = wfMsgForContent( |
| 184 | + $message = wfMsgExt( |
185 | 185 | 'login-reg-recruited', |
| 186 | + array( 'parseinline' ), |
186 | 187 | $user_registering_title->getFullURL(), |
187 | 188 | $user->getName() |
188 | 189 | ); |