aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py
diff options
context:
space:
mode:
authoracid-burn <acid-burn@opendreambox.org>2010-01-29 14:51:34 +0100
committeracid-burn <acid-burn@opendreambox.org>2010-01-29 14:51:34 +0100
commit939c323eadd7ec9d3656bfe59a46c630415bdb19 (patch)
treee9cbb2f3369ab12efd260df1e48fc2e56e1d7d2f /lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py
parent2f402fe5d00f8894e69033e1f6015a4483bb9de6 (diff)
downloadenigma2-939c323eadd7ec9d3656bfe59a46c630415bdb19.tar.gz
enigma2-939c323eadd7ec9d3656bfe59a46c630415bdb19.zip
* Remove triple dot "..." from main menu entries and main menu plugin names.
This fixes bug #171 Please enter the commit message for your changes. Lines starting
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py')
-rwxr-xr-xlib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py b/lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py
index dc3becac..49ec7da8 100755
--- a/lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py
+++ b/lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py
@@ -9,7 +9,7 @@ def startSetup(menuid):
if menuid != "system":
return [ ]
- return [(_("Network Wizard") + "...", NetworkWizardMain, "nw_wizard", 40)]
+ return [(_("Network Wizard"), NetworkWizardMain, "nw_wizard", 40)]
def NetworkWizard(*args, **kwargs):
from NetworkWizard import NetworkWizard
@@ -19,4 +19,4 @@ def Plugins(**kwargs):
list = []
if config.misc.firstrun.value:
list.append(PluginDescriptor(name=_("Network Wizard"), where = PluginDescriptor.WHERE_WIZARD, fnc=(25, NetworkWizard)))
- return list
+ return list