Index: trunk/phase3/includes/SpecialListusers.php |
— | — | @@ -64,7 +64,7 @@ |
65 | 65 | // form header |
66 | 66 | $out = '<form method="get" action="'.$action.'">' . |
67 | 67 | '<input type="hidden" name="title" value="'.$special.'" />' . |
68 | | - 'Group: <select name="group">'; |
| 68 | + wfMsg( 'speciallistusersgrouplabel' ) . '<select name="group">'; |
69 | 69 | |
70 | 70 | // get all group names and id |
71 | 71 | $dbr = & wfGetDB( DB_SLAVE ); |
— | — | @@ -82,7 +82,7 @@ |
83 | 83 | } |
84 | 84 | $out .= '</select> '; |
85 | 85 | |
86 | | - $out .= 'User: <input type="text" name="username" /> '; |
| 86 | + $out .= wfMsg( 'speciallistusersuserlabel' ) . '<input type="text" name="username" /> '; |
87 | 87 | |
88 | 88 | // OK button, end of form. |
89 | 89 | $out .= '<input type="submit" /></form>'; |
Index: trunk/phase3/languages/Language.php |
— | — | @@ -1788,6 +1788,10 @@ |
1789 | 1789 | 'specialloguserlabel' => 'User: ', |
1790 | 1790 | 'speciallogtitlelabel' => 'Title: ', |
1791 | 1791 | |
| 1792 | +# labels for Group: and User: ond Special:Listusers |
| 1793 | +'speciallistusersuserlabel' => 'User: ', |
| 1794 | +'speciallistusersgrouplabel' => 'Group: ', |
| 1795 | + |
1792 | 1796 | 'passwordtooshort' => 'Your password is too short. It must have at least $1 characters.', |
1793 | 1797 | |
1794 | 1798 | ); |