summaryrefslogtreecommitdiffstats
path: root/perl-install/share/po/validate.pl
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2000-10-03 22:13:13 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2000-10-03 22:13:13 +0000
commit9cf4fe9d8179d36845805b750aee4cd001762d4f (patch)
tree40892861e5441683375f55837283247b4fcda525 /perl-install/share/po/validate.pl
parent4be61f0927cebf3788ac619794c804fd1c926866 (diff)
downloaddrakx-9cf4fe9d8179d36845805b750aee4cd001762d4f.tar
drakx-9cf4fe9d8179d36845805b750aee4cd001762d4f.tar.gz
drakx-9cf4fe9d8179d36845805b750aee4cd001762d4f.tar.bz2
drakx-9cf4fe9d8179d36845805b750aee4cd001762d4f.tar.xz
drakx-9cf4fe9d8179d36845805b750aee4cd001762d4f.zip
added validate.pl, fixed fr.po
Diffstat (limited to 'perl-install/share/po/validate.pl')
-rwxr-xr-xperl-install/share/po/validate.pl86
1 files changed, 86 insertions, 0 deletions
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 = <FIL>;
+ 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($_);
+}