Localization in packages #18297
-
Is it possible to compile packages with localization support? Or is this not possible due to the limitations of the Termux application? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Termux environment itself has very limited support for locales, mostly because it uses Android libc (Bionic) rather than GNU libc which has full-fledged for them. We have some stubs providing functionality necessary to compile locale-depending programs without issues:
These of course do not add multi-language support. Another reason that Termux app and all docs (e.g. Termux Wiki) are English-only and we can't provide translations with proper quality. Localization task has the lowest priority for us, if we'll ever would work on it. If someone wants to solve this, it would be required to work on both parts of Termux (application + package) as well as maintaining localization further to keep everything in sync. |
Beta Was this translation helpful? Give feedback.
Termux environment itself has very limited support for locales, mostly because it uses Android libc (Bionic) rather than GNU libc which has full-fledged for them.
We have some stubs providing functionality necessary to compile locale-depending programs without issues:
These of course do not add multi-language support.
Another reason that Termux app and all docs (e.g. Termux Wiki) are English-only and we can't provide translations with proper quality.
Localization task h…