Browse Source

Bug 25501: Supress warnings on installing translation

To test:
1) Verify the error installing translations for any language
2) Apply the patch
3) Repeat 1), check warning is gone

Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
20.05.x
Julian Maurice 4 years ago
committed by Martin Renvoize
parent
commit
c97921bb68
Signed by: martin.renvoize GPG Key ID: 422B469130441A0F
  1. 4
      misc/translator/tmpl_process3.pl

4
misc/translator/tmpl_process3.pl

@ -302,7 +302,7 @@ for my $in_dir ( @in_dirs ) {
}
# restores the string list from file
$href = Locale::PO->load_file_ashash($str_file);
$href = Locale::PO->load_file_ashash($str_file, 'utf-8');
# guess the charsets. HTML::Templates defaults to iso-8859-1
if (defined $href) {
@ -465,7 +465,7 @@ if ($action eq 'create') {
VerboseWarnings::set_input_file_name $input;
mkdir_recursive($targetdir) unless -d $targetdir;
print STDERR "Creating $target...\n" unless $quiet;
open( OUTPUT, ">$target" ) || die "$target: $!\n";
open( OUTPUT, ">:encoding(UTF-8)", "$target" ) || die "$target: $!\n";
text_replace( $h, *OUTPUT );
close OUTPUT;
} else {

Loading…
Cancel
Save