mirror of
https://github.com/gryf/wicd.git
synced 2025-12-22 05:48:03 +01:00
.bzrignore: Added files generated from the build to .bzrignore
wicd/misc.py: Decode all unicode fonts before a client handles them. Prevents wicd-curses from dying due to having to display non-latin characters.
This commit is contained in:
16
.bzrignore
16
.bzrignore
@@ -3,3 +3,19 @@ install.log
|
|||||||
uninstall.log
|
uninstall.log
|
||||||
.bzrignore
|
.bzrignore
|
||||||
vcsinfo.py
|
vcsinfo.py
|
||||||
|
build/*
|
||||||
|
init/*/*
|
||||||
|
man/wicd-curses.8
|
||||||
|
man/wicd-manager-settings.conf.5
|
||||||
|
man/wicd-wired-settings.conf.5
|
||||||
|
man/wicd-wireless-settings.conf.5
|
||||||
|
man/wicd.8
|
||||||
|
other/50-wicd-suspend.sh
|
||||||
|
other/55wicd
|
||||||
|
other/80-wicd-connect.sh
|
||||||
|
other/WHEREAREMYFILES
|
||||||
|
other/wicd.conf
|
||||||
|
scripts/wicd
|
||||||
|
scripts/wicd-client
|
||||||
|
scripts/wicd-curses
|
||||||
|
wicd/wpath.py
|
||||||
|
|||||||
10
wicd/misc.py
10
wicd/misc.py
@@ -529,7 +529,7 @@ def get_language_list_gui():
|
|||||||
language['stop_showing_chooser'] = _('Stop Showing Autoconnect pop-up temporarily')
|
language['stop_showing_chooser'] = _('Stop Showing Autoconnect pop-up temporarily')
|
||||||
language['display_type_dialog'] = _('Use dBm to measure signal strength')
|
language['display_type_dialog'] = _('Use dBm to measure signal strength')
|
||||||
language['scripts'] = _('Scripts')
|
language['scripts'] = _('Scripts')
|
||||||
language['invalid_address'] = _('Invalid address in $A entry.')
|
#language['invalid_address'] = _('Invalid address in $A entry.')
|
||||||
language['global_settings'] = _('Use these settings for all networks sharing this essid')
|
language['global_settings'] = _('Use these settings for all networks sharing this essid')
|
||||||
language['encrypt_info_missing'] = _('Required encryption information is missing.')
|
language['encrypt_info_missing'] = _('Required encryption information is missing.')
|
||||||
language['enable_encryption'] = _('This network requires encryption to be enabled.')
|
language['enable_encryption'] = _('This network requires encryption to be enabled.')
|
||||||
@@ -614,6 +614,14 @@ def get_language_list_gui():
|
|||||||
language['wicd_curses'] = _("Wicd Curses Interface")
|
language['wicd_curses'] = _("Wicd Curses Interface")
|
||||||
language['dbus_fail'] = _("DBus failure! This is most likely caused by the wicd daemon stopping while wicd-curses is running. Please restart the daemon, and then restart wicd-curses.")
|
language['dbus_fail'] = _("DBus failure! This is most likely caused by the wicd daemon stopping while wicd-curses is running. Please restart the daemon, and then restart wicd-curses.")
|
||||||
|
|
||||||
|
# Fix strings in wicd-curses
|
||||||
|
for i in language.keys():
|
||||||
|
try :
|
||||||
|
language[i] = language[i].decode('utf8')
|
||||||
|
except:
|
||||||
|
print "\"%s\"" % language[i]
|
||||||
|
raise
|
||||||
|
|
||||||
|
|
||||||
return language
|
return language
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user