diff --git a/scripts/check-i18n.pl b/scripts/check-i18n.pl index 21f10238e6..3cb2cec18c 100755 --- a/scripts/check-i18n.pl +++ b/scripts/check-i18n.pl @@ -43,6 +43,8 @@ foreach my $tuple (@$src_strings) { print "\nChecking en_EN\n"; my $count = 0; foreach my $k (sort keys %$en) { + # crappy heuristic to ignore country codes for now... + next if ($k =~ /^(..|..-..)$/); if (!$src->{$k}) { if ($src->{$k. '.'}) { printf ("%50s %24s\t%s\n", $src->{$k. '.'}, "src has fullstop!", $k);