* (bug 2369) Add separate message for input box on Special:Prefixindex
authorBrion Vibber <brion@users.mediawiki.org>
Thu, 13 Oct 2005 00:46:08 +0000 (00:46 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Thu, 13 Oct 2005 00:46:08 +0000 (00:46 +0000)
http://bugzilla.wikimedia.org/attachment.cgi?id=982

RELEASE-NOTES
includes/SpecialAllpages.php
includes/SpecialPrefixindex.php
languages/Language.php
languages/LanguageDe.php

index 13489b6..f229533 100644 (file)
@@ -147,6 +147,7 @@ fully support the editing toolbar, but was found to be too confusing.
 * (bug 2585) Return proper 404 code when pages don't exist
 * (bug 3684) Fix typo in fatal error backtraces in Hooks.php
 * (bug 3682) LanguageSr.php - added convertPlural
+* (bug 2369) Add separate message for input box on Special:Prefixindex
 
 
 === Caveats ===
index bd5d207..d2ef504 100644 (file)
@@ -40,6 +40,8 @@ class SpecialAllpages {
        var $maxPerPage=960;
        var $topLevelMax=50;
        var $name='Allpages';
+       # Determines, which message describes the input field 'nsfrom' (->SpecialPrefixindex.php)
+       var $nsfromMsg='allpagesfrom';
 
 /**
  * HTML for the top form
@@ -61,7 +63,7 @@ function namespaceForm ( $namespace = NS_MAIN, $from = '' ) {
        $out .= "
 <table id='nsselect' class='allpages'>
        <tr>
-               <td align='right'>" . wfMsgHtml('allpagesfrom') . "</td>
+               <td align='right'>" . wfMsgHtml($this->nsfromMsg) . "</td>
                <td align='left'><label for='nsfrom'>$frombox</label></td>
        </tr>
        <tr>    
index 29e5637..7f435be 100644 (file)
@@ -44,6 +44,8 @@ class SpecialPrefixindex extends SpecialAllpages {
        var $maxPerPage=960;
        var $topLevelMax=50;
        var $name='Prefixindex';
+       # Determines, which message describes the input field 'nsfrom', used in function namespaceForm (see superclass SpecialAllpages)
+       var $nsfromMsg='allpagesprefix';
 
 /**
  * @param integer $namespace (Default NS_MAIN)
index 38ecdef..86d610d 100644 (file)
@@ -1194,6 +1194,7 @@ You can narrow down the view by selecting a log type, the user name, or the affe
 'allpagesprev'         => 'Previous',
 'allpagesnext'         => 'Next',
 'allpagessubmit'       => 'Go',
+'allpagesprefix'       => 'Display pages with prefix:',
 
 # E this user
 #
index af3ded6..619811e 100644 (file)
@@ -754,8 +754,10 @@ Davon haben <b>$2</b> Administrator-Rechte (siehe $3).",
 
 # Special:Allpages
 'allpages'     => 'Alle Artikel',
+'prefixindex'  => 'Alle Artikel (mit Präfix)',
 'nextpage'     => "Nächste Seite ($1)",
-'allpagesfrom' => 'Zeige Artikel, beginnend ab:',
+'allpagesfrom' => 'Seiten anzeigen ab:',
+'allpagesprefix'       => 'Seiten anzeigen mit Präfix:',
 'allarticles'  => 'Alle Artikel',
 'allnonarticles'       => 'Alle Nicht-Artikel',
 'allinnamespace'       => "Alle Seiten im Namensraum: $1",