diff options
| author | acid-burn <acid-burn@opendreambox.org> | 2010-07-24 23:14:58 +0200 |
|---|---|---|
| committer | acid-burn <acid-burn@opendreambox.org> | 2010-07-24 23:14:58 +0200 |
| commit | 996081f3ac0b17e0609fb74b11db49112eeec43e (patch) | |
| tree | e2f0c504897ad678887736c245121ae0e2e5d37a /lib/python/Plugins/SystemPlugins/NetworkWizard | |
| parent | 4279d927998c42abec8cb234162e34f3e42a5021 (diff) | |
| download | enigma2-996081f3ac0b17e0609fb74b11db49112eeec43e.tar.gz enigma2-996081f3ac0b17e0609fb74b11db49112eeec43e.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-x | lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py | 3 |
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 + |
