aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins/SystemPlugins/NetworkWizard
diff options
context:
space:
mode:
authoracid-burn <acid-burn@opendreambox.org>2010-07-24 23:14:58 +0200
committerghost <andreas.monzner@multimedia-labs.de>2010-07-27 00:28:35 +0200
commit6be1855d457d28e25917a29f710f2401519d7160 (patch)
tree98594882fb891c9e2d5ebae7f6260f34354976d7 /lib/python/Plugins/SystemPlugins/NetworkWizard
parenta4dbb3a4ca8e0926250cbe7be76291448e5e1f56 (diff)
downloadenigma2-6be1855d457d28e25917a29f710f2401519d7160.tar.gz
enigma2-6be1855d457d28e25917a29f710f2401519d7160.zip
Enigma2-Network: update Wlan plugin to support new python-wifi.
some fixes and cleanups. refs #558
Diffstat (limited to 'lib/python/Plugins/SystemPlugins/NetworkWizard')
-rwxr-xr-xlib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py b/lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py
index a8b34acd..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"