Subject: | No tailoring for German |
Could you add a CLDR tailoring for German collation? Currently, U::C
doesn't sort this correctly:
use Unicode::Collate;
@test = ('ß', 'ss');
my $Collator = Unicode::Collate->new();
print join("\n", $Collator->sort(@test)), "\n";
gives:
ß
ss
should be
ss
ß