Is there any way how to sort by alphabetic order in certain language? For example, in Czech there are letters like "č" or "š" etc. and these characters are in end of the list, even in the alphabet they are at other place. I think that jetpack compose sorting it by ASCII
code, but I don't know...
I have idea that I can create such a list with every letter from alphabet with correct order and then sort list of words by this list, but I don't think that is a best idea..