Last modified: 2014-02-12 23:35:48 UTC
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, č, ď
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".
I guess we need to specify the default sorting for every language separately.