mirror of https://github.com/dani/vroom.git
parent
4fb913d0f1
commit
890213997f
1 changed files with 18 additions and 0 deletions
@ -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 |
||||||
|
); |
||||||
|
} |
Loading…
Reference in new issue