X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FPlugins%2FSystemPlugins%2FVideoTune%2Fplugin.py;h=9e90c72e61a722dd644b60478e69c62fe52bbcf8;hp=913a60ae795a7d5096b997f5d898c5fbc5f7c7c9;hb=HEAD;hpb=e99f2b661194ab3534c8fd6d593c453a5f5e4bbf diff --git a/lib/python/Plugins/SystemPlugins/VideoTune/plugin.py b/lib/python/Plugins/SystemPlugins/VideoTune/plugin.py index 913a60a..9e90c72 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, needsRestart = False, fnc=startSetup), + PluginDescriptor(name=_("Video Fine-Tuning Wizard"), where = PluginDescriptor.WHERE_WIZARD, needsRestart = False, fnc=(1, videoFinetuneWizard)) ]