]> git.lyx.org Git - lyx.git/blobdiff - po/pocheck.pl
Add Benjamin Piwowarski to contributors. Welcome to LyX!
[lyx.git] / po / pocheck.pl
index fb9b73f8ae1a4d3287514df7c7ad74c79c17054c..9dd416026af21ff708e7b845e32e50a5e2fa02e1 100755 (executable)
@@ -15,41 +15,53 @@ use Getopt::Std;
 my $usage = <<EOT;
 pocheck.pl [-acmpqst] po_file [po_file] ...
 
-This script performs some consistency checks on po files. It will check
-for everything listed under "Options" below, unless options are given, in
-which case it checks only those requested.
+This script performs some consistency checks on po files. 
 
-Options:
+We check for everything listed here, unless one or more of these 
+options is given, in which case we checks only for those requested.
 -a: Check arguments, like %1\$s
 -c: Check for colons at end
 -m: Check for menu shortcuts
 -p: Check for period at end
 -q: Check Qt shortcuts
 -s: Check for space at end
--t: Check for uniform translations
+-t: Check for uniform translation
+These options can be given with or without other options.
+-f: Ignore fuzzy translations
+-w: Only report summary total of errors
+-i: Silent mode, report only errors
 EOT
 
 my %options;
-getopts(":hacmpqst", \%options);
+getopts(":hacfmpqstwi", \%options);
 
 if (defined($options{h})) { 
   print $usage; 
   exit 0; 
 }
 
+my $only_total = defined($options{w});
+delete $options{w} if $only_total;
+my $ignore_fuzzy = defined($options{f});
+delete $options{f} if $ignore_fuzzy;
+my $silent_mode = defined($options{i});
+delete $options{i} if $silent_mode;
+
 my $check_args = (!%options or defined($options{a}));
 my $check_colons = (!%options or defined($options{c}));
-my $check_spaces = (!%options or defined($options{m}));
+my $check_spaces = (!%options or defined($options{s}));
 my $check_periods = (!%options or defined($options{p}));
 my $check_qt = (!%options or defined($options{q}));
-my $check_menu = (!%options or defined($options{s}));
+my $check_menu = (!%options or defined($options{m}));
 my $check_trans = (!%options or defined($options{t}));
 
 my %trans;
 
-foreach my $pofilename ( @ARGV )
-{
-  print "Processing po file '$pofilename'...\n";
+foreach my $pofilename ( @ARGV ) {
+  my %bad;
+  if (!$silent_mode) {
+    print "Processing po file '$pofilename'...\n";
+  }
 
   open( INPUT, "<$pofilename" )
     || die "Cannot read po file '$pofilename'";
@@ -71,6 +83,10 @@ foreach my $pofilename ( @ARGV )
     ( $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/^"(.*)"/ ) {
@@ -92,6 +108,9 @@ foreach my $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.
       if ($check_args) {
       my @argstrs = ( $msgid =~ m/%(\d)\$s/g );
@@ -99,13 +118,17 @@ foreach my $pofilename ( @ARGV )
         my $n = 0;
         foreach my $arg (@argstrs) { $n = $arg if $arg > $n; }
         if ($n <= 0) { 
-          print "Problem finding arguments in:\n    $msgid!\non line $linenum.\n";
+          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 "Line $linenum: Missing argument `$arg'\n  '$msgid' ==> '$msgstr'\n";
+              print "$pofilename, line $linenum: Missing argument `$arg'\n  '$msgid' ==> '$msgstr'\n"
+                unless $only_total;
+              ++$bad{"Missing arguments"};
               $warn++;
             }
           }
@@ -116,8 +139,9 @@ foreach my $pofilename ( @ARGV )
     if ($check_colons) {
       # Check colon at the end of a message
       if ( ( $msgid =~ m/: *(\|.*)?$/ ) != ( $msgstr =~ m/: *(\|.*)?$/ ) ) {
-        print( "Line $linenum: Missing or unexpected colon:\n" );
-        print( "  '$msgid' => '$msgstr'\n" );
+        print "Line $linenum: Missing or unexpected colon:\n  '$msgid' => '$msgstr'\n"
+          unless $only_total;
+        ++$bad{"Bad colons"};
         $warn++;
       }
     }
@@ -125,8 +149,9 @@ foreach my $pofilename ( @ARGV )
     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" );
-       print( "  '$msgid' => '$msgstr'\n" );
+       print "Line $linenum: Missing or unexpected period:\n  '$msgid' => '$msgstr'\n"
+        unless $only_total;
+      ++$bad{"Bad periods"};
        $warn++;
       }
     }
@@ -134,8 +159,9 @@ foreach my $pofilename ( @ARGV )
     if ($check_spaces) {
       # Check space at the end of a message
       if ( ( $msgid =~ m/  *?(\|.*)?$/ ) != ( $msgstr =~ m/  *?(\|.*)?$/ ) ) {
-        print( "Line $linenum: Missing or unexpected space:\n" );
-        print( "  '$msgid' => '$msgstr'\n" );
+        print "Line $linenum: Missing or unexpected space:\n  '$msgid' => '$msgstr'\n"
+          unless $only_total;
+        ++$bad{"Bad spaces"};
         $warn++;
       }
     }
@@ -143,8 +169,9 @@ foreach my $pofilename ( @ARGV )
     if ($check_qt) {
       # Check for "&" shortcuts
       if ( ( $msgid =~ m/&[^ ]/ ) != ( $msgstr =~ m/&[^ ]/ ) ) {
-        print( "Line $linenum: Missing or unexpected Qt shortcut:\n" );
-        print( "  '$msgid' => '$msgstr'\n" );
+        print "Line $linenum: Missing or unexpected Qt shortcut:\n  '$msgid' => '$msgstr'\n"
+          unless $only_total;
+        ++$bad{"Bad Qt shortcuts"};
         $warn++;
       }
     }
@@ -152,8 +179,9 @@ foreach my $pofilename ( @ARGV )
     if ($check_menu) {
       # Check for "|..." shortcuts
       if ( ( $msgid =~ m/\|[^ ]/ ) != ( $msgstr =~ m/\|[^ ]/ ) ) {
-        print( "Line $linenum: Missing or unexpected menu shortcut:\n" );
-        print( "  '$msgid' => '$msgstr'\n" );
+        print "Line $linenum: Missing or unexpected menu shortcut:\n  '$msgid' => '$msgstr'\n"
+          unless $only_total;
+        ++$bad{"Bad menu shortcuts"};
         $warn++;
       }
     }
@@ -175,7 +203,7 @@ foreach my $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 ];
   }
 
   if ($check_trans) {
@@ -187,14 +215,28 @@ foreach my $pofilename ( @ARGV )
 
       # 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 (!$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++;
       }
     }
   }
-
-  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";
+  }
 }