-
Notifications
You must be signed in to change notification settings - Fork 0
Add-on Store front-end - Use correct alphabetic order #5
Copy link
Copy link
Open
Labels
Description
Issue
A new Add-on Store front-end has just been published and alphabetic sorting has been implemented.
Though this sorting is not correct because it is done with char number as a key so:
- "Yandex translator for NVDA" comes before "alzaker"
- "xTrack" comes before "Émoticônes"
Expected
Sorting should not be case sensitive. So at least, case should be ignored when sorting.
Still, the sorting order actually depends on the language. In French, but probably in many other languages, a letter with diacritic, e.g. "é" should be sorted along with its equivalent without diacritic, e.g. "e". In Python for example, this can be achieved with strxfrm function.
So "Émoticônes" should appear between "Emoji menu" and "eMule".
Reactions are currently unavailable