MediaWiki  1.23.15
LanguageBs.php
Go to the documentation of this file.
1 <?php
29 class LanguageBs extends Language {
30 
42  function convertGrammar( $word, $case ) {
43  global $wgGrammarForms;
44  if ( isset( $wgGrammarForms['bs'][$case][$word] ) ) {
45  return $wgGrammarForms['bs'][$case][$word];
46  }
47  switch ( $case ) {
48  case 'instrumental': # instrumental
49  $word = 's ' . $word;
50  break;
51  case 'lokativ': # locative
52  $word = 'o ' . $word;
53  break;
54  }
55 
56  return $word; # this will return the original value for 'nominativ' (nominative) and all undefined case values
57  }
58 }
php
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
Definition: skin.txt:62
LanguageBs
Bosnian (bosanski)
Definition: LanguageBs.php:29
LanguageBs\convertGrammar
convertGrammar( $word, $case)
Convert from the nominative form of a noun to some other case Invoked with {{GRAMMAR:case|word}}.
Definition: LanguageBs.php:42
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
will
</td >< td > &</td >< td > t want your writing to be edited mercilessly and redistributed at will
Definition: All_system_messages.txt:914
values
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible values
Definition: hooks.txt:177
Language
Internationalisation code.
Definition: Language.php:74