summaryrefslogtreecommitdiffhomepage
path: root/build/i18n-po2lua.pl
diff options
context:
space:
mode:
Diffstat (limited to 'build/i18n-po2lua.pl')
-rwxr-xr-xbuild/i18n-po2lua.pl27
1 files changed, 27 insertions, 0 deletions
diff --git a/build/i18n-po2lua.pl b/build/i18n-po2lua.pl
new file mode 100755
index 0000000000..5129055ffb
--- /dev/null
+++ b/build/i18n-po2lua.pl
@@ -0,0 +1,27 @@
+#!/usr/bin/perl
+
+@ARGV == 2 || die "Usage: $0 <source-dir> <dest-dir>\n";
+
+my $source_dir = shift @ARGV;
+my $target_dir = shift @ARGV;
+
+if( ! -d $target_dir )
+{
+ system('mkdir', '-p', $target_dir);
+}
+
+if( open F, "find $source_dir -type f -name '*.po' |" )
+{
+ while( chomp( my $file = readline F ) )
+ {
+ my ( $lang, $basename ) = $file =~ m{.+/(\w+)/([^/]+)\.po$};
+ $lang = lc $lang;
+ $lang =~ s/_/-/g;
+
+ printf "Generating %-40s ", "$target_dir/$basename.$lang.lmo";
+ system("./build/po2lmo", $file, "$target_dir/$basename.$lang.lmo");
+ print ( -f "$target_dir/$basename.$lang.lmo" ? "done\n" : "empty\n" );
+ }
+
+ close F;
+}