Lines 314-322
if (defined $href) {
Link Here
|
314 |
for my $msg ( values %$href ) { |
314 |
for my $msg ( values %$href ) { |
315 |
my $id_count = split(/%s/, $msg->{msgid}) - 1; |
315 |
my $id_count = split(/%s/, $msg->{msgid}) - 1; |
316 |
my $str_count = split(/%s/, $msg->{msgstr}) - 1; |
316 |
my $str_count = split(/%s/, $msg->{msgstr}) - 1; |
317 |
next if $id_count == $str_count || |
317 |
next |
318 |
$msg->{msgstr} eq '""' || |
318 |
if $id_count == $str_count |
319 |
grep { /fuzzy/ } @{$msg->{_flags}}; |
319 |
|| $msg->{msgstr} eq '""' |
|
|
320 |
|| $msg->{obsolete} |
321 |
|| grep { /fuzzy/ } @{ $msg->{_flags} }; |
320 |
warn_normal( |
322 |
warn_normal( |
321 |
"unconsistent %s count: ($id_count/$str_count):\n" . |
323 |
"unconsistent %s count: ($id_count/$str_count):\n" . |
322 |
" line: " . $msg->{loaded_line_number} . "\n" . |
324 |
" line: " . $msg->{loaded_line_number} . "\n" . |
323 |
- |
|
|