in reply to Localisation and Locale::Maketext

I have no experience with Locale::Maketext, but have had good luck using the following:
use encoding 'utf8'; use POSIX qw/locale_h/; use Locale::gettext; textdomain('program-name'); setlocale( LC_MESSAGES, '' ); bind_textdomain_codeset( 'program-name', 'UTF-8' );
Hope this helps.

Replies are listed 'Best First'.
Re^2: Localisation and Locale::Maketext
by phenom (Chaplain) on Dec 22, 2009 at 16:29 UTC
    Geez, downvoted! That's what I get for not posting in awhile, I guess.