aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/VideoTune/plugin.py
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2008-03-27 17:35:34 +0000
committerAndreas Oberritter <obi@opendreambox.org>2008-03-27 17:35:34 +0000
commit750fe0df203d6cada1c39f243479d1967f398f55 (patch)
tree55c850b1b792bf6c544ca7ec526bcb21f0b2daa8 /lib/python/Plugins/SystemPlugins/VideoTune/plugin.py
parentd1afa9841db0310c380b78a6ac0c0875241ef200 (diff)
downloadenigma2-750fe0df203d6cada1c39f243479d1967f398f55.tar.gz
enigma2-750fe0df203d6cada1c39f243479d1967f398f55.zip
preparation for translations
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/VideoTune/plugin.py')
-rw-r--r--lib/python/Plugins/SystemPlugins/VideoTune/plugin.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Plugins/SystemPlugins/VideoTune/plugin.py b/lib/python/Plugins/SystemPlugins/VideoTune/plugin.py
index 913a60ae..1b62206f 100644
--- a/lib/python/Plugins/SystemPlugins/VideoTune/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/VideoTune/plugin.py
@@ -11,7 +11,7 @@ def videoFinetuneWizard(*args, **kwargs):
from Components.config import config
show_testcard = config.misc.showtestcard.value
except KeyError:
- print "not showing finetune wizard, config variable doesn't exist"
+ print "not showing fine-tuning wizard, config variable doesn't exist"
if show_testcard:
from VideoFinetune import VideoFinetune
config.misc.showtestcard.value = False
@@ -30,10 +30,10 @@ def startSetup(menuid):
if menuid != "system":
return [ ]
- return [(("Video Finetune"), videoFinetuneMain, "video_finetune", None)]
+ return [(_("Video Fine-Tuning"), videoFinetuneMain, "video_finetune", None)]
def Plugins(**kwargs):
return [
- PluginDescriptor(name=("Video Finetune"), description=("Fine-tune your video"), where = PluginDescriptor.WHERE_MENU, fnc=startSetup),
- PluginDescriptor(name=("Video Finetune Wizard"), where = PluginDescriptor.WHERE_WIZARD, fnc=(1, videoFinetuneWizard))
+ PluginDescriptor(name=_("Video Fine-Tuning"), description=_("fine-tune your display"), where = PluginDescriptor.WHERE_MENU, fnc=startSetup),
+ PluginDescriptor(name=_("Video Fine-Tuning Wizard"), where = PluginDescriptor.WHERE_WIZARD, fnc=(1, videoFinetuneWizard))
]