Provided by: liblog-report-perl_0.998-1_all 

NAME
Log::Report::Translator::POT - translation based on POT files
INHERITANCE
Log::Report::Translator::POT
is a Log::Report::Translator
SYNOPSIS
# internal use
my $msg = Log::Report::Message->new
( _msgid => "Hello World\n"
, _domain => 'my-domain'
);
print Log::Report::Translator::POT
->new(lexicon => ...)
->translate($msg, 'nl-BE');
# normal use (end-users view)
use Log::Report 'my-domain'
, translator => Log::Report::Translator::POT->new;
print __"Hello World\n";
DESCRIPTION
Translate a message by directly accessing POT files. The files will load lazily (unless forced). This
module accesses the PO's in a compact way, using Log::Report::Lexicon::POTcompact, which is much more
efficient than Log::Report::Lexicon::PO.
See documentation in the base class.
METHODS
See documentation in the base class.
Constructors
See documentation in the base class.
Log::Report::Translator::POT->new(OPTIONS)
-Option --Defined in --Default
charset Log::Report::Translator <from locale>
lexicons Log::Report::Translator <see text>
charset => STRING
lexicons => DIRECTORY|ARRAY-of-DIRECTORYs
Accessors
See documentation in the base class.
$obj->charset()
See "Accessors" in Log::Report::Translator
$obj->lexicons()
See "Accessors" in Log::Report::Translator
Translating
See documentation in the base class.
$obj->load(DOMAIN, LOCALE)
See "Translating" in Log::Report::Translator
$obj->translate(MESSAGE, [LANGUAGE])
See "Translating" in Log::Report::Translator
SEE ALSO
This module is part of Log-Report distribution version 0.998, built on October 22, 2013. Website:
http://perl.overmeer.net/log-report/
LICENSE
Copyrights 2007-2013 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
perl v5.18.1 2013-10-22 Log::Report::Translator::POT(3pm)