From 4534b61c412dbfb0a04fc533ababbe85df845761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sun, 11 Apr 2010 16:01:25 +0200 Subject: =?UTF-8?q?Fixed=20translation=20template=20and=20German=20transla?= =?UTF-8?q?tion.=20Thanks=20to=20Andr=C3=A9.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- portato/plugin.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'portato/plugin.py') diff --git a/portato/plugin.py b/portato/plugin.py index ec52314..9d86414 100644 --- a/portato/plugin.py +++ b/portato/plugin.py @@ -443,10 +443,10 @@ class PluginQueue (object): try: exec "from portato.plugins import %s" % p in {} except PluginLoadException, e: - error(_("Loading plugin module '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : e}) + error(_("Loading plugin '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : e}) except: tb = traceback.format_exc() - error(_("Loading plugin module '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : tb}) + error(_("Loading plugin '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : tb}) self._organize() @@ -456,7 +456,7 @@ class PluginQueue (object): try: p._widget_init(window) except PluginLoadException, e: - error(_("Loading widgets plugin '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : e}) + error(_("Loading plugin '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : e}) except: tb = traceback.format_exc() error(_("Loading widgets of plugin '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : tb}) -- cgit v1.2.3