Last modified: 2006-06-26 13:57:22 UTC

Wikimedia Bugzilla is closed!

Wikimedia migrated from Bugzilla to Phabricator. Bug reports are handled in Wikimedia Phabricator.
This static website is read-only and for historical purposes. It is not possible to log in and except for displaying bug reports and their history, links might be broken. See T8445, the corresponding Phabricator task for complete and up-to-date bug report information.
Bug 6445 - Namespaces and grammar function for rmy.wp
Namespaces and grammar function for rmy.wp
Status: RESOLVED DUPLICATE of bug 6444
Product: Wikimedia
Classification: Unclassified
Language setup (Other open bugs)
unspecified
PC Windows XP
: Normal normal (vote)
: ---
Assigned To: Nobody - You can work on this!
http://rmy.wikipedia.org
:
Depends on:
Blocks:
  Show dependency treegraph
 
Reported: 2006-06-26 13:53 UTC by Dosoftei Alin
Modified: 2006-06-26 13:57 UTC (History)
0 users

See Also:
Web browser: ---
Mobile Platform: ---
Assignee Huggle Beta Tester: ---


Attachments

Description Dosoftei Alin 2006-06-26 13:53:09 UTC
Hi!

Here are the namespaces in Romani for Romani Wikipedia:

<pre>
		global $wgMetaNamespace;
		$this->mNamespaceNamesRmy = array(
			NS_MEDIA          => 'Mediya',
			NS_SPECIAL        => 'Uzalutno',
			NS_MAIN           => '',
			NS_TALK           => 'Vakyarimata',
			NS_USER           => 'Jeno',
			NS_USER_TALK      => 'Jeno_vakyarimata',
			NS_PROJECT        => $wgMetaNamespace,
			NS_PROJECT_TALK   => 'Projekto_'.$wgMetaNamespace,
			NS_IMAGE          => 'Chitro',
			NS_IMAGE_TALK     => 'Chitro_vakyarimata',
			NS_MEDIAWIKI      => 'MediyaViki',
			NS_MEDIAWIKI_TALK => 'MediyaViki_vakyarimata',
			NS_TEMPLATE       => 'Sikavno',
			NS_TEMPLATE_TALK  => 'Sikavno_vakyarimata',
			NS_HELP           => 'Zhutipen',
			NS_HELP_TALK      => 'Zhutipen_vakyarimata',
			NS_CATEGORY       => 'Kategoriya',
			NS_CATEGORY_TALK  => 'Kategoriya_vakyarimata'
		);
</pre>

and also the Grammar function:

<pre>
	# Convert from the nominative form of a noun to the oblique case with postpositions
	# Invoked with {{GRAMMAR:case|word}}
	/**
	 * Cases: nominative, genitive-m-sg, genitive-f-sg, dative, locative, ablative,
instrumental
	 */
	function convertGrammar( $word, $case ) {
		global $wgGrammarForms;
		if ( isset($wgGrammarForms['sl'][$case][$word]) ) {
			return $wgGrammarForms['sl'][$case][$word];
		}

		switch ( $case ) {
			case 'genitive-m-sg': # genitive (m.sg.)
				if ( $word == 'Vikipidiya' ) {
					$word = 'Vikipidiyako';
				}
			break;
			case 'genitive-f-sg': # genitive (f.sg.)
				if ( $word == 'Vikipidiya' ) {
					$word = 'Vikipidiyaki';
				}
			break;
			case 'dativ':
				if ( $word == 'Vikipidiyake' ) {
					$word = 'Wikipediji';
				}
			break;
			case 'locative':
				if ( $word == 'Vikipidiyate' ) {
					$word = 'Wikipedijo';
				}
			break;
			case 'ablative':
				if ( $word == 'Vikipidiyatar' ) {
					$word = 'o Wikipediji';
				}
			break;
			case 'instrumental':
				if ( $word == 'Vikipidiyasa' ) {
					$word = 'z Wikipedijo';
				}
			break;
		}

		return $word; # this will return the original value for 'nominative' and all
undefined case values
	}
</pre>

Thank you,
Desiphral
Comment 1 Rob Church 2006-06-26 13:57:22 UTC

*** This bug has been marked as a duplicate of 6444 ***

Note You need to log in before you can comment on or make changes to this bug.


Navigation
Links