aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Satfinder/plugin.py')
-rw-r--r--lib/python/Plugins/SystemPlugins/Satfinder/plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py b/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py
index ac95b285..6325a82f 100644
--- a/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/Satfinder/plugin.py
@@ -279,9 +279,9 @@ def SatfinderMain(session, **kwargs):
def SatfinderStart(menuid):
if menuid == "scan":
- return [("Satfinder", SatfinderMain)]
+ return [(_("Satfinder"), SatfinderMain)]
else:
return []
def Plugins(**kwargs):
- return PluginDescriptor(name="Satfinder", description="Helps setting up your dish", where = PluginDescriptor.WHERE_SETUP, fnc=SatfinderStart)
+ return PluginDescriptor(name=_("Satfinder"), description="Helps setting up your dish", where = PluginDescriptor.WHERE_SETUP, fnc=SatfinderStart)