Hi,
I write modules for the german language.
At the moment, I simply tell perl at the beginning
use locale;
That run's because my Linux is a german one.
At a french one i would'nt run any longer.
A better way could be (from the Cookbook)
use locale;
use POSIX 'locale_h';
setlocale(LC_TYPE, 'de_DE.ISO_8859-1');
But in the Cookbook, there is written, too,
that the locale names (like 'de_DE.ISO_8859-1') isn't a standard.
So, I'm afraid that my module wouldn't run on an
evil Windows System or a Solaris, or so.
Knows anybody, how I can set a local setting inpedentent of the user
OS-System ?
Thanks in Regard,
Andrea
PS: There should be a way,
even Java is able to to this very simple.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]