[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Po4a-dev]Po.pm seems to work
From: |
Denis Barbier |
Subject: |
Re: [Po4a-dev]Po.pm seems to work |
Date: |
Fri, 15 Nov 2002 18:16:17 +0100 |
User-agent: |
Mutt/1.3.28i |
On Fri, Nov 15, 2002 at 05:19:05PM +0100, Martin Quinson wrote:
> Hello,
>
> I just commited a new version of Po.pm. It seems to work here. From the doc:
>
> use Locale::Po4a::Po;
> my $pofile=Locale::Po4a::Po->new();
>
> # Read po file
> $pofile->load('file.po');
Looks great, I'll test it ;)
As 'load' method will almost always follow 'new', having a shortcut is
handy:
my $pofile=Locale::Po4a::Po->new('file.po');
Denis