1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.ca = ca;
- const locale_js_1 = require("../locale.js");
- const locale_util_js_1 = require("../locale_util.js");
- const numbers_ca_js_1 = require("../numbers/numbers_ca.js");
- const transformers_js_1 = require("../transformers.js");
- 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;
- }
- function create() {
- const loc = (0, locale_js_1.createLocale)();
- loc.NUMBERS = numbers_ca_js_1.NUMBERS;
- loc.COMBINERS['sansserif'] = sansserifCombiner;
- loc.FUNCTIONS.fracNestDepth = (_node) => false;
- loc.FUNCTIONS.combineRootIndex = locale_util_js_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_js_1.Combiners.prefixCombiner;
- return loc;
- }
|