Can I modify the Pandora's UI so that the text is in French/Spanish/Klingon/etc?
The answer to both questions is "yes, if you know how" (it's open source, so anything's possible) - although the "simple" GUI is already a port of a GP2X app, so you wouldn't be gaining much! (I have no idea if you'd be able to run the Matchbox based UI - that's mostly down to the specs of the device and how intensive the code is)
If you were asking the 2nd question, you're in the wrong forum
Generally speaking, you would provide translations per application. One of the standard ways of doing string translation (where string is an array of characters) on Linux is through gettext, i.e. .mo and .po files. Most standard linux utilities and programs should already have localization support (but might need to be rebuilt to include different translations). For programs written exclusively for the Pandora you might have to ask the developers whether gettext is used and what the steps to providing translations might be. For a quick overview, see Internationalisation & Localisation. There is a wealth of information out there though
To give a trivial example of translating program names on the desktop: Suppose you have a window manager that has a desktop (like matchbox, I think). Now, to display different programs as names and icons, you have .desktop files, in which you would see lines like:
CODE
Name=Trash
Name[sv]=Papperskorg
Simply add Name[<standard language abbreviation>]= to have it displayed in your favourite language.
Also see the Gentoo Linux Localization Guide, it has quite a good explanation for generating locales for glibc (amongst others).
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.