diff --git a/plugins/NetworkGraph/__init__.py b/plugins/NetworkGraph/__init__.py index 717fd9057..d11f87189 100644 --- a/plugins/NetworkGraph/__init__.py +++ b/plugins/NetworkGraph/__init__.py @@ -1,8 +1,7 @@ - -plugin_name = "Network Activity Graph" +plugin_name = _("Network Activity Graph") plugin_author = "Alon Zakai, Zach Tibbitts" plugin_version = "0.2" -plugin_description = "Network Activity Graph plugin\n\nWritten by Kripkenstein" +plugin_description = _("Network Activity Graph plugin\n\nWritten by Kripkenstein") def deluge_init(deluge_path): diff --git a/plugins/NetworkGraph/plugin.py b/plugins/NetworkGraph/plugin.py index 3f4f21565..896971a77 100644 --- a/plugins/NetworkGraph/plugin.py +++ b/plugins/NetworkGraph/plugin.py @@ -20,7 +20,7 @@ class plugin_NetGraph: self.parentNotebook = self.parent.notebook # print "Parent NOTEBOOK:", self.parentNotebook - self.parentNotebook.append_page(self.topWidget, gtk.Label("Graph")) + self.parentNotebook.append_page(self.topWidget, gtk.Label(_("Graph"))) # print "My INDEX in parentNoteBook:", self.index self.image.show() @@ -156,5 +156,3 @@ class plugin_NetGraph: self.ctx.fill() else: self.ctx.stroke() - -