Log::Report::Translator::Gettext - the GNU gettext infrastructure


NAME

Log::Report::Translator::Gettext - the GNU gettext infrastructure


INHERITANCE

 Log::Report::Translator::Gettext
   is a Log::Report::Translator


SYNOPSIS

 # normal use (end-users view)
 use Log::Report 'my-domain'
   , translator => Log::Report::Translator::Gettext->new;
 print __"Hello World\n";  # language determined by environment
 # internal use
 my $msg = Log::Report::Message->new
   ( _msgid      => "Hello World\n"
   , _textdomain => 'my-domain'
   );
 print Log::Report::Translator::Gettext->new
     ->translate('nl-BE', $msg);


DESCRIPTION

UNTESTED!!! PLEASE CONTRIBUTE!!! Translate a message using the GNU gettext infrastructure.

Guido Flohr reports: be aware that Locale::gettext is only a binding for the C library libintl and depends on its features. That means that your module will effectively only run on GNU systems and maybe on Solaris (depending on the exact version), because only these systems provide the plural handling functions ngettext(), dngettext() and dcngettext(). Sooner or later you will probably also need bind_textdomain_codeset() which is also only available on certain systems.


METHODS

Constructors

Log::Report::Translator::Gettext->new(OPTIONS)

See Constructors in the Log::Report::Translator manpage

Accessors

$obj->charset

See Accessors in the Log::Report::Translator manpage

$obj->lexicons

See Accessors in the Log::Report::Translator manpage

Translating

$obj->load(DOMAIN, LOCALE)

See Translating in the Log::Report::Translator manpage

$obj->translate(MESSAGE)

See Translating in the Log::Report::Translator manpage


SEE ALSO

This module is part of Log-Report distribution version 0.19, built on November 24, 2008. Website: http://perl.overmeer.net/log-report/


LICENSE

Copyrights 2007-2008 by Mark Overmeer. For other contributors see ChangeLog.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html