Fixed a bug causing translations not being loaded. eric7 release-10.0.1

Tue, 28 Jun 2022 08:21:05 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Tue, 28 Jun 2022 08:21:05 +0200
branch
eric7
changeset 105
ab6d2ee7171e
parent 104
c43be9065033
child 106
40db039eb51f

Fixed a bug causing translations not being loaded.

.hgignore file | annotate | diff | comparison | revisions
ChangeLog file | annotate | diff | comparison | revisions
PluginPyLint.py file | annotate | diff | comparison | revisions
PluginPyLint.zip file | annotate | diff | comparison | revisions
--- a/.hgignore	Mon Jun 27 17:23:51 2022 +0200
+++ b/.hgignore	Tue Jun 28 08:21:05 2022 +0200
@@ -1,6 +1,7 @@
 glob:.eric7project
 glob:.eric6project
 glob:.ropeproject
+glob:.jedi
 glob:.directory
 glob:**.pyc
 glob:**.orig
--- a/ChangeLog	Mon Jun 27 17:23:51 2022 +0200
+++ b/ChangeLog	Tue Jun 28 08:21:05 2022 +0200
@@ -1,5 +1,8 @@
 ChangeLog
 ---------
+Version 10.0.1:
+- bug fixes
+
 Version 10.0.0:
 - first release of the eric7 variant
 
--- a/PluginPyLint.py	Mon Jun 27 17:23:51 2022 +0200
+++ b/PluginPyLint.py	Tue Jun 28 08:21:05 2022 +0200
@@ -30,7 +30,7 @@
 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
 autoactivate = True
 deactivateable = True
-version = "10.0.0"
+version = "10.0.1"
 className = "PyLintPlugin"
 packageName = "PyLintInterface"
 shortDescription = "Show the PyLint dialogs."
@@ -425,7 +425,7 @@
             loc = self.__ui.getLocale()
             if loc and loc != "C":
                 locale_dir = os.path.join(os.path.dirname(__file__),
-                                          "PyLint", "i18n")
+                                          "PyLintInterface", "i18n")
                 translation = "pylint_{0}".format(loc)
                 translator = QTranslator(None)
                 loaded = translator.load(translation, locale_dir)
Binary file PluginPyLint.zip has changed

eric ide

mercurial