Skip to content

Commit 05fdb7d

Browse files
committed
Fix localisation issue with Italian reported by OSBetaEAC
1 parent 1787117 commit 05fdb7d

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# EmuGUI v1.1.5.5413 "Sara Angeline" (based on v1.1.4.5412)
2+
3+
## WARNING
4+
5+
Ubuntu 20.04 LTS and derivates will no longer receive new features on EmuGUI, now you need the latest (LTS) version of your Linux distribution for anything beyond the EmuGUI 1.1.x line. However, you will still receive bugfixes for the EmuGUI 1.1.x line.
6+
7+
## Changes compared to v1.1.4.5412
8+
9+
- A bug which turned out to let EmuGUI utilise Portuguese when it should utilise Italian has been fixed. Thanks for reporting it, OSBetaEAC.
10+
111
# EmuGUI v1.1.4.5412 "Sara Angeline" (based on v1.1.3.5411)
212

313
## WARNING

emugui.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ def __init__(self, parent=None):
5454
self.connectSignalsSlots()
5555
self.timer = QTimer()
5656
self.timer.timeout.connect(self.updateVmList)
57-
self.label_8.setText("EmuGUI v1.1.4.5412\nCodename 'Sara Angeline'")
58-
self.setWindowTitle("EmuGUI v1.1.4.5412")
57+
self.label_8.setText("EmuGUI v1.1.5.5413\nCodename 'Sara Angeline'")
58+
self.setWindowTitle("EmuGUI v1.1.5.5413")
5959
self.languageInUse = "system"
6060

6161
try:
@@ -64,7 +64,7 @@ def __init__(self, parent=None):
6464
except:
6565
pass
6666

67-
self.versionCode = 5412
67+
self.versionCode = 5413
6868

6969
if platform.system() == "Windows":
7070
self.connection = platformSpecific.windowsSpecific.setupWindowsBackend()
@@ -105,7 +105,7 @@ def __init__(self, parent=None):
105105
dialog.exec()
106106

107107
self.label_8.setText(
108-
f"EmuGUI v1.1.4.5412\nCodename 'Sara Angeline'\nYour OS is no longer supported by EmuGUI. You should upgrade at least to Windows 10. You're currently running Windows {platform.release()}")
108+
f"EmuGUI v1.1.5.5413\nCodename 'Sara Angeline'\nYour OS is no longer supported by EmuGUI. You should upgrade at least to Windows 10. You're currently running Windows {platform.release()}")
109109

110110
def resizeEvent(self, event: QtGui.QResizeEvent):
111111
super().resizeEvent(event)
@@ -2205,7 +2205,7 @@ def applyGeneric(self):
22052205
langmode = "it"
22062206

22072207
try:
2208-
cursor.execute(language_pt)
2208+
cursor.execute(language_it)
22092209
connection.commit()
22102210

22112211
if platform.system() == "Windows":

0 commit comments

Comments
 (0)