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 | |
| parent | a05609b3f55848ba7b935bfce20de1acff5405f9 (diff) | |
| download | enigma2-c2502ea9d3d2886882e8fd27912e416bfc933567.tar.gz enigma2-c2502ea9d3d2886882e8fd27912e416bfc933567.zip | |
make "Satfinder" and "Positioner setup" translatable
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py | 4 | ||||
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/Satfinder/plugin.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py index e09359ef..880c172c 100644 --- a/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py +++ b/lib/python/Plugins/SystemPlugins/PositionerSetup/plugin.py @@ -562,9 +562,9 @@ def PositionerMain(session, **kwargs): def PositionerSetupStart(menuid): if menuid == "scan": - return [("Positioner setup", PositionerMain)] + return [(_("Positioner setup"), PositionerMain)] else: return [] def Plugins(**kwargs): - return PluginDescriptor(name="Positioner setup", description="Setup your positioner", where = PluginDescriptor.WHERE_SETUP, fnc=PositionerSetupStart) + return PluginDescriptor(name=_("Positioner setup"), description="Setup your positioner", where = PluginDescriptor.WHERE_SETUP, fnc=PositionerSetupStart) 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) |
