aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/NetworkWizard
diff options
context:
space:
mode:
authoracid-burn <acid-burn@opendreambox.org>2010-10-05 12:57:56 +0200
committeracid-burn <acid-burn@opendreambox.org>2010-10-05 12:57:56 +0200
commitb6da0afe0cd5cf7ba08427fd1b8e2fe9bb270901 (patch)
tree5d6fa8fb417a3ec0c90a6a1f068ef883f630495c /lib/python/Plugins/SystemPlugins/NetworkWizard
parente2be31452f7c2d90fa7008583f36d6a6583cc83a (diff)
parent996081f3ac0b17e0609fb74b11db49112eeec43e (diff)
downloadenigma2-b6da0afe0cd5cf7ba08427fd1b8e2fe9bb270901.tar.gz
enigma2-b6da0afe0cd5cf7ba08427fd1b8e2fe9bb270901.zip
Merge commit 'origin/bug_558_wlanfixes'
Conflicts: lib/python/Components/Network.py
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/NetworkWizard')
-rwxr-xr-xlib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py b/lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py
index 6096ca8b..d7e83072 100755
--- a/lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py
+++ b/lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py
@@ -257,7 +257,7 @@ class NetworkWizard(WizardLanguage, Rc):
text1 = _("Your Dreambox is now ready to use.\n\nYour internet connection is working now.\n\n")
text2 = _('Accesspoint:') + "\t" + str(status[self.selectedInterface]["acesspoint"]) + "\n"
text3 = _('SSID:') + "\t" + str(status[self.selectedInterface]["essid"]) + "\n"
- text4 = _('Link Quality:') + "\t" + str(status[self.selectedInterface]["quality"])+"%" + "\n"
+ text4 = _('Link Quality:') + "\t" + str(status[self.selectedInterface]["quality"])+ "\n"
text5 = _('Signal Strength:') + "\t" + str(status[self.selectedInterface]["signal"]) + "\n"
text6 = _('Bitrate:') + "\t" + str(status[self.selectedInterface]["bitrate"]) + "\n"
text7 = _('Encryption:') + " " + str(status[self.selectedInterface]["encryption"]) + "\n"
@@ -421,3 +421,4 @@ class NetworkWizard(WizardLanguage, Rc):
def ChoicesSelectionMoved(self):
pass
+