diff options
Diffstat (limited to 'module/plugins')
-rw-r--r-- | module/plugins/Plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/Plugin.py b/module/plugins/Plugin.py index cc2fc794e..279edff4d 100644 --- a/module/plugins/Plugin.py +++ b/module/plugins/Plugin.py @@ -313,9 +313,9 @@ class Plugin(Base): if not reason and not type: type = "unknown" - msg = "%s error" % type.strip().capitalize() if type else "Error" + msg = _("%s error") % type.strip().capitalize() if type else _("Error") msg += ": " + reason.strip() if reason else "" - msg += " | Plugin may be out of date" + msg += _(" | Plugin may be out of date") if self.core.debug: print_exc() |