Fixed an issue causing translations not being loaded. release-10.0.1

Sat, 03 May 2025 16:23:01 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 03 May 2025 16:23:01 +0200
changeset 9
bd9ede602f1c
parent 8
57793d1c3833
child 10
f98d019645f9

Fixed an issue causing translations not being loaded.

PluginExtensionIrc.py file | annotate | diff | comparison | revisions
PluginExtensionIrc.zip file | annotate | diff | comparison | revisions
changelog.md file | annotate | diff | comparison | revisions
--- a/PluginExtensionIrc.py	Sun Apr 20 11:44:46 2025 +0200
+++ b/PluginExtensionIrc.py	Sat May 03 16:23:01 2025 +0200
@@ -25,7 +25,7 @@
     "author": "Detlev Offenbach <detlev@die-offenbachs.de>",
     "autoactivate": True,
     "deactivateable": True,
-    "version": "10.0.0",
+    "version": "10.0.1",
     "className": "IrcExtensionPlugin",
     "packageName": "ExtensionIrc",
     "shortDescription": "This plug-in adds a widget to communicate via IRC messa",
@@ -285,7 +285,7 @@
                 locale_dir = os.path.join(
                     os.path.dirname(__file__), "ExtensionIrc", "i18n"
                 )
-                translation = "icr_{0}".format(loc)
+                translation = "irc_{0}".format(loc)
                 translator = QTranslator(None)
                 loaded = translator.load(translation, locale_dir)
                 if loaded:
Binary file PluginExtensionIrc.zip has changed
--- a/changelog.md	Sun Apr 20 11:44:46 2025 +0200
+++ b/changelog.md	Sat May 03 16:23:01 2025 +0200
@@ -1,6 +1,10 @@
 ChangeLog
 ---------
 
+__Version 10.0.1__
+
+- bug fixes
+
 __Version 10.0.0__
 
 - first release

eric ide

mercurial