diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-11-01 08:34:11 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-11-01 08:34:11 +0000 |
| commit | c2502ea9d3d2886882e8fd27912e416bfc933567 (patch) | |
| tree | 58d4b007227a24b8c625ae3e8e89acf6b77e060c /lib/python/Plugins/SystemPlugins/Satfinder/plugin.py | |
| parent | a05609b3f55848ba7b935bfce20de1acff5405f9 (diff) | |
| download | enigma2-c2502ea9d3d2886882e8fd27912e416bfc933567.tar.gz enigma2-c2502ea9d3d2886882e8fd27912e416bfc933567.zip | |
make "Satfinder" and "Positioner setup" translatable
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/Satfinder/plugin.py')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/Satfinder/plugin.py | 4 |
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) |
