Index: trunk/phase3/skins/MonoBook.php |
— | — | @@ -165,7 +165,7 @@ |
166 | 166 | if( isset( $this->data['search'] ) ) { |
167 | 167 | ?> value="<?php $this->text('search') ?>"<?php } ?> /> |
168 | 168 | <input type='submit' name="go" class="searchButton" id="searchGoButton" value="<?php $this->msg('go') ?>" /> |
169 | | - <input type='submit' name="fulltext" class="searchButton" value="<?php $this->msg('search') ?>" /> |
| 169 | + <input type='submit' name="fulltext" class="searchButton" value="<?php $this->msg('searchbutton') ?>" /> |
170 | 170 | </div></form> |
171 | 171 | </div> |
172 | 172 | </div> |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -803,7 +803,7 @@ |
804 | 804 | . '<input type="text" name="search" size="19" value="' |
805 | 805 | . htmlspecialchars(substr($search,0,256)) . "\" />\n" |
806 | 806 | . '<input type="submit" name="go" value="' . wfMsg ('go') . '" /> ' |
807 | | - . '<input type="submit" name="fulltext" value="' . wfMsg ('search') . "\" />\n</form>"; |
| 807 | + . '<input type="submit" name="fulltext" value="' . wfMsg ('searchbutton') . "\" />\n</form>"; |
808 | 808 | |
809 | 809 | return $s; |
810 | 810 | } |
Index: trunk/phase3/includes/SpecialSearch.php |
— | — | @@ -151,7 +151,7 @@ |
152 | 152 | wfMsg( 'googlesearch', |
153 | 153 | htmlspecialchars( $term ), |
154 | 154 | htmlspecialchars( $wgInputEncoding ), |
155 | | - htmlspecialchars( wfMsg( 'search' ) ) |
| 155 | + htmlspecialchars( wfMsg( 'searchbutton' ) ) |
156 | 156 | ) |
157 | 157 | ); |
158 | 158 | wfProfileOut( $fname ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -71,6 +71,8 @@ |
72 | 72 | * Fix regression which allowed some blocked users to create additional accounts |
73 | 73 | * (bug 6657) Fix Hungarian linktrail |
74 | 74 | * (bug 6751) Fix preview of blanked section with edit on first preview option |
| 75 | +* (bug 5456) Separate MediaWiki:Search into messages for both noun and verb, |
| 76 | + introduced 'MediaWiki:Searchbutton' |
75 | 77 | |
76 | 78 | |
77 | 79 | == Languages updated == |
Index: trunk/phase3/languages/Messages.php |
— | — | @@ -172,6 +172,7 @@ |
173 | 173 | 'tagline' => 'From {{SITENAME}}', |
174 | 174 | 'help' => 'Help', |
175 | 175 | 'search' => 'Search', |
| 176 | +'searchbutton' => '{{int:search}}111', # see bug 5456 |
176 | 177 | 'go' => 'Go', |
177 | 178 | 'history' => 'Page history', |
178 | 179 | 'history_short' => 'History', |