Index: trunk/phase3/maintenance/language/messages.inc |
— | — | @@ -766,13 +766,12 @@ |
767 | 767 | 'prevn', |
768 | 768 | 'nextn', |
769 | 769 | 'viewprevnext', |
| 770 | + 'searchmenu-legend', |
770 | 771 | 'searchmenu-exists', |
771 | 772 | 'searchmenu-new', |
772 | 773 | 'searchhelp-url', |
773 | 774 | 'searchmenu-prefix', |
774 | 775 | 'searchmenu-help', |
775 | | - 'searchmenu-badtitle', |
776 | | - 'searchmenu', |
777 | 776 | 'searchprofile-articles', |
778 | 777 | 'searchprofile-articles-and-proj', |
779 | 778 | 'searchprofile-project', |
Index: trunk/phase3/includes/specials/SpecialSearch.php |
— | — | @@ -646,7 +646,7 @@ |
647 | 647 | $out .= wfMsgExt( 'searchmenu-prefix', array('parseinline'), $term ); |
648 | 648 | |
649 | 649 | return Xml::openElement( 'fieldset', array('id' => 'mw-searchoptions','style' => 'margin:0em;') ) . |
650 | | - Xml::element( 'legend', null, wfMsg('searchresults') ) . |
| 650 | + Xml::element( 'legend', null, wfMsg('searchmenu-legend') ) . |
651 | 651 | $this->formHeader($term) . $out . |
652 | 652 | Xml::closeElement( 'fieldset' ); |
653 | 653 | } |
— | — | @@ -792,7 +792,7 @@ |
793 | 793 | $out .= Xml::closeElement( 'form' ); |
794 | 794 | $out .= wfMsgExt( 'searchmenu-prefix', array('parseinline'), $term ); |
795 | 795 | return Xml::openElement( 'fieldset', array('id' => 'mw-searchoptions','style' => 'margin:0em;') ) . |
796 | | - Xml::element( 'legend', null, wfMsg('searchresults') ) . |
| 796 | + Xml::element( 'legend', null, wfMsg('searchmenu-legend') ) . |
797 | 797 | $this->formHeader($term) . $out . |
798 | 798 | Xml::closeElement( 'fieldset' ); |
799 | 799 | } |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -1426,6 +1426,7 @@ |
1427 | 1427 | 'prevn' => 'previous $1', |
1428 | 1428 | 'nextn' => 'next $1', |
1429 | 1429 | 'viewprevnext' => 'View ($1) ($2) ($3)', |
| 1430 | +'searchmenu-legend' => 'Search options', |
1430 | 1431 | 'searchmenu-exists' => "'''There is page named \"[[\$1]]\" on this wiki'''", |
1431 | 1432 | 'searchmenu-new' => "'''[[\$1|Create]] the page \"[[\$1]]\" on this wiki!'''", |
1432 | 1433 | 'searchhelp-url' => 'Project:Searching', |