(bug 5837) Use "members" for the value descriptor in Special:Categories, Special...
authorRob Church <robchurch@users.mediawiki.org>
Fri, 5 May 2006 10:33:02 +0000 (10:33 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Fri, 5 May 2006 10:33:02 +0000 (10:33 +0000)
RELEASE-NOTES
includes/SpecialCategories.php
includes/SpecialMostlinkedcategories.php
includes/SpecialWantedcategories.php
languages/Messages.php

index 2be3bd3..ae829e0 100644 (file)
@@ -208,6 +208,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   bearing the image/svg MIME type. Disabled by default due to the vast majority of
   web servers being hideously misconfigured. See DefaultSettings.php for more details.
 * Changed default LocalSettings.php to append the previous include path when setting it
+* (bug 5837) Use "members" for the value descriptor in Special:Categories,
+  Special:Wantedcategories and Special:Mostlinkedcategories.
 
 == Compatibility ==
 
index 45d266a..6ac593a 100644 (file)
@@ -52,7 +52,7 @@ class CategoriesPage extends QueryPage {
        function formatResult( $skin, $result ) {
                $title = Title::makeTitle( NS_CATEGORY, $result->title );
                $plink = $skin->makeLinkObj( $title, $title->getText() );
-               $nlinks = wfMsg( 'nlinks', $result->count );
+               $nlinks = wfMsg( 'members', $result->count );
                return wfSpecialList($plink, $nlinks);
        }
 }
index a3b1562..35ee07f 100644 (file)
@@ -64,7 +64,7 @@ class MostlinkedCategoriesPage extends QueryPage {
 
                $plink = $skin->makeLinkObj( $nt, htmlspecialchars( $text ) );
 
-               $nlinks = wfMsg( 'nlinks', $result->value );
+               $nlinks = wfMsg( 'members', $result->value );
                return wfSpecialList($plink, $nlinks);
        }
 }
index df152aa..d890d0f 100644 (file)
@@ -68,7 +68,7 @@ class WantedCategoriesPage extends QueryPage {
                        $skin->makeLinkObj( $nt, htmlspecialchars( $text ) ) :
                        $skin->makeBrokenLinkObj( $nt, htmlspecialchars( $text ) );
 
-               $nlinks = wfMsg( 'nlinks', $result->value );
+               $nlinks = wfMsg( 'members', $result->value );
                return wfSpecialList($plink, $nlinks);
        }
 }
index b238c86..1e2bd66 100644 (file)
@@ -946,6 +946,7 @@ The [http://meta.wikimedia.org/wiki/Help:Job_queue job queue] length is '''$7'''
 'mostimages'   => 'Most linked to images',
 'mostrevisions' => 'Articles with the most revisions',
 'nlinks'               => '$1 links',
+'members'              => '$1 members',
 'allpages'             => 'All pages',
 'prefixindex'   => 'Prefix index',
 'randompage'   => 'Random page',