Quoting helix84 ([EMAIL PROTECTED]): > Package: gnumeric > Version: 1.6.3-7 > Priority: wishlist > Tags: l10n patch > > .po attached
Broken file, probably because of the use of poedit (it has an RC bug about that). Fixed file attached and fixing script attached as well, for your future use if you insist on using poedit..:-) --
sk.po
Description: application/gettext
#!/usr/bin/perl -w
# (c) 2007 by Gerfried Fuchs <[EMAIL PROTECTED]>
use strict;
$0=~s,.*/,,;
my $prev = '';
my $inBlock = 0;
while (my $line = <>) {
if ($line =~ /^#:/) {
$inBlock = 1;
} elsif ($line =~ /^#\|/ && ! $inBlock) {
$prev .= $line;
next;
} elsif ($line =~ /^#\|/ && $inBlock && $prev) {
print STDERR "Double previous msgid found - ignoring wrongly placed one\n";
$prev = '';
} elsif ($line =~ /^m/) {
$inBlock = 0;
print $prev;
$prev = '';
}
print $line;
}
signature.asc
Description: Digital signature

