
raymond at svn
Aug 27, 2008, 12:49 PM
Post #1 of 1
(15 views)
Permalink
|
|
SVN: [40099] trunk/phase3
|
|
Revision: 40099 Author: raymond Date: 2008-08-27 19:49:09 +0000 (Wed, 27 Aug 2008) Log Message: ----------- Add an own message for the fieldset legend instead of duplicating the special page name Modified Paths: -------------- trunk/phase3/includes/specials/SpecialRecentchanges.php trunk/phase3/languages/messages/MessagesEn.php trunk/phase3/maintenance/language/messages.inc Modified: trunk/phase3/includes/specials/SpecialRecentchanges.php =================================================================== --- trunk/phase3/includes/specials/SpecialRecentchanges.php 2008-08-27 19:33:53 UTC (rev 40098) +++ trunk/phase3/includes/specials/SpecialRecentchanges.php 2008-08-27 19:49:09 UTC (rev 40099) @@ -432,7 +432,7 @@ $panelString = implode( "\n", $panel ); $wgOut->addHTML( - Xml::fieldset( wfMsg( strtolower( $this->mName ) ), $panelString, array( 'class' => 'rcoptions' ) ) + Xml::fieldset( wfMsg( 'recentchanges-legend' ), $panelString, array( 'class' => 'rcoptions' ) ) ); $this->setBottomText( $wgOut, $opts ); Modified: trunk/phase3/languages/messages/MessagesEn.php =================================================================== --- trunk/phase3/languages/messages/MessagesEn.php 2008-08-27 19:33:53 UTC (rev 40098) +++ trunk/phase3/languages/messages/MessagesEn.php 2008-08-27 19:49:09 UTC (rev 40099) @@ -1627,6 +1627,7 @@ 'nchanges' => '$1 {{PLURAL:$1|change|changes}}', 'recentchanges' => 'Recent changes', 'recentchanges-url' => 'Special:Recentchanges', # do not translate or duplicate this message to other languages +'recentchanges-legend' => 'Report options', 'recentchangestext' => 'Track the most recent changes to the wiki on this page.', 'recentchanges-feed-description' => 'Track the most recent changes to the wiki in this feed.', 'rcnote' => "Below {{PLURAL:$1|is '''1''' change|are the last '''$1''' changes}} in the last {{PLURAL:$2|day|'''$2''' days}}, as of $5, $4.", Modified: trunk/phase3/maintenance/language/messages.inc =================================================================== --- trunk/phase3/maintenance/language/messages.inc 2008-08-27 19:33:53 UTC (rev 40098) +++ trunk/phase3/maintenance/language/messages.inc 2008-08-27 19:49:09 UTC (rev 40099) @@ -969,6 +969,7 @@ 'nchanges', 'recentchanges', 'recentchanges-url', + 'recentchanges-legend', 'recentchangestext', 'recentchanges-feed-description', 'rcnote', _______________________________________________ MediaWiki-CVS mailing list MediaWiki-CVS[at]lists.wikimedia.org https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs
|