X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=po%2Fpocheck.pl;h=9dd416026af21ff708e7b845e32e50a5e2fa02e1;hb=66ac0bbd8a2fbdfd9af763cd225743d49d8e40e2;hp=0b2c0eda3c8bd13137cf0f3ace2f25eec8be11e5;hpb=1856b0a6df42e684aa73bc1779d024598fb99edd;p=lyx.git diff --git a/po/pocheck.pl b/po/pocheck.pl index 0b2c0eda3c..9dd416026a 100755 --- a/po/pocheck.pl +++ b/po/pocheck.pl @@ -7,38 +7,86 @@ # # author: Michael Gerz, michael.gerz@teststep.org # -# This script performs some consistency checks on po files: -# -# 1. Uniform translation of messages that are identical except -# for capitalization, shortcuts, and shortcut notation. -# 2. Usage of the following elements in both the original and -# the translated message (or no usage at all): -# shortcuts ("&" and "|..."), trailing space, trailing colon -# -# Invocation: -# pocheck.pl po_file po_file ... -foreach $pofilename ( @ARGV ) -{ - print "Processing po file '$pofilename'...\n"; +use strict; +use warnings; +use Getopt::Std; + +my $usage = <; + my @pofile = ; close( INPUT ); undef( %trans ); keys( %trans ) = 10000; - $noOfLines = $#pofile; + my $noOfLines = $#pofile; + + my $warn = 0; - $warn = 0; + my $i = 0; + my ($msgid, $msgstr, $more); - $i = 0; while ($i <= $noOfLines) { + my $linenum = $i; ( $msgid ) = ( $pofile[$i] =~ m/^msgid "(.*)"/ ); $i++; next unless $msgid; + if ($ignore_fuzzy) { + my $previous = $pofile[$i - 2]; + next if $previous =~ m/#,.*fuzzy/; + } # some msgid's are more than one line long, so add those. while ( ( $more ) = $pofile[$i] =~ m/^"(.*)"/ ) { @@ -60,65 +108,91 @@ foreach $pofilename ( @ARGV ) # (surely that is always $msgstr?) next if ($msgid eq "" or $msgstr eq ""); + # discard [[...]] from the end of msgid, this is used only as hint to translation + $msgid =~ s/\[\[.*\]\]$//; + # Check for matching %1$s, etc. - @argstrs = ( $msgid =~ m/%(\d)\$s/g ); - if (@argstrs) { - $num = 0; - foreach $arg (@argstrs) { $num = $arg if $arg > $num; } - if ($num <= 0) { - print "Problem finding arguments in:\n $msgid!\n"; - $warn++; - } else { - foreach $i (1..$num) { - $arg = "%$i\\\$s"; - if ( $msgstr !~ m/$arg/ ) { - print "Missing argument `$arg'\n '$msgid' ==> '$msgstr'\n"; - $warn++; + if ($check_args) { + my @argstrs = ( $msgid =~ m/%(\d)\$s/g ); + if (@argstrs) { + my $n = 0; + foreach my $arg (@argstrs) { $n = $arg if $arg > $n; } + if ($n <= 0) { + print "$pofilename, line $linenum: Problem finding arguments in:\n $msgid!\n" + unless $only_total; + ++$bad{"Missing arguments"}; + $warn++; + } else { + foreach my $i (1..$n) { + my $arg = "%$i\\\$s"; + if ( $msgstr !~ m/$arg/ ) { + print "$pofilename, line $linenum: Missing argument `$arg'\n '$msgid' ==> '$msgstr'\n" + unless $only_total; + ++$bad{"Missing arguments"}; + $warn++; + } } } } } - # Check colon at the end of a message - if ( ( $msgid =~ m/: *(\|.*)?$/ ) != ( $msgstr =~ m/: *(\|.*)?$/ ) ) { - print( "Missing or unexpected colon:\n" ); - print( " '$msgid' => '$msgstr'\n" ); - $warn++; + if ($check_colons) { + # Check colon at the end of a message + if ( ( $msgid =~ m/: *(\|.*)?$/ ) != ( $msgstr =~ m/: *(\|.*)?$/ ) ) { + print "Line $linenum: Missing or unexpected colon:\n '$msgid' => '$msgstr'\n" + unless $only_total; + ++$bad{"Bad colons"}; + $warn++; + } + } + + if ($check_periods) { + # Check period at the end of a message; uncomment code if you are paranoid + if ( ( $msgid =~ m/\. *(\|.*)?$/ ) != ( $msgstr =~ m/\. *(\|.*)?$/ ) ) { + print "Line $linenum: Missing or unexpected period:\n '$msgid' => '$msgstr'\n" + unless $only_total; + ++$bad{"Bad periods"}; + $warn++; + } } - # Check period at the end of a message; uncomment code if you are paranoid - #if ( ( $msgid =~ m/\. *(\|.*)?$/ ) != ( $msgstr =~ m/\. *(\|.*)?$/ ) ) { - # print( "Missing or unexpected period:\n" ); - # print( " '$msgid' => '$msgstr'\n" ); - # $warn++; - #} - - # Check space at the end of a message - if ( ( $msgid =~ m/ *?(\|.*)?$/ ) != ( $msgstr =~ m/ *?(\|.*)?$/ ) ) { - print( "Missing or unexpected space:\n" ); - print( " '$msgid' => '$msgstr'\n" ); - $warn++; + if ($check_spaces) { + # Check space at the end of a message + if ( ( $msgid =~ m/ *?(\|.*)?$/ ) != ( $msgstr =~ m/ *?(\|.*)?$/ ) ) { + print "Line $linenum: Missing or unexpected space:\n '$msgid' => '$msgstr'\n" + unless $only_total; + ++$bad{"Bad spaces"}; + $warn++; + } } - # Check for "&" shortcuts - if ( ( $msgid =~ m/&[^ ]/ ) != ( $msgstr =~ m/&[^ ]/ ) ) { - print( "Missing or unexpected Qt shortcut:\n" ); - print( " '$msgid' => '$msgstr'\n" ); - $warn++; + if ($check_qt) { + # Check for "&" shortcuts + if ( ( $msgid =~ m/&[^ ]/ ) != ( $msgstr =~ m/&[^ ]/ ) ) { + print "Line $linenum: Missing or unexpected Qt shortcut:\n '$msgid' => '$msgstr'\n" + unless $only_total; + ++$bad{"Bad Qt shortcuts"}; + $warn++; + } } - # Check for "|..." shortcuts - if ( ( $msgid =~ m/\|[^ ]/ ) != ( $msgstr =~ m/\|[^ ]/ ) ) { - print( "Missing or unexpected menu shortcut:\n" ); - print( " '$msgid' => '$msgstr'\n" ); - $warn++; + if ($check_menu) { + # Check for "|..." shortcuts + if ( ( $msgid =~ m/\|[^ ]/ ) != ( $msgstr =~ m/\|[^ ]/ ) ) { + print "Line $linenum: Missing or unexpected menu shortcut:\n '$msgid' => '$msgstr'\n" + unless $only_total; + ++$bad{"Bad menu shortcuts"}; + $warn++; + } } + next unless $check_trans; + # we now collect these translations in a hash. # this will allow us to check below if we have translated # anything more than one way. - $msgid_clean = lc($msgid); - $msgstr_clean = lc($msgstr); + my $msgid_clean = lc($msgid); + my $msgstr_clean = lc($msgstr); $msgid_clean =~ s/(.*)\|.*?$/$1/; # strip menu shortcuts $msgstr_clean =~ s/(.*)\|.*?$/$1/; @@ -129,24 +203,40 @@ foreach $pofilename ( @ARGV ) # cleaned versions of ORIGINAL strings. the keys of the inner hash # are the cleaned versions of their TRANSLATIONS. The value for the # inner hash is an array of the orignal string and translation. - $trans{$msgid_clean}{$msgstr_clean} = [ $msgid, $msgstr ]; + $trans{$msgid_clean}{$msgstr_clean} = [ $msgid, $msgstr, $linenum ]; } - foreach $msgid ( keys %trans ) { - # so $ref is a reference to the inner hash. - $ref = $trans{$msgid}; - # @msgstrkeys is an array of the keys of that inner hash. - @msgstrkeys = keys %$ref; - - # do we have more than one such key? - if ( $#msgstrkeys > 0 ) { - print( "Different translations for '$msgid':\n" ); - foreach $msgstr ( @msgstrkeys ) { - print( " '" . $trans{$msgid}{$msgstr}[0] . "' => '" . $trans{$msgid}{$msgstr}[1] . "'\n" ); + if ($check_trans) { + foreach $msgid ( keys %trans ) { + # so $ref is a reference to the inner hash. + my $ref = $trans{$msgid}; + # @msgstrkeys is an array of the keys of that inner hash. + my @msgstrkeys = keys %$ref; + + # do we have more than one such key? + if ( $#msgstrkeys > 0 ) { + if (!$only_total) { + print "Different translations for '$msgid':\n"; + foreach $msgstr ( @msgstrkeys ) { + print "Line $ref->{$msgstr}[2]: '" . + $ref->{$msgstr}[0] . "' => '" . + $ref->{$msgstr}[1] . "'\n"; + } + } + ++$bad{"Inconsistent translations"}; + $warn++; } - $warn++; } } - - print( "\nTotal number of warnings: $warn\n\n" ); + if (!$silent_mode) { + if ($warn) { + while (my ($k, $v) = each %bad) { print "$k: $v\n"; } + if (scalar(keys %bad) > 1) { + print "Total warnings: $warn\n"; + } + } else { + print "No warnings!\n"; + } + print "\n"; + } }