X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Flocales.pl;h=eb1d81b676c1c37316c0afb6c7c2a4d51487fe93;hb=39c2e07dc85ff2413772546fde8bea5fc9754825;hp=cd5fe41b9f7db8e174d586c7b84f71dd2277203f;hpb=ebe71b37a511272a7e64c9bd06a6cc336480d224;p=kivitendo-erp.git diff --git a/scripts/locales.pl b/scripts/locales.pl index cd5fe41b9..eb1d81b67 100755 --- a/scripts/locales.pl +++ b/scripts/locales.pl @@ -30,6 +30,7 @@ $OUTPUT_AUTOFLUSH = 1; my $opt_v = 0; my $opt_n = 0; my $opt_c = 0; +my $opt_f = 0; my $debug = 0; parse_args(); @@ -48,7 +49,8 @@ our $missing = {}; our @lost = (); my %ignore_unused_templates = ( - map { $_ => 1 } qw(ct/testpage.html generic/autocomplete.html oe/periodic_invoices_email.txt part/testpage.html t/render.html t/render.js) + map { $_ => 1 } qw(ct/testpage.html generic/autocomplete.html oe/periodic_invoices_email.txt part/testpage.html t/render.html t/render.js task_server/failure_notification_email.txt + failed_background_jobs_report/email.txt) ); my (%referenced_html_files, %locale, %htmllocale, %alllocales, %cached, %submit, %jslocale); @@ -128,7 +130,7 @@ handle_file(@{ $_ }) for @progfiles; handle_file(@{ $_ }) for @dbplfiles; scanmenu($_) for @menufiles; -for my $file_name (map({find_files($_)} @javascript_dirs)) { +for my $file_name (grep { /\.(?:js|html)$/i } map({find_files($_)} @javascript_dirs)) { scan_javascript_file($file_name); } @@ -175,6 +177,15 @@ if (@new_missing) { } } + if ($opt_f) { + for my $string (@new_missing) { + print "new string '$string' in files:\n"; + for my $file (keys %cached) { + print " $file", $/ if $cached{$file}{all}{$string}; + } + } + } + generate_file( file => "$locales_dir/missing", header => $MISSING_HEADER, @@ -244,6 +255,7 @@ sub parse_args { 'check-files' => \$ignore_for_compatiblity, 'no-check-files' => \$opt_no_c, 'verbose' => \$opt_v, + 'filenames' => \$opt_f, 'help' => \$help, 'man' => \$man, 'debug' => \$debug, @@ -376,7 +388,7 @@ sub scanfile { return unless (-f "$file"); my $fh = new FileHandle; - open $fh, "$file" or die "$! : $file"; + open $fh, '<:encoding(utf8)', $file or die "$! : $file"; my ($is_submit, $line_no, $sub_line_no) = (0, 0, 0); @@ -506,7 +518,7 @@ sub scanmenu { my $file = shift; my $fh = new FileHandle; - open $fh, "$file" or die "$! : $file"; + open $fh, '<:encoding(utf8)', $file or die "$! : $file"; my @a = grep m/^\[/, <$fh>; close($fh); @@ -540,7 +552,7 @@ sub scanhtmlfile { my %plugins = ( 'loaded' => { }, 'needed' => { } ); - if (!open(IN, $file)) { + if (!open(IN, '<:encoding(utf8)', $file)) { print "E: template file '$file' not found\n"; return; } @@ -606,9 +618,9 @@ sub scanhtmlfile { \s+ # Mindestens ein Whitespace [\'\"]? # Anfang des Dateinamens ([^\s]+) # Beliebig viele Nicht-Whitespaces -- Dateiname - \.html # Endung ".html", ansonsten kann es der Name eines Blocks sein + \.(html|js) # Endung ".html" oder ".js", ansonsten kann es der Name eines Blocks sein /ix) { - my $new_file_name = "$basedir/templates/webpages/$1.html"; + my $new_file_name = "$basedir/templates/webpages/$1.$2"; $cached{$file}{scanh}{$new_file_name} = 1; substr $line, $LAST_MATCH_START[1], $LAST_MATCH_END[0] - $LAST_MATCH_START[0], ''; } @@ -634,7 +646,7 @@ sub scanhtmlfile { sub scan_javascript_file { my ($file) = @_; - open(my $fh, $file) || die('can not open file: '. $file); + open(my $fh, '<:encoding(utf8)', $file) || die('can not open file: '. $file); while( my $line = readline($fh) ) { while( $line =~ m/ @@ -739,6 +751,7 @@ locales.pl [options] lang_code Options: -n, --no-custom-files Do not process files whose name contains "_" -c, --check-files Run extended checks on HTML files + -f, --filenames Show the filenames where new strings where found -v, --verbose Be more verbose -h, --help Show this help