From 545c9901b653dad4ea6ab35f3c71630b353ff3c0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Niklas=20Laxstr=C3=B6m?= Date: Tue, 18 Apr 2006 20:20:20 +0000 Subject: [PATCH] * (bug 5644) Error in LanguageBs.php file --- RELEASE-NOTES | 1 + languages/LanguageBs.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 7916fcd1da..8948fac9ba 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -101,6 +101,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 5640) Indonesian localisation improvements * (bug 5592) Actions are logged with the default language for the wiki, not the language of the user performing the operation. +* (bug 5644) Error in LanguageBs.php file == Compatibility == diff --git a/languages/LanguageBs.php b/languages/LanguageBs.php index 0ceb8fda51..4966fb1b19 100644 --- a/languages/LanguageBs.php +++ b/languages/LanguageBs.php @@ -15,7 +15,7 @@ require_once( "LanguageUtf8.php" ); NS_USER => "Korisnik", NS_USER_TALK => "Razgovor_sa_korisnikom", NS_PROJECT => $wgMetaNamespace, - NS_PROJECT_TALK => ($wgMetaNamespaceTalk ? $wgMetaNamespaceTalk : "Razgovor_o_".$wgMetaNamespace ), + NS_PROJECT_TALK => FALSE, # Set in constructor NS_IMAGE => "Slika", NS_IMAGE_TALK => "Razgovor_o_slici", NS_MEDIAWIKI => "MedijaViki", @@ -127,7 +127,7 @@ class LanguageBs extends LanguageUtf8 { function LanguageBs() { global $wgNamespaceNamesBs, $wgMetaNamespace; LanguageUtf8::LanguageUtf8(); - $wgNamespaceNamesBs[NS_PROJECT_TALK] = 'Razgovor_o_' . + $wgNamespaceNamesBs[NS_PROJECT_TALK] = 'Razgovor_' . str_replace( ' ', '_', $this->convertGrammar( $wgMetaNamespace, 'instrumental' ) ); } -- 2.20.1