>>>>> "Claus" == Claus Hentschel <[EMAIL PROTECTED]> writes:
Claus> ===> 1) One problem is that although I have set LANG=de_DE the
Claus> german menus will not open! BUT: Passing -dbg 32 shows that
Claus> de_menus.bind will be loaded. So I am working with default
Claus> english menus but have to use the german shortcuts!?!?! What
Claus> has been changed in the code that language support does not
Claus> function as before?
Do you use the very latest po files from Pit Sutterlin? The menu code
has completely changed, so all the menu translations had to be redone.
Also, the german shortcuts of de_menus.bind are now _only_ those which
are not in the menus!
Claus> This results in an compilation error (no valid signature
Claus> found!) I have changed the call into: if
Claus> (dos_path.compare("//",0,2) != 0)
This looks fine. You also can use
if (prefixIs(dos_path, "//") ...
prefixIs() is defined in lstrings.h.
Claus> ===> 3) Am I right, that only in src/frontends there are GUI
Claus> dependent sources now!?!? So it might be possible to create
Claus> another subdir (i.e. 'win32') and to try to write code which
Claus> does the same as the xforms/kde/.. stuff beside? [I don't have
Claus> written, that I will do so NOW ;-)]
There is still a lot of GUI dependent and X11 dependent things in
src/. We are slowly moving them out of the way.
JMarc