diff options
author | Ævar Arnfjörð Bjarmason <avar@users.mediawiki.org> | 2005-04-17 20:57:27 +0000 |
---|---|---|
committer | Ævar Arnfjörð Bjarmason <avar@users.mediawiki.org> | 2005-04-17 20:57:27 +0000 |
commit | c42ca03d84eec5c1986d96600dfdb022570141c4 (patch) | |
tree | ea34643f451dde3f82cd8678798949dece2923b0 /languages | |
parent | 607959802d464f3974bd7524489ddaefd9343637 (diff) | |
download | mediawikicore-c42ca03d84eec5c1986d96600dfdb022570141c4.tar.gz mediawikicore-c42ca03d84eec5c1986d96600dfdb022570141c4.zip |
* Cleanup.
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/8421
Diffstat (limited to 'languages')
-rw-r--r-- | languages/LanguagePl.php | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/languages/LanguagePl.php b/languages/LanguagePl.php index a4e42ca986cb..367d55d537df 100644 --- a/languages/LanguagePl.php +++ b/languages/LanguagePl.php @@ -52,27 +52,6 @@ default: "Brak", "Stały, z lewej", "Stały, z prawej", "Unoszący się, z lewej" ); -/* private */ $wgSkinNamesPl = array( - 'standard' => "Standard", - 'nostalgia' => "Nostalgia", - 'cologneblue' => "Cologne Blue", - 'smarty' => "Paddington", - 'montparnasse' => "Montparnasse", - 'davinci' => "DaVinci", - 'mono' => "Mono", - 'monobook' => "MonoBook", - "myskin" => "MySkin" -); - - - -/* private */ $wgBookstoreListPl = array( - "AddALL" => "http://www.addall.com/New/Partner.cgi?query=$1&type=ISBN", - "PriceSCAN" => "http://www.pricescan.com/books/bookDetail.asp?isbn=$1", - "Barnes & Noble" => "http://shop.barnesandnoble.com/bookSearch/isbnInquiry.asp?isbn=$1", - "Amazon.com" => "http://www.amazon.com/exec/obidos/ISBN=$1" -); - # All special pages have to be listed here: a description of "" # will make them not show up on the "Special Pages" page, which # is the right thing for some of them (such as the "targeted" ones). @@ -1075,11 +1054,6 @@ class LanguagePl extends LanguageUtf8 { return $wgQuickbarSettingsPl; } - function getSkinNames() { - global $wgSkinNamesPl; - return $wgSkinNamesPl; - } - function getMonthNameGen( $key ) { global $wgMonthNamesGenEn; return wfMsg( $wgMonthNamesGenEn[$key-1] ); @@ -1114,7 +1088,7 @@ class LanguagePl extends LanguageUtf8 { if(array_key_exists($key, $wgAllMessagesPl)) return $wgAllMessagesPl[$key]; else - return Language::getMessage($key); + return parent::getMessage($key); } # Check for Latin-2 backwards-compatibility URLs |