There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

PGetText - pure perl i18n routines

SYNOPSIS

use Locale::PGetText;

Locale::PGetText::setLocaleDir('/usr/local/perl/locale');
Locale::PGetText::setLanguage('ru-koi8r');

print gettext("Welcome!"), "\n";

DESCRIPTION

PGetText provides the same functionality as GNU gettext does, but it is written in pure perl and doesn't require any system locale stuff.

setLocaleDir() sets directory where messages database is stored (there are no default and no domains).

setLanguage() switches languages.

gettext() retrieves message in local language corresponding to given message.

SEE ALSO

MsgFormat(1)

AUTHOR

Mike Shoyher <msh@corbina.net>, <msh@apache.lexa.ru>