From fe060ca5327ad751c9dec383077671f203697590 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Thu, 24 Mar 2005 09:26:20 +0000 Subject: [PATCH] Removed hardcoded messages in Special:Listusers. --- includes/SpecialListusers.php | 4 ++-- languages/Language.php | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) 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.', ); -- 2.20.1