Subject: | Swedish locale incorrect? |
Here is a simple test file:
use Unicode::Collate::Locale;
my $Collator = Unicode::Collate::Locale->new(locale => 'sv_SE');
print "Accepted Locale: ", $Collator->getlocale, "\n";
print join("\n",$Collator->sort('ä', 'å')), "\n";
for me, this prints:
Accepted Locale: sv
ä
å
which I think is the incorrect order for Swedish and incorrect as per
the sv.pl file included with U::C::L?