Hello guys I am fairly new to Kodi and I would like to know how to type chinese in Kodi? My movie collection is getting big so I would like to some of my movie sets to be named and searched in chinese. Currently I am using my default skin, font switched to arial based, character set switched to chinese simplified(gbk).
btw i can switch the system language to chinese and it works perfectly.
here is a screenshot of my current setting and keyboard:
https://imgur.com/a/zaMHESx
fyi im running Kodi v19.1 (Matrix) on win10
Thanks in advance!
(2021-09-26, 19:10)kai943 Wrote: [ -> ]Hello guys I am fairly new to Kodi and I would like to know how to type chinese in Kodi? My movie collection is getting big so I would like to some of my movie sets to be named and searched in chinese. Currently I am using my default skin, font switched to arial based, character set switched to chinese simplified(gbk).
btw i can switch the system language to chinese and it works perfectly.
here is a screenshot of my current setting and keyboard:
https://imgur.com/a/zaMHESx
fyi im running Kodi v19.1 (Matrix) on win10
Thanks in advance!
It looks like your issue is the same as Kodi issue #17168. That issue seemed to have not been resolved; not clear why not. I will update that issue to point to this thread.
scott s.
.
I tested the fix in Kodi v20 nightly and it now works. Baidu api is removed as it no longer works. The basic pinyin keyboard entry method now works in Windows. The same fix has since been included in the current Kodi v19 nightly, haven't tested but should be identical.
As an aside, there is probably room for some improvement for Chinese text input, but that will require users to provide a priority wish list.
For example, using pinyin to input traditional script, or using bopomofo input.
Improved language identifiers, for example adding Cantonese, Mandarin, Gan etc instead of or in addition to the macro language "Chinese" (zho).
Adding script subtag from IETF BCP 47 instead of assuming script from the region subtag (i.e. yue-Hant-HK).
scott s.
.
(2021-11-19, 21:51)scott967 Wrote: [ -> ]but that will require users to provide a priority wish list.
How to provide the wish list for bopomofo input? It's a big wish of Taiwanese for a long time to type chinese traditional words in KODI.
(2024-12-10, 08:00)BradTang Wrote: [ -> ] (2021-11-19, 21:51)scott967 Wrote: [ -> ]but that will require users to provide a priority wish list.
How to provide the wish list for bopomofo input? It's a big wish of Taiwanese for a long time to type chinese traditional words in KODI.
Took some time to investigate. The right place to ask is in "feature request" forum. But the main issue is that converting the phonetic symbols into Mandarin text is not exact. It looks like libchewing is used in Linux IME environments. I guess in theory libchewing could be incorporated into Kodi virtual keyboard. But it is kind of a development heavy lift as adding a new library dependency to Kodi requires also developing the build scripts / cmake for platforms using the Kodi "depends" system and pre-built binaries for Windows platforms. Plus the library itself is written in Rust so that's another issue to deal with.
It's going to take a dev with good knowledge of building Kodi dependencies plus the understanding of Mandarin / Hant specifics as the way that libchewing works is the symbols are entered into a buffer in an edit mode, then several options of converted characters are generated and the user switches to a second mode to select from the options.
scott s.
.