mirror of
https://github.com/discourse/discourse.git
synced 2025-02-20 11:48:26 -06:00
7 lines
110 B
JavaScript
7 lines
110 B
JavaScript
|
MessageFormat.locale.tl = function(n) {
|
||
|
if (n === 0 || n == 1) {
|
||
|
return 'one';
|
||
|
}
|
||
|
return 'other';
|
||
|
};
|