* (bug 3798) DoubleRedirects no longer has hard coded arrows
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Wed, 26 Oct 2005 12:22:30 +0000 (12:22 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Wed, 26 Oct 2005 12:22:30 +0000 (12:22 +0000)
RELEASE-NOTES
includes/SpecialDoubleRedirects.php
languages/Language.php

index f4ae976..2cc8e16 100644 (file)
@@ -172,6 +172,7 @@ fully support the editing toolbar, but was found to be too confusing.
   work for all Unicode characters due to MySQL limitations.
 * Sanitizer CSS comment processing order fix
 * Edit box now remembers scrollbar position on preview
+* (bug 3798) DoubleRedirects no longer has hard coded arrows
 
 
 === Caveats ===
index 3169844..d84b59e 100644 (file)
@@ -91,7 +91,8 @@ class DoubleRedirectsPage extends PageQueryPage {
                $linkB = $skin->makeKnownLinkObj( $titleB, '', 'redirect=no' );
                $linkC = $skin->makeKnownLinkObj( $titleC );
                
-               return "$linkA $edit &rarr; $linkB &rarr; $linkC";
+               return "$linkA $edit" . wfMsgHtml( 'doubleredirectsarrow' )
+                       . $linkB . wfMsgHtml( 'doubleredirectsarrow' ) . $linkC;
        }
 }
 
index 11d8dcb..efeba09 100644 (file)
@@ -1048,7 +1048,7 @@ created and by whom, and anything else you may know about it. If this is an imag
 'sourcefilename' => 'Source filename',
 'destfilename' => 'Destination filename',
 
-'license' => 'Licensing',      
+'license' => 'Licensing',
 'nolicense' => 'None selected',
 
 # Image list
@@ -1119,6 +1119,7 @@ That comes to '''$5''' average edits per page, and '''$6''' views per edit.",
 'disambiguationstext'  => "The following pages link to a <i>disambiguation page</i>. They should link to the appropriate topic instead.<br />A page is treated as disambiguation if it is linked from $1.<br />Links from other namespaces are <i>not</i> listed here.",
 'doubleredirects'      => 'Double redirects',
 'doubleredirectstext'  => "Each row contains links to the first and second redirect, as well as the first line of the second redirect text, usually giving the \"real\" target page, which the first redirect should point to.",
+'doubleredirectsarrow' => ' →  ',
 'brokenredirects'      => 'Broken Redirects',
 'brokenredirectstext'  => 'The following redirects link to a non-existing pages.',
 'selflinks'            => 'Pages with Self Links',