From: Niklas Laxström Date: Wed, 26 Oct 2005 12:22:30 +0000 (+0000) Subject: * (bug 3798) DoubleRedirects no longer has hard coded arrows X-Git-Tag: 1.6.0~1305 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=04355a8c91b6d8f42a1cfbd779eb8d43926cb1b4;p=lhc%2Fweb%2Fwiklou.git * (bug 3798) DoubleRedirects no longer has hard coded arrows --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index f4ae976fe8..2cc8e166f6 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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 === diff --git a/includes/SpecialDoubleRedirects.php b/includes/SpecialDoubleRedirects.php index 3169844610..d84b59ea76 100644 --- a/includes/SpecialDoubleRedirects.php +++ b/includes/SpecialDoubleRedirects.php @@ -91,7 +91,8 @@ class DoubleRedirectsPage extends PageQueryPage { $linkB = $skin->makeKnownLinkObj( $titleB, '', 'redirect=no' ); $linkC = $skin->makeKnownLinkObj( $titleC ); - return "$linkA $edit → $linkB → $linkC"; + return "$linkA $edit" . wfMsgHtml( 'doubleredirectsarrow' ) + . $linkB . wfMsgHtml( 'doubleredirectsarrow' ) . $linkC; } } diff --git a/languages/Language.php b/languages/Language.php index 11d8dcb135..efeba091ee 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -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 disambiguation page. They should link to the appropriate topic instead.
A page is treated as disambiguation if it is linked from $1.
Links from other namespaces are not 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',