App-I18N

 view release on metacpan or  search on metacpan

lib/App/I18N/Command/Parse.pm  view on Meta::CPAN

use warnings;
use strict;
use Cwd;
use App::I18N::Config;
use App::I18N::Logger;
use File::Basename;
use File::Path qw(mkpath);
use File::Find::Rule;
use Locale::Maketext::Extract;
use base qw(App::I18N::Command);

=head1 NAME

parse - parse i18n string from files.

=head1 USAGE

parse [options] [path]

=head1 OPTIONS

    --lang
    --locale
    --podir=[path]
    --mo

=cut

sub options {
    (
    'q|quiet'  => 'quiet',
    'l|lang=s' => 'language',
    'locale'   => 'locale',   # XXX: use locale directory structure
    'podir=s'  => 'podir',
    'mo'       => 'mo',
    );
}

our $LMExtract = App::I18N->lm_extract();

sub print_help_message {
    # XXX:
    return;
    print <<END

In your application include the code below:

    use App::I18N::I18N;

    sub hello {
        print _( "Hello %1" , \$world );
    }

END
}

sub run {
    my ( $self, @args ) = @_;

    my $podir = $self->{podir};
    $podir = App::I18N->guess_podir( $self ) unless $podir;
    $self->{mo} = 1 if $self->{locale};

    my @dirs = @args;
    App::I18N->extract_messages( @dirs );

    # update app.pot catalog
    mkpath [ $podir ];

    my $pot_name = App::I18N->pot_name;
    App::I18N->update_catalog( File::Spec->catfile( $podir, $pot_name . ".pot") );

    if ( $self->{'language'} ) {
        # locale structure
        #    locale/{lang}/LC_MESSAGES/{domain}.po
        #    {podir}/{lang}/LC_MESSAGES/{pot_name}.po
        if( $self->{locale} ) {
            mkpath [ File::Spec->join( $podir, $self->{language}, "LC_MESSAGES" ) ];

            my $pofile = File::Spec->catfile( $podir, $self->{language}, "LC_MESSAGES", $pot_name . ".po" );
            App::I18N->update_catalog( $pofile, $self );
        }
        else {
            App::I18N->update_catalog( File::Spec->catfile( $podir, $self->{language} . ".po" ), $self );
        }
        return;
    }
    App::I18N->update_catalogs( $podir , $self );
    print_help_message();
}

1;
__END__

_("Check existing po files")
_("Test %1", 1234 )



( run in 3.888 seconds using v1.01-cache-2.11-cpan-7fcb06a456a )