Tablesorter locale letter sequence is wrong

Tablesorter locale letter sequence is wrong

Not sure if this is the correct place to state this but here goes.

When sorting tables with danish letters in them Tablesorter correctly puts them at the end, but in the wrong sequence, I think because of the way they're commonly internationalized.
In Tablesorter its Å (aa), Æ (ae), Ø (oe)
Correct sequence it  Æ (ae), Ø (oe), Å (aa).

Small bug, but there it is.
Otherwise Tablesorter is awsome ;)


Edit: 
Might as well post the workarround/ parser for the issue.

$.tablesorter.addParser({
        id: "letterfix",
        is: function(s) {
                return false;
        },
        format: function(s) {
                s = s.toLowerCase();
                s = s.replace(/å/g, 'zzzz');
                s = s.replace(/æ/g, 'zzza');
                s = s.replace(/ø/g, 'zzzo');
                return s;

        },
        type: "text"
});