From: Ævar Arnfjörð Bjarmason Date: Thu, 24 Mar 2005 09:26:20 +0000 (+0000) Subject: Removed hardcoded messages in Special:Listusers. X-Git-Tag: 1.5.0alpha1~539 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=fe060ca5327ad751c9dec383077671f203697590;p=lhc%2Fweb%2Fwiklou.git Removed hardcoded messages in Special:Listusers. --- diff --git a/includes/SpecialListusers.php b/includes/SpecialListusers.php index 559ef6ae34..ae315f0e5f 100644 --- a/includes/SpecialListusers.php +++ b/includes/SpecialListusers.php @@ -64,7 +64,7 @@ class ListUsersPage extends QueryPage { // form header $out = '
' . '' . - 'Group: '; // get all group names and id $dbr = & wfGetDB( DB_SLAVE ); @@ -82,7 +82,7 @@ class ListUsersPage extends QueryPage { } $out .= ' '; - $out .= 'User: '; + $out .= wfMsg( 'speciallistusersuserlabel' ) . ' '; // OK button, end of form. $out .= '
'; diff --git a/languages/Language.php b/languages/Language.php index 400611d2eb..99cab57ddb 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -1788,6 +1788,10 @@ ta[\'ca-nstab-category\'] = new Array(\'c\',\'View the category page\'); 'specialloguserlabel' => 'User: ', 'speciallogtitlelabel' => 'Title: ', +# labels for Group: and User: ond Special:Listusers +'speciallistusersuserlabel' => 'User: ', +'speciallistusersgrouplabel' => 'Group: ', + 'passwordtooshort' => 'Your password is too short. It must have at least $1 characters.', );