Index: trunk/extensions/UsabilityInitiative/PrefSwitch/PrefSwitch.i18n.php |
— | — | @@ -103,11 +103,11 @@ |
104 | 104 | ===Feedback?=== |
105 | 105 | We would love to hear from you. Please visit our [[$1|feedback page]] or, if you are interested in our ongoing efforts to improve the software, visit our [http://usability.wkimedia.org usability wiki] for more information.", |
106 | 106 | 'prefswitch-main-anon' => "===Take me back=== |
107 | | -<span class=\"plainlinks\">[$1 Click here to turn off the new features]</span>. You will be asked to login or create an account first.", |
| 107 | +[$1 Click here to turn off the new features]. You will be asked to login or create an account first.", |
108 | 108 | 'prefswitch-main-on' => "===Take me back!=== |
109 | | -<span class=\"plainlinks\">[$2 Click here to turn off the new features]</span>.", |
| 109 | +[$2 Click here to turn off the new features].", |
110 | 110 | 'prefswitch-main-off' => "===Try them out!=== |
111 | | -<span class=\"plainlinks\">[$1 Click here to enable the new features]</span>.", |
| 111 | +[$1 Click here to enable the new features].", |
112 | 112 | 'prefswitch-survey-intro-feedback' => 'We would love to hear from you. |
113 | 113 | Please fill out the optional survey below before clicking "[[#prefswitch-survey-submit-feedback|{{int:Prefswitch-survey-submit-feedback}}]]".', |
114 | 114 | 'prefswitch-survey-intro-off' => 'Thanks for trying out our new features. |
— | — | @@ -2216,7 +2216,7 @@ |
2217 | 2217 | |
2218 | 2218 | === Terugkoppeling? === |
2219 | 2219 | Wij horen graag van u. |
2220 | | -Bezoek onze <span class=\"plainlinks\">[[$1|pagina voor terugkoppeling]], of ga naar de [http://usability.wkimedia.org bruikbaarheidswiki] voor meer informatie als u geïnteresseerd bent in onze toekomstige plannen.</span>", |
| 2220 | +Bezoek onze [[$1|pagina voor terugkoppeling]], of ga naar de [http://usability.wkimedia.org bruikbaarheidswiki] voor meer informatie als u geïnteresseerd bent in onze toekomstige plannen.", |
2221 | 2221 | 'prefswitch-main-anon' => '===Terug=== |
2222 | 2222 | <span class="plainlinks">[$1 U kunt de nieuwe functionaliteit uitschakelen]</span>. U wordt dan gevraagd om aan te melden of te registreren.', |
2223 | 2223 | 'prefswitch-main-on' => '=== Nee, bedankt! === |
Index: trunk/extensions/UsabilityInitiative/PrefSwitch/SpecialPrefSwitch.php |
— | — | @@ -110,6 +110,7 @@ |
111 | 111 | UsabilityInitiativeHooks::initialize(); |
112 | 112 | UsabilityInitiativeHooks::addScript( 'PrefSwitch/PrefSwitch.js', $wgPrefSwitchStyleVersion ); |
113 | 113 | UsabilityInitiativeHooks::addStyle( 'PrefSwitch/PrefSwitch.css', $wgPrefSwitchStyleVersion ); |
| 114 | + $wgOut->addHtml( '<div class="plainlinks">' ); |
114 | 115 | // Handle various modes |
115 | 116 | if ( $wgRequest->getCheck( 'mode' ) && $wgUser->isLoggedIn() ) { |
116 | 117 | switch ( $wgRequest->getVal( 'mode' ) ) { |
— | — | @@ -192,6 +193,7 @@ |
193 | 194 | break; |
194 | 195 | } |
195 | 196 | } |
| 197 | + $wgOut->addHtml( '</div>' ); |
196 | 198 | } |
197 | 199 | |
198 | 200 | /* Private Functions */ |