X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Flocales.pl;h=24b06877f0690577fc1468985014ca513432174a;hb=f9676efea9ccfa01df2a57dca9c45cc8fde0d09e;hp=f2bf87000e4f408fca5aa1643bda0da6155e3583;hpb=984d50b3e31de17611c296885b151dee7198a47f;p=kivitendo-erp.git diff --git a/scripts/locales.pl b/scripts/locales.pl index f2bf87000..24b06877f 100755 --- a/scripts/locales.pl +++ b/scripts/locales.pl @@ -85,6 +85,9 @@ if (-f "$locales_dir/lost") { unlink "$locales_dir/lost"; } +my $charset = slurp("$locales_dir/charset") || 'utf-8'; +chomp $charset; + my %old_texts = %{ $self->{texts} || {} }; map({ handle_file($_, $bindir); } @progfiles); @@ -125,7 +128,7 @@ if (scalar @lost) { delim => '()', data_name => '@lost', data_sub => sub { - _print_line($_->{text}, $_->{translation}, @_, template => " { 'text' => %s, 'translation' => %s },") for @lost; + _print_line($_->{text}, $_->{translation}, @_, template => " { 'text' => %s, 'translation' => %s },\n") for @lost; }, ); } @@ -157,8 +160,8 @@ EOL # add the missing texts and run locales.pl to rebuild EOL $LOST_HEADER = <', $file or die "$! : $file"; - print $fh "#!/usr/bin/perl\n\n"; + print $fh "#!/usr/bin/perl\n# -*- coding: $charset; -*-\n# vim: fenc=$charset\n\n"; print $fh $header, "\n" if $header; print $fh "$data_name = $delim[0]\n" if $data_name; @@ -608,6 +611,11 @@ sub generate_file { close $fh; } +sub slurp { + my $file = shift; + do { local ( @ARGV, $/ ) = $file; <> } +} + __END__ =head1 NAME @@ -616,7 +624,7 @@ locales.pl - Collect strings for translation in Lx-Office =head1 SYNOPSIS -locales.pl [options] +locales.pl [options] lang_code Options: -n, --no-custom-files Do not process files whose name contains "_" @@ -647,7 +655,6 @@ Be more verbose. =head1 DESCRIPTION This script collects strings from Perl files, the menu.ini file and -HTML templates and puts them into the file "all" for translation. It -also distributes those translations back to the individual files. +HTML templates and puts them into the file "all" for translation. =cut