* (bug 6680) Added localisation for Dutch bookstore list (nl)
authorJimmy Collins <collinj@users.mediawiki.org>
Sat, 15 Jul 2006 08:51:34 +0000 (08:51 +0000)
committerJimmy Collins <collinj@users.mediawiki.org>
Sat, 15 Jul 2006 08:51:34 +0000 (08:51 +0000)
RELEASE-NOTES
languages/LanguageNl.php

index 588c692..a056e88 100644 (file)
@@ -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 ==
 
index a7d59c2..5863446 100644 (file)
@@ -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();
        }