Sha256: e467ef0b6f2e261d83a981494ac551ddd95570cb5dc3722a0afca8a12d270b16
Contents?: true
Size: 976 Bytes
Versions: 16
Compression:
Stored size: 976 Bytes
Contents
/*! * numeral.js language configuration * language : russian (ru) * author : Anatoli Papirovski : https://github.com/apapirovski */ (function () { var language = { delimiters: { thousands: ' ', decimal: ',' }, abbreviations: { thousand: 'тыс.', million: 'млн', billion: 'b', trillion: 't' }, ordinal: function () { // not ideal, but since in Russian it can taken on // different forms (masculine, feminine, neuter) // this is all we can do return '.'; }, currency: { symbol: 'руб.' } }; // Node if (typeof module !== 'undefined' && module.exports) { module.exports = language; } // Browser if (typeof window !== 'undefined' && this.numeral && this.numeral.language) { this.numeral.language('ru', language); } }());
Version data entries
16 entries across 16 versions & 1 rubygems