[ktextaddons] [Bug 466894] AutoCorrectionLanguage widget shows entries in lowercase

2023-03-05 Thread Raphael Kubo da Costa
https://bugs.kde.org/show_bug.cgi?id=466894 --- Comment #4 from Raphael Kubo da Costa --- Doesn't that also apply to lowercasing everything like it's currently done, in which case it might be better to just provide a mix of capitalized and non-capitalized entries as returned by QLocale? -- You

[ktextaddons] [Bug 466894] AutoCorrectionLanguage widget shows entries in lowercase

2023-03-05 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=466894 --- Comment #3 from Laurent Montel --- (In reply to Raphael Kubo da Costa from comment #2) > The next line does > > languageName = languageName.toLower(); > > although QLocale::nativeLanguageName() returns a string that might or might >

[ktextaddons] [Bug 466894] AutoCorrectionLanguage widget shows entries in lowercase

2023-03-05 Thread Raphael Kubo da Costa
https://bugs.kde.org/show_bug.cgi?id=466894 --- Comment #2 from Raphael Kubo da Costa --- The next line does languageName = languageName.toLower(); although QLocale::nativeLanguageName() returns a string that might or might not be capitalized (e.g. it returns "American English" but

[ktextaddons] [Bug 466894] AutoCorrectionLanguage widget shows entries in lowercase

2023-03-05 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=466894 --- Comment #1 from Laurent Montel --- Hi, this list comes from QLocale. QString languageName = nativeName.isEmpty() ? QLocale::languageToString(lang.language()) : nativeName; I don't see how to fix it. -- You are receiving this mail because: You