@@ -, +, @@ data --> Go to the Koha web installer page and select pl-PL as the installer language, click through it and notice it gives following error at the MARC21 step: Cannot decode string with wide characters at /usr/lib/x86_64-linux-gnu/perl/5.24/Encode.pm line 202 --- C4/Installer.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/C4/Installer.pm +++ a/C4/Installer.pm @@ -154,7 +154,7 @@ sub marc_framework_sql_list { my @lines; if ( $ext =~ /yml/ ) { my $yaml = YAML::XS::LoadFile("$dir/$requirelevel/$name\.$ext"); - @lines = map { Encode::decode('UTF-8', $_) } @{ $yaml->{'description'} }; + @lines = @{ $yaml->{'description'} }; } else { open my $fh, "<:encoding(UTF-8)", "$dir/$requirelevel/$name.txt"; my $line = <$fh>; @@ -237,7 +237,7 @@ sub sample_data_sql_list { my @lines; if ( $ext =~ /yml/ ) { my $yaml = YAML::XS::LoadFile("$dir/$requirelevel/$name\.$ext"); - @lines = map { Encode::decode('UTF-8', $_) } @{ $yaml->{'description'} }; + @lines = @{ $yaml->{'description'} }; } else { open my $fh, "<:encoding(UTF-8)", "$dir/$requirelevel/$name.txt"; my $line = <$fh>; --