From: Niklas Laxström Date: Tue, 18 Apr 2006 20:20:20 +0000 (+0000) Subject: * (bug 5644) Error in LanguageBs.php file X-Git-Tag: 1.31.0-rc.0~57430 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=545c9901b653dad4ea6ab35f3c71630b353ff3c0;p=lhc%2Fweb%2Fwiklou.git * (bug 5644) Error in LanguageBs.php file --- 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' ) ); }