diff -r dac33c7fce07 -r e3642a6a1e71 eric7/Preferences/ConfigurationPages/InterfacePage.py --- a/eric7/Preferences/ConfigurationPages/InterfacePage.py Sat May 15 19:01:16 2021 +0200 +++ b/eric7/Preferences/ConfigurationPages/InterfacePage.py Sat May 15 20:08:03 2021 +0200 @@ -21,7 +21,7 @@ import Preferences import Utilities -from eric6config import getConfig +from eric7config import getConfig class InterfacePage(ConfigurationPageBase, Ui_InterfacePage): @@ -217,10 +217,10 @@ self.languageComboBox.clear() fnlist = ( - glob.glob("eric6_*.qm") + + glob.glob("eric7_*.qm") + glob.glob(os.path.join( - getConfig('ericTranslationsDir'), "eric6_*.qm")) + - glob.glob(os.path.join(Utilities.getConfigDir(), "eric6_*.qm")) + getConfig('ericTranslationsDir'), "eric7_*.qm")) + + glob.glob(os.path.join(Utilities.getConfigDir(), "eric7_*.qm")) ) locales = {} for fn in fnlist: