From 183851b06bd6c52f3cae5375f433da720d410447 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 11 Oct 2006 18:12:39 +0000 Subject: MediaWiki 1.7.1 wiederhergestellt --- languages/LanguageJv.php | 115 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 languages/LanguageJv.php (limited to 'languages/LanguageJv.php') diff --git a/languages/LanguageJv.php b/languages/LanguageJv.php new file mode 100644 index 00000000..a380add8 --- /dev/null +++ b/languages/LanguageJv.php @@ -0,0 +1,115 @@ + "Standar", + ); + + private $mBookstoreListJv = array( + 'Gramedia Cyberstore (via Google)' => 'http://www.google.com/search?q=%22ISBN+:+$1%22+%22product_detail%22+site:www.gramediacyberstore.com+OR+site:www.gramediaonline.com+OR+site:www.kompas.com&hl=id', + 'Bhinneka.com bookstore' => 'http://www.bhinneka.com/Buku/Engine/search.asp?fisbn=$1', + ); + + function __construct() { + parent::__construct(); + + global $wgAllMessagesJv; + $this->mMessagesJv =& $wgAllMessagesJv; + + global $wgMetaNamespace; + $this->mNamespaceNamesJv = array( + NS_MEDIA => 'Media', + NS_SPECIAL => 'Astamiwa', + NS_MAIN => '', + NS_TALK => 'Dhiskusi', + NS_USER => 'Panganggo', + NS_USER_TALK => 'Dhiskusi_Panganggo', + NS_PROJECT => $wgMetaNamespace, + NS_PROJECT_TALK => 'Dhiskusi_' . $wgMetaNamespace, + NS_IMAGE => 'Gambar', + NS_IMAGE_TALK => 'Dhiskusi_Gambar', + NS_MEDIAWIKI => 'MediaWiki', + NS_MEDIAWIKI_TALK => 'Dhiskusi_MediaWiki', + NS_TEMPLATE => 'Cithakan', + NS_TEMPLATE_TALK => 'Dhiskusi_Cithakan', + NS_HELP => 'Pitulung', + NS_HELP_TALK => 'Dhiskusi_Pitulung', + NS_CATEGORY => 'Kategori', + NS_CATEGORY_TALK => 'Dhiskusi_Kategori' + ); + + $this->mNamespaceAlternatesJv = array( + NS_IMAGE_TALK => 'Gambar_Dhiskusi', + NS_MEDIAWIKI_TALK => 'MediaWiki_Dhiskusi', + NS_TEMPLATE_TALK => 'Cithakan_Dhiskusi', + NS_HELP_TALK => 'Pitulung_Dhiskusi', + NS_CATEGORY_TALK => 'Kategori_Dhiskusi' + ); + + } + + function getNamespaces() { + return $this->mNamespaceNamesJv + parent::getNamespaces(); + } + + function getQuickbarSettings() { + return $this->mQuickbarSettingsJv; + } + + function getSkinNames() { + return $this->mSkinNamesJv + parent::getSkinNames(); + } + + function getBookstoreList() { + return $this->mBookstoreListJv + parent::getBookstoreList(); + } + + function getMessage( $key ) { + if( isset( $this->mMessagesJv[$key] ) ) { + return $this->mMessagesJv[$key]; + } else { + return parent::getMessage( $key ); + } + } + + function getAllMessages() { + return $this->mMessagesJv; + } + + function getNsIndex( $text ) { + + foreach ( $this->getNamespaces() as $i => $n ) { + if ( 0 == strcasecmp( $n, $text ) ) { return $i; } + } + foreach ( $this->mNamespaceAlternatesJv as $i => $n ) { + if ( 0 == strcasecmp( $n, $text ) ) { return $i; } + } + + return false; + } + +} + +?> -- cgit v1.2.2