Add a script to update po files

This commit is contained in:
Daniel Berteaud 2015-07-17 12:08:34 +02:00
parent 4fb913d0f1
commit 890213997f
1 changed files with 18 additions and 0 deletions

18
scripts/update_locales.pl Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/perl -w
use strict;
use warnings;
use File::Basename;
use Locale::Maketext::Extract::Run 'xgettext';
chdir dirname($0) . '/..';
my @files = qw(vroom.pl public/js/vroom.js);
push @files, glob('templates/default/*');
foreach my $lang (map { basename(s/\.pm$//r) } glob('lib/Vroom/I18N/*.pm')){
xgettext(
'-o', 'lib/Vroom/I18N/' . $lang . '.po',
@files
);
}