From 23b78c09be564222568dde9c29ade4826b020155 Mon Sep 17 00:00:00 2001 From: Jimmy Collins Date: Sat, 15 Jul 2006 08:51:34 +0000 Subject: [PATCH] * (bug 6680) Added localisation for Dutch bookstore list (nl) --- RELEASE-NOTES | 1 + languages/LanguageNl.php | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 588c692f3d..a056e88874 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -66,6 +66,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN not exist; now doesn't show the source box if the user hasn't provided it (blocked mid-edit) and the page doesn't exist * Improve default value of "blockedtext" +* (bug 6680) Added localisation for Dutch bookstore list (nl) == Languages updated == diff --git a/languages/LanguageNl.php b/languages/LanguageNl.php index a7d59c2d3c..58634463f9 100644 --- a/languages/LanguageNl.php +++ b/languages/LanguageNl.php @@ -24,6 +24,10 @@ class LanguageNl extends LanguageUtf8 { 'cologneblue' => 'Keuls blauw', ); + private $mBookstoreListNl = array( + 'Koninklijke Bibliotheek' => 'http://opc4.kb.nl/DB=1/SET=5/TTL=1/CMD?ACT=SRCH&IKT=1007&SRT=RLV&TRM=$1' + ); + function __construct() { parent::__construct(); @@ -53,6 +57,10 @@ class LanguageNl extends LanguageUtf8 { ); } + function getBookstoreList () { + return $this->mBookstoreListNl; + } + function getNamespaces() { return $this->mNamespaceNamesNl + parent::getNamespaces(); } -- 2.20.1