ro.js 214 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 MessageFormat.locale.ro = function (n) { if (n == 1) { return 'one'; } if (n === 0 || n != 1 && (n % 100) >= 1 && (n % 100) <= 19 && n == Math.floor(n)) { return 'few'; } return 'other'; };