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('nl-BE', $msg);
# 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). To module attempts to administer the PO's in a compact way, much more compact than Log::Report::Lexicon::PO does.
METHODS
Constructors
Log::Report::Translator::POT->new(OPTIONS)
Option --Defined in --Default
charset Log::Report::Translator <from locale>
lexicon Log::Report::Translator <see text>
. charset => STRING
. lexicon => DIRECTORY|ARRAY-of-DIRECTORYs
Accessors
$obj->charset
$obj->lexicons
Translating
$obj->load(DOMAIN, LOCALE)
$obj->translate(MESSAGE)
SEE ALSO
This module is part of Log-Report distribution version 0.12, built on October 23, 2007. Website: http://perl.overmeer.net/log-report/
LICENSE
Copyrights 2007 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