german and pocheck update

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6898 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2003-04-30 14:16:24 +00:00
parent 66651dd332
commit 1dcf372174
3 changed files with 728 additions and 686 deletions

View File

@ -1,3 +1,9 @@
2003-04-30 Michael Schmitt <Michael.Schmitt@teststep.org>
* pocheck.pl: more fixes
* de.po: update
2003-04-28 Michael Schmitt <Michael.Schmitt@teststep.org>
* pocheck.pl: do not output several different messages about bad

1400
po/de.po

File diff suppressed because it is too large Load Diff

View File

@ -88,12 +88,12 @@ foreach $pofilename ( @ARGV )
$warn++;
}
$msgid_clean = lc($msgid);
$msgid_clean = lc($msgid);
$msgstr_clean = lc($msgstr);
$msgid_clean =~ s/\|.*?$//;
$msgid_clean =~ s/&([^ ])/$1/;
$msgstr_clean =~ s/\|.*?$//;
$msgid_clean =~ s/(.*)\|.*?$/$1/; # strip xforms shortcuts
$msgstr_clean =~ s/(.*)\|.*?$/$1/;
$msgid_clean =~ s/&([^ ])/$1/; # strip Qt shortcuts
$msgstr_clean =~ s/&([^ ])/$1/;
$trans{$msgid_clean}{$msgstr_clean} = [ $msgid, $msgstr ];