diff options
author | Cashew <52880648+cashewnuttynuts@users.noreply.github.com> | 2024-06-24 18:38:39 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-24 11:38:39 +0000 |
commit | b584c5440721fa7399564ced57f134fd5333d20c (patch) | |
tree | 4ea760c9232b4e8d2ab9c0b60bf07f7ed3bad1ef /ext/js/language/language-descriptors.js | |
parent | 8f32410f34b2c839105eb508da9b9e63f6a89194 (diff) |
add cn reading processors (#1120)
* add cn reading processors
* remove meow
* fix lint
* add cn reading processors
* remove meow
* fix lint
* wip
* update names
* update test
* remove vestigial code
Diffstat (limited to 'ext/js/language/language-descriptors.js')
-rw-r--r-- | ext/js/language/language-descriptors.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/js/language/language-descriptors.js b/ext/js/language/language-descriptors.js index 517c908c..7965ff30 100644 --- a/ext/js/language/language-descriptors.js +++ b/ext/js/language/language-descriptors.js @@ -38,7 +38,7 @@ import {removeSerboCroatianAccentMarks} from './sh/serbo-croatian-text-preproces import {albanianTransforms} from './sq/albanian-transforms.js'; import {normalizeDiacritics} from './vi/viet-text-preprocessors.js'; import {capitalizeFirstLetter, decapitalize, removeAlphabeticDiacritics} from './text-processors.js'; -import {isStringPartiallyChinese} from './zh/chinese.js'; +import {normalizePinyin, isStringPartiallyChinese} from './zh/chinese.js'; const capitalizationPreprocessors = { decapitalize, @@ -277,6 +277,7 @@ const languageDescriptors = [ name: 'Chinese', exampleText: '读', isTextLookupWorthy: isStringPartiallyChinese, + readingNormalizer: normalizePinyin, }, ]; |