Re: [cssed-devel] Internationalization in cssed
Brought to you by:
iagorubio
From: Iago R. <iag...@hi...> - 2004-09-27 11:37:39
|
On Mon, 2004-09-27 at 10:57, Mich=C3=A8le Garoche wrote: > The problem remains that I cannot save a file under a korean name for=20 > example from within cssed, because the save dialog falls under my=20 > system language. Maybe it's possible on other systems or if I switch=20 > completely to korean system language, but then I'm unable to do=20 > anything since I don't understand anything :-). Yes you need a Korean environment, but no need to change the whole system environment just to change it in the console you're running the app, or better. use a script to set up the environment and then launch the app. I use this script to test japanese input in cssed: #!/bin/bash export LC_ALL=3Dja_JP export LANG=3Dja_JP.utf8 export XMODIFIERS=3D'@im=3Dkinput2' kinput2 -canna & cssed & What I don't know is how it works your - built-in - input method. I can tell you how to set up an environment to use Japanese or Korean in your system, but I supose it'll be useless for you, won't it ?=20 :) --=20 Iago Rubio =20 - Home page * http://www.iagorubio.com=20 - Last project * http://cssed.sourceforge.net =20 - GPG Keyserv * pgp.rediris.es id=3D0x909BD4DD |