From 9cf4fe9d8179d36845805b750aee4cd001762d4f Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Tue, 3 Oct 2000 22:13:13 +0000 Subject: added validate.pl, fixed fr.po --- perl-install/share/po/validate.pl | 86 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100755 perl-install/share/po/validate.pl (limited to 'perl-install') diff --git a/perl-install/share/po/validate.pl b/perl-install/share/po/validate.pl new file mode 100755 index 000000000..e2383ba9e --- /dev/null +++ b/perl-install/share/po/validate.pl @@ -0,0 +1,86 @@ +#!/usr/bin/perl -w + +# +# Guillaume Cottenceau (gc@mandrakesoft.com) +# +# Copyright 2000 MandrakeSoft +# +# This software may be freely redistributed under the terms of the GNU +# public license. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# + +# Tool to avoid common grammar errors in po files. + + +sub get_file($) +{ + local *FIL; + open FIL, "$_[0]" or die "Can't open $_[0]"; + my @file_content = ; + close FIL; + my @out; + my $msgstr = 0; + my $line_number = 0; + foreach (@file_content) + { + $line_number++; + /msgid/ and $msgstr = 0; + /msgstr/ and $msgstr = 1; + $msgstr and push @out, sprintf("%4d ", $line_number).$_; + } + @out; +} + + +my $line_number = 0; + +# --- Problems potentially common to multiple languages + +sub mixed_case($) +{ + (/[\^ ][A-Z][A-Z][a-z]/ && !/XFree/ || /[\^ ][a-z][A-Z]/) and print("**.po possible-mixed-case $_"); +} + +sub uppercase_after_comma($) +{ + /, [A-Z]/ and print("**.po uppercase-after-comma $_"); +} + +sub lowercase_after_dot($) +{ + /\. [a-z]/ and print("**.po lowercase-after-dot $_"); +} + +sub no_space_after_simple_ponct($) +{ + /[a-zA-Z\.]+@[a-zA-Z]/ and return; + /[,\.][a-zA-Z]/ and print("**.po no-space-after-simple-ponct $_"); +} + +sub space_before_simple_ponct($) +{ + / \.\./ and return; + / [,\.]/ and print("**.po space-before-simple-ponct $_"); +} + + + +# --- fr.po + +foreach (get_file("fr.po")) +{ + /\s*#/ and next; + /ez [^ ]+ez/ and print("fr.po infinitive-form-with-ez $_"); + /è[ \.,;:]/ and print("fr.po grave-accent-at-end-of-word $_"); + (/[éêè][éêè]/ && !/créé/) and print("fr.po strange-accents-succession $_"); + /G[nN][uU]\/[lL]inux/ and print("fr.po GNU-slash-Linux-found $_"); + mixed_case($_); + uppercase_after_comma($_); + lowercase_after_dot($_); + no_space_after_simple_ponct($_); + space_before_simple_ponct($_); +} -- cgit v1.2.1