repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Make API action=tokens extendable
[mediawiki.git]
/
resources
/
mediawiki.language
/
languages
/
nso.js
blob
30cf1892e7593811d166f1b24a6e0730d0ea62b5
1
/**
2
* Northern Sotho (Sesotho sa Leboa) 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
};