stuff
This commit is contained in:
parent
bc92231240
commit
b8225c639e
11904 changed files with 1472749 additions and 133 deletions
91
node_modules/speech-rule-engine/js/l10n/numbers/numbers_ca.js
generated
vendored
Normal file
91
node_modules/speech-rule-engine/js/l10n/numbers/numbers_ca.js
generated
vendored
Normal file
|
|
@ -0,0 +1,91 @@
|
|||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.NUMBERS = void 0;
|
||||
const grammar_js_1 = require("../../rule_engine/grammar.js");
|
||||
const messages_js_1 = require("../messages.js");
|
||||
function tensToWords_(num) {
|
||||
const n = num % 100;
|
||||
if (n < 20) {
|
||||
return exports.NUMBERS.ones[n];
|
||||
}
|
||||
const ten = Math.floor(n / 10);
|
||||
const tens = exports.NUMBERS.tens[ten];
|
||||
const ones = exports.NUMBERS.ones[n % 10];
|
||||
return tens && ones ? tens + (ten === 2 ? '-i-' : '-') + ones : tens || ones;
|
||||
}
|
||||
function hundredsToWords_(num) {
|
||||
const n = num % 1000;
|
||||
const hundred = Math.floor(n / 100);
|
||||
const hundreds = hundred
|
||||
? hundred === 1
|
||||
? 'cent'
|
||||
: exports.NUMBERS.ones[hundred] + '-cents'
|
||||
: '';
|
||||
const tens = tensToWords_(n % 100);
|
||||
return hundreds && tens ? hundreds + exports.NUMBERS.numSep + tens : hundreds || tens;
|
||||
}
|
||||
function numberToWords(num) {
|
||||
if (num === 0) {
|
||||
return exports.NUMBERS.zero;
|
||||
}
|
||||
if (num >= Math.pow(10, 36)) {
|
||||
return num.toString();
|
||||
}
|
||||
let pos = 0;
|
||||
let str = '';
|
||||
while (num > 0) {
|
||||
const hundreds = num % (pos > 1 ? 1000000 : 1000);
|
||||
if (hundreds) {
|
||||
let large = exports.NUMBERS.large[pos];
|
||||
if (!pos) {
|
||||
str = hundredsToWords_(hundreds);
|
||||
}
|
||||
else if (pos === 1) {
|
||||
str =
|
||||
(hundreds === 1 ? '' : hundredsToWords_(hundreds) + exports.NUMBERS.numSep) +
|
||||
large +
|
||||
(str ? exports.NUMBERS.numSep + str : '');
|
||||
}
|
||||
else {
|
||||
const thousands = numberToWords(hundreds);
|
||||
large = hundreds === 1 ? large : large.replace(/\u00f3$/, 'ons');
|
||||
str =
|
||||
thousands +
|
||||
exports.NUMBERS.numSep +
|
||||
large +
|
||||
(str ? exports.NUMBERS.numSep + str : '');
|
||||
}
|
||||
}
|
||||
num = Math.floor(num / (pos > 1 ? 1000000 : 1000));
|
||||
pos++;
|
||||
}
|
||||
return str;
|
||||
}
|
||||
function numberToOrdinal(num, _plural) {
|
||||
if (num > 1999) {
|
||||
return numericOrdinal(num);
|
||||
}
|
||||
if (num <= 10) {
|
||||
return exports.NUMBERS.special.onesOrdinals[num - 1];
|
||||
}
|
||||
const result = numberToWords(num);
|
||||
if (result.match(/mil$/)) {
|
||||
return result.replace(/mil$/, 'mil·lèsima');
|
||||
}
|
||||
if (result.match(/u$/)) {
|
||||
return result.replace(/u$/, 'vena');
|
||||
}
|
||||
if (result.match(/a$/)) {
|
||||
return result.replace(/a$/, 'ena');
|
||||
}
|
||||
return result + (result.match(/e$/) ? 'na' : 'ena');
|
||||
}
|
||||
function numericOrdinal(num) {
|
||||
const gender = grammar_js_1.Grammar.getInstance().getParameter('gender');
|
||||
return num.toString() + (gender === 'f' ? 'a' : 'n');
|
||||
}
|
||||
exports.NUMBERS = (0, messages_js_1.NUMBERS)({
|
||||
numericOrdinal: numericOrdinal,
|
||||
numberToWords: numberToWords,
|
||||
numberToOrdinal: numberToOrdinal
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue