Changeset 5526
- Timestamp:
- 06/24/09 07:19:09 (3 years ago)
- Location:
- trunk/Locale-Msgfmt
- Files:
-
- 6 added
- 4 edited
-
Build.PL (added)
-
Changes (added)
-
README (added)
-
lib/Locale/Msgfmt.pm (modified) (2 diffs)
-
lib/Locale/Msgfmt/Utils.pm (modified) (1 diff)
-
lib/Locale/Msgfmt/mo.pm (modified) (1 diff)
-
lib/Locale/Msgfmt/po.pm (modified) (1 diff)
-
t (added)
-
t/00-load.t (added)
-
t/pod.t (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Locale-Msgfmt/lib/Locale/Msgfmt.pm
r5525 r5526 10 10 11 11 our @EXPORT = qw/msgfmt/; 12 13 our $VERSION = '0.01'; 12 14 13 15 sub msgfmt { … … 24 26 $mo->out($hash->{out}); 25 27 } 28 29 1; 30 31 =head1 NAME 32 33 Locale::Msgfmt - Compile .po files to .mo files 34 35 =head1 SYNOPSIS 36 37 This module does the same thing as msgfmt from GNU gettext-tools, 38 except this is pure Perl. 39 40 use Locale::Msgfmt; 41 42 msgfmt({in => "po/fr.po", out => "po/fr.mo"}) 43 44 =head1 COPYRIGHT & LICENSE 45 46 Copyright 2009 Ryan Niebur, all rights reserved. 47 48 This program is free software; you can redistribute it and/or modify it 49 under the same terms as Perl itself. 50 51 52 =cut -
trunk/Locale-Msgfmt/lib/Locale/Msgfmt/Utils.pm
r5525 r5526 3 3 use strict; 4 4 use warnings; 5 6 our $VERSION = '0.01'; 5 7 6 8 sub character { -
trunk/Locale-Msgfmt/lib/Locale/Msgfmt/mo.pm
r5525 r5526 3 3 use strict; 4 4 use warnings; 5 6 our $VERSION = '0.01'; 5 7 6 8 use Locale::Msgfmt::Utils; -
trunk/Locale-Msgfmt/lib/Locale/Msgfmt/po.pm
r5525 r5526 3 3 use strict; 4 4 use warnings; 5 6 our $VERSION = '0.01'; 5 7 6 8 sub new {
Note: See TracChangeset
for help on using the changeset viewer.
