* (bug 5644) Error in LanguageBs.php file
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Tue, 18 Apr 2006 20:20:20 +0000 (20:20 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Tue, 18 Apr 2006 20:20:20 +0000 (20:20 +0000)
RELEASE-NOTES
languages/LanguageBs.php

index 7916fcd..8948fac 100644 (file)
@@ -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 ==
 
index 0ceb8fd..4966fb1 100644 (file)
@@ -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' ) );
     }