mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-05-29 18:22:37 -04:00
Welcome wizard: Set the language to english if the user doesn't explicitly change the language. This ensures that the language will be english on windows
This commit is contained in:
@@ -532,6 +532,7 @@ class LibraryPage(QWizardPage, LibraryUI):
|
||||
for item in items:
|
||||
self.language.addItem(item[1], QVariant(item[0]))
|
||||
self.language.blockSignals(False)
|
||||
prefs['language'] = str(self.language.itemData(self.language.currentIndex()).toString())
|
||||
|
||||
def change_language(self, idx):
|
||||
prefs['language'] = str(self.language.itemData(self.language.currentIndex()).toString())
|
||||
|
||||
Reference in New Issue
Block a user