repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Update migrateUserGroup to deal with primary key issue
[mediawiki.git]
/
resources
/
mediawiki.language
/
languages
/
wa.js
blob
e1773759f1687cca63eadb64c22253d9b58853d1
1
/**
2
* Walloon (Walon) language functions
3
*/
4
5
mediaWiki.language.convertPlural = function( count, forms ) {
6
forms = mediaWiki.language.preConvertPlural( forms, 2 );
7
return ( count <= 1 ) ? forms[0] : forms[1];
8
};