ld50 has asked for the wisdom of the Perl Monks concerning the following question:
My script works with other languages like nl (dutch) and en (english). I'm trying to get ga (Irish) to work but its not loading. i've aslo tried ga_IE
Here is the code thats giving me the trouble.
These are the modules:
------ one example of using gettext: ------use strict; use Net::Jabber qw( Client ); use Getopt::Long; use POSIX; use Net::Dict; use Locale::Messages qw (:locale_h :libintl_h); setlocale (LC_MESSAGES, "ga"); textdomain ('dictbot'); bindtextdomain ('dictbot' => "./locale");
Is there anything obvious that im missing here.$message = gettext( "commands" ) . ":\n";
Thanks,
mich
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Locale::Messages and Irish
by jdtoronto (Prior) on Dec 22, 2003 at 15:37 UTC | |
|
Re: Locale::Messages and Irish
by Anonymous Monk on Dec 22, 2003 at 15:32 UTC | |
|
Re: Locale::Messages and Irish
by ld50 (Initiate) on Dec 23, 2003 at 03:29 UTC | |
by castaway (Parson) on Dec 23, 2003 at 12:17 UTC |