Changeset 5526


Ignore:
Timestamp:
06/24/09 07:19:09 (3 years ago)
Author:
ryan52
Message:

run module-starter

Location:
trunk/Locale-Msgfmt
Files:
6 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Locale-Msgfmt/lib/Locale/Msgfmt.pm

    r5525 r5526  
    1010 
    1111our @EXPORT = qw/msgfmt/; 
     12 
     13our $VERSION = '0.01'; 
    1214 
    1315sub msgfmt { 
     
    2426  $mo->out($hash->{out}); 
    2527} 
     28 
     291; 
     30 
     31=head1 NAME 
     32 
     33Locale::Msgfmt - Compile .po files to .mo files 
     34 
     35=head1 SYNOPSIS 
     36 
     37This module does the same thing as msgfmt from GNU gettext-tools, 
     38except 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 
     46Copyright 2009 Ryan Niebur, all rights reserved. 
     47 
     48This program is free software; you can redistribute it and/or modify it 
     49under the same terms as Perl itself. 
     50 
     51 
     52=cut 
  • trunk/Locale-Msgfmt/lib/Locale/Msgfmt/Utils.pm

    r5525 r5526  
    33use strict; 
    44use warnings; 
     5 
     6our $VERSION = '0.01'; 
    57 
    68sub character { 
  • trunk/Locale-Msgfmt/lib/Locale/Msgfmt/mo.pm

    r5525 r5526  
    33use strict; 
    44use warnings; 
     5 
     6our $VERSION = '0.01'; 
    57 
    68use Locale::Msgfmt::Utils; 
  • trunk/Locale-Msgfmt/lib/Locale/Msgfmt/po.pm

    r5525 r5526  
    33use strict; 
    44use warnings; 
     5 
     6our $VERSION = '0.01'; 
    57 
    68sub new { 
Note: See TracChangeset for help on using the changeset viewer.