humanity-deno
Version:
Humanity is a library for humanizing data in a human-readable form.
65 lines (64 loc) • 1.51 kB
JavaScript
;
/**
* Locales defaults
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.de_DE = exports.en_US = exports.ru_RU = void 0;
exports.ru_RU = {
locale: "ru_RU",
useDeclination: true,
useCountZerosAfterFirstDigit: true,
separator: ",",
declinations: {
plural: "ов",
pluar_singular: "а",
singular: "",
},
words: {
and: "и",
others: "других",
},
numbers: {
thousand: "тысяч",
million: "миллион",
billion: "миллиард",
trillion: "триллион",
quadrillion: "квадриллион",
quintillion: "квинтиллион",
sexillion: "сиксилион",
},
};
exports.en_US = {
locale: "en_US",
separator: ",",
words: {
and: "and",
others: "others",
},
numbers: {
thousand: "thousand",
million: "million",
billion: "billion",
trillion: "trillion",
quadrillion: "quadrillion",
quintillion: "quintillion",
sexillion: "sextillion",
},
};
exports.de_DE = {
locale: "de_DE",
separator: ",",
words: {
and: "und",
others: "andere",
},
numbers: {
thousand: "tausend",
million: "million",
billion: "milliarde",
trillion: "billion",
quadrillion: "quadrilliarde",
quintillion: "quintillion",
sexillion: "sextillion",
},
};