Browse Source

Bug 24262: (follow-up) admit null values on labels

This patch adds handling of null values on translatable
labels.

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
20.05.x
Bernardo Gonzalez Kriegel 4 years ago
committed by Martin Renvoize
parent
commit
31774a2ee8
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 3
      misc/translator/LangInstaller.pm

3
misc/translator/LangInstaller.pm

@ -523,7 +523,7 @@ sub get_po_from_target {
}
}
} else {
if ( length($row->{$field}) > 1 # discard small strings
if ( defined $row->{$field} and length($row->{$field}) > 1 # discard null values and small strings
and not $po->{ $row->{$field} } ) {
my $msg = new Locale::PO(
-msgid => $row->{$field}, -msgstr => '',
@ -653,6 +653,7 @@ sub translate_yaml {
}
}
} else {
next unless defined $row->{$field}; # next if null value
my $po = $po_ref->{"\"$row->{$field}\""}; # quoted key
if ( $po and not defined( $po->fuzzy() ) # not fuzzy
and length( $po->msgid() ) > 2 # not empty msgid

Loading…
Cancel
Save