1
0
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:
Andrew Psaltis
2009-02-20 21:44:16 -05:00
parent 88b179c154
commit 8366c74c08
2 changed files with 25 additions and 1 deletions

View File

@@ -3,3 +3,19 @@ install.log
uninstall.log
.bzrignore
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

View File

@@ -529,7 +529,7 @@ def get_language_list_gui():
language['stop_showing_chooser'] = _('Stop Showing Autoconnect pop-up temporarily')
language['display_type_dialog'] = _('Use dBm to measure signal strength')
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['encrypt_info_missing'] = _('Required encryption information is missing.')
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['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