stuff
This commit is contained in:
parent
bc92231240
commit
b8225c639e
11904 changed files with 1472749 additions and 133 deletions
24
node_modules/speech-rule-engine/mjs/l10n/locales/locale_nn.js
generated
vendored
Normal file
24
node_modules/speech-rule-engine/mjs/l10n/locales/locale_nn.js
generated
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import { createLocale } from '../locale.js';
|
||||
import { nestingToString } from '../locale_util.js';
|
||||
import { NUMBERS } from '../numbers/numbers_nn.js';
|
||||
import * as tr from '../transformers.js';
|
||||
let locale = null;
|
||||
export function nn() {
|
||||
if (!locale) {
|
||||
locale = create();
|
||||
}
|
||||
return locale;
|
||||
}
|
||||
function create() {
|
||||
const loc = createLocale();
|
||||
loc.NUMBERS = NUMBERS;
|
||||
loc.ALPHABETS.combiner = tr.Combiners.prefixCombiner;
|
||||
loc.ALPHABETS.digitTrans.default = NUMBERS.numberToWords;
|
||||
loc.FUNCTIONS.radicalNestDepth = nestingToString;
|
||||
loc.SUBISO = {
|
||||
default: '',
|
||||
current: '',
|
||||
all: ['', 'alt']
|
||||
};
|
||||
return loc;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue