This commit fixes PInyin generation where Pinyin containing "v"s gets incorrectly converted to "u:". An example of such a conversion is UV being converted into "uu:". This commit also generates Jyutping for CEDICT-style entries using pinyin_jyutping_sentence and pycantonese.
Closes #148.
Type of change
[x] Bug fix (non-breaking change which fixes an issue)
Checklist:
[x] My code follows the style guidelines of this project (black for Python
code, .clang-format in the src/jyut-dict directory for C++)
[x] I have performed a self-review of my own code
[x] I have commented my code, particularly in hard-to-understand areas
[x] I have translated my user-facing strings to all currently-supported languages
[x] I have made corresponding changes to the documentation
Description
This commit fixes PInyin generation where Pinyin containing "v"s gets incorrectly converted to "u:". An example of such a conversion is UV being converted into "uu:". This commit also generates Jyutping for CEDICT-style entries using
pinyin_jyutping_sentence
andpycantonese
.Closes #148.
Type of change
Checklist:
black
for Python code,.clang-format
in thesrc/jyut-dict
directory for C++)