mirror of
https://framagit.org/fiat-tux/hat-softwares/lutim.git
synced 2026-07-03 16:31:52 +02:00
13 lines
245 B
Perl
13 lines
245 B
Perl
package Lutim::I18N;
|
|
|
|
use base 'Locale::Maketext';
|
|
use File::Basename qw/dirname/;
|
|
use Locale::Maketext::Lexicon {
|
|
_auto => 1,
|
|
_decode => 1,
|
|
_style => 'gettext',
|
|
'*' => [Gettext => dirname(__FILE__) . '/I18N/*.po']
|
|
};
|
|
|
|
1;
|