Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -1183,6 +1183,8 @@ |
1184 | 1184 | 'protect-expiring', |
1185 | 1185 | 'protect-cascade', |
1186 | 1186 | 'protect-robotspolicy', |
| 1187 | + 'protect-robots-noindex', |
| 1188 | + 'protect-robots-nofollow', |
1187 | 1189 | 'restriction-type', |
1188 | 1190 | 'restriction-level', |
1189 | 1191 | 'minimum-size', |
Index: trunk/phase3/includes/ProtectionForm.php |
— | — | @@ -338,9 +338,9 @@ |
339 | 339 | $ret = "<tr><td align=\"right\">"; |
340 | 340 | $ret .= '<label>' . wfMsgExt( 'protect-robotspolicy', array( 'parseinline' ) ) . '</label>'; |
341 | 341 | $ret .= "</td><td align=\"left\" width=\"60\">"; |
342 | | - $ret .= Xml::checkLabel( 'noindex', 'mwProtect-robots-noindex', 'mwProtect-robots-noindex', $noindexset, $robotsallowed ); |
| 342 | + $ret .= Xml::checkLabel( wfMsgHtml( 'protect-robots-noindex' ), 'mwProtect-robots-noindex', 'mwProtect-robots-noindex', $noindexset, $robotsallowed ); |
343 | 343 | $ret .= $wgContLang->getDirMark(); |
344 | | - $ret .= Xml::checkLabel( 'nofollow', 'mwProtect-robots-nofollow', 'mwProtect-robots-nofollow', $nofollowset, $robotsallowed ); |
| 344 | + $ret .= Xml::checkLabel( wfMsgHtml( 'protect-robots-nofollow' ), 'mwProtect-robots-nofollow', 'mwProtect-robots-nofollow', $nofollowset, $robotsallowed ); |
345 | 345 | $ret .= "</td></tr>"; |
346 | 346 | return $ret; |
347 | 347 | } |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1840,6 +1840,8 @@ |
1841 | 1841 | 'protect-expiring' => 'expires $1 (UTC)', |
1842 | 1842 | 'protect-cascade' => 'Protect pages included in this page (cascading protection)', |
1843 | 1843 | 'protect-robotspolicy' => 'Robot policy:', |
| 1844 | +'protect-robots-noindex' => 'Do not index', |
| 1845 | +'protect-robots-nofollow' => 'Do not follow links', |
1844 | 1846 | 'restriction-type' => 'Permission:', |
1845 | 1847 | 'restriction-level' => 'Restriction level:', |
1846 | 1848 | 'minimum-size' => 'Min size', |