7 lines
105 B
JavaScript
7 lines
105 B
JavaScript
|
MessageFormat.locale.fi = function ( n ) {
|
||
|
if ( n === 1 ) {
|
||
|
return "one";
|
||
|
}
|
||
|
return "other";
|
||
|
};
|