73 lines
2.3 KiB
JavaScript
73 lines
2.3 KiB
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.ca = void 0;
|
||
|
const locale_1 = require("../locale");
|
||
|
const locale_util_1 = require("../locale_util");
|
||
|
const numbers_ca_1 = require("../numbers/numbers_ca");
|
||
|
const transformers_1 = require("../transformers");
|
||
|
const sansserifCombiner = function (letter, font, cap) {
|
||
|
letter = 'sans serif ' + (cap ? cap + ' ' + letter : letter);
|
||
|
return font ? letter + ' ' + font : letter;
|
||
|
};
|
||
|
let locale = null;
|
||
|
function ca() {
|
||
|
if (!locale) {
|
||
|
locale = create();
|
||
|
}
|
||
|
return locale;
|
||
|
}
|
||
|
exports.ca = ca;
|
||
|
function create() {
|
||
|
const loc = (0, locale_1.createLocale)();
|
||
|
loc.NUMBERS = numbers_ca_1.default;
|
||
|
loc.COMBINERS['sansserif'] = sansserifCombiner;
|
||
|
loc.FUNCTIONS.fracNestDepth = (_node) => false;
|
||
|
(loc.FUNCTIONS.combineRootIndex = locale_util_1.combinePostfixIndex),
|
||
|
(loc.FUNCTIONS.combineNestedRadical = (a, _b, c) => a + c);
|
||
|
loc.FUNCTIONS.fontRegexp = (font) => RegExp('^' + font + ' ');
|
||
|
(loc.FUNCTIONS.plural = (unit) => {
|
||
|
if (/.*os$/.test(unit)) {
|
||
|
return unit + 'sos';
|
||
|
}
|
||
|
if (/.*s$/.test(unit)) {
|
||
|
return unit + 'os';
|
||
|
}
|
||
|
if (/.*ga$/.test(unit)) {
|
||
|
return unit.slice(0, -2) + 'gues';
|
||
|
}
|
||
|
if (/.*ça$/.test(unit)) {
|
||
|
return unit.slice(0, -2) + 'ces';
|
||
|
}
|
||
|
if (/.*ca$/.test(unit)) {
|
||
|
return unit.slice(0, -2) + 'ques';
|
||
|
}
|
||
|
if (/.*ja$/.test(unit)) {
|
||
|
return unit.slice(0, -2) + 'ges';
|
||
|
}
|
||
|
if (/.*qua$/.test(unit)) {
|
||
|
return unit.slice(0, -3) + 'qües';
|
||
|
}
|
||
|
if (/.*a$/.test(unit)) {
|
||
|
return unit.slice(0, -1) + 'es';
|
||
|
}
|
||
|
if (/.*(e|i)$/.test(unit)) {
|
||
|
return unit + 'ns';
|
||
|
}
|
||
|
if (/.*í$/.test(unit)) {
|
||
|
return unit.slice(0, -1) + 'ins';
|
||
|
}
|
||
|
return unit + 's';
|
||
|
}),
|
||
|
(loc.FUNCTIONS.si = (prefix, unit) => {
|
||
|
if (unit.match(/^metre/)) {
|
||
|
prefix = prefix
|
||
|
.replace(/a$/, 'à')
|
||
|
.replace(/o$/, 'ò')
|
||
|
.replace(/i$/, 'í');
|
||
|
}
|
||
|
return prefix + unit;
|
||
|
});
|
||
|
loc.ALPHABETS.combiner = transformers_1.Combiners.prefixCombiner;
|
||
|
return loc;
|
||
|
}
|