Hello,
Sorry for asking, but anyone knows how to add japanese language package to imx yocto build?
I want to try to type and also read my qt apps which is in japanese language, but it shows me [][] (sth like box)
Thank you in advance
Hello @astel_
I hope you are doing well.
The boxes ([]) you're seeing indicate missing fonts. You need to add a font package that supports Japanese characters.
You can try to add to the local.conf:
IMAGE_INSTALL_append = " noto-cjk ttf-droid"
Noto CJK fonts provide good coverage for Japanese.
IMAGE_INSTALL_append = " fcitx fcitx-mozc"
IMAGE_INSTALL_append = " ibus ibus-anthy"IMAGE_LINGUAS_append = " ja_JP"
IMAGE_INSTALL_append = " glibc-localedata-ja-jp"
Please try it.
Best regards,
Salas.