Special characters in Czech diacritics sort to the end, which is wrong.
Example here: http://cs.wikipedia.org/wiki/Wikipedista:Kozuch/Sorting
Current situation: A,a ... d, á, č, Č, ď
Desired order: A,a,á ... C, Č, c, č, ď
Special characters in Czech diacritics sort to the end, which is wrong.
Example here: http://cs.wikipedia.org/wiki/Wikipedista:Kozuch/Sorting
Current situation: A,a ... d, á, č, Č, ď
Desired order: A,a,á ... C, Č, c, č, ď
| Status | Subtype | Assigned | Task | ||
|---|---|---|---|---|---|
| Resolved | None | T47071 Wikitable sortable has wrong order for Czech diacritics | |||
| Resolved | TheDJ | T32674 Use sort collation config in JavaScript (jquery.tablesorter) |
There is no special sort order for languages yet, you can override this, when adding to the Common.js:
mw.config.set( 'tableSorterCollation', {'Č':'C', ...} );
Ok, but this should be solved globally, for all users by default without having to do an extra setting (via common.js or whatever else).
Doing this for all languages isn't easy at all: For example in German "Ä" is considered as a variant of "A", so it should be sorted at the beginning, while in Swedish it is an own character that comes after the "Z".
Well, but sorting is basics of internationalization... unfortunately this was forgotten here.
Not sure what needs to be done here, but... We use and have set Unicode collation for Categories (uca-cs for Czech Wikipedia). This is already configured for majority of Wikipedias. Why don't we use the same here?