https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=36947 --- Comment #32 from Lari Strand <lmstrand@gmail.com> --- This seems to achieve the same result as use locale (when LC_COLLATE is set to "fi_FI"): if( C4::Context->preference('FacetOrder') eq 'Alphabetical' ){ my $coll = Unicode::Collate::Locale->new( locale => "fi_FI" ); @{ $facet->{facets} } = sort { $coll->cmp ($a->{facet_label_value}, $b->{facet_label_value}) } @{ $facet->{facets} }; } push @facets, $facet if exists $facet->{facets}; Should the collator be configurable in Koha or were you thinking of using the selected UI language for sorting somehow here? -- You are receiving this mail because: You are watching all bug changes.