diff --git a/deluge/ui/webui/config_tabs_deluge.py b/deluge/ui/webui/config_tabs_deluge.py index d8f5a4969..5017cb25c 100644 --- a/deluge/ui/webui/config_tabs_deluge.py +++ b/deluge/ui/webui/config_tabs_deluge.py @@ -98,7 +98,7 @@ config_page.register('network','encryption', NetworkEnc) class Proxy(config_forms.CfgForm): title = _("Proxy") _type_choices = list(enumerate( - ["None", _("Socksv4"), _("Socksv5"), _("Socksv5 W/ Auth"),_("HTTP"), _("HTTP W/ Auth")])) + [_("None"), _("Socksv4"), _("Socksv5"), _("Socksv5 W/ Auth"),_("HTTP"), _("HTTP W/ Auth")])) proxy_type = forms.IntChoiceField(_("Type"), _type_choices) proxy_server =forms.CharField(label= _("Host"),required=False) @@ -106,8 +106,6 @@ class Proxy(config_forms.CfgForm): proxy_username = forms.CharField(label= _("Username"), required=False) proxy_password = forms.Password(label= _("Password"), required=False) - - config_page.register('network','proxy', Proxy) class BandwithGlobal(config_forms.CfgForm): @@ -180,7 +178,7 @@ class Queue(config_forms.CfgForm): config_page.register('deluge','queue', Queue) """ -Will be should be a plugin, saved for later use. +Will become a plugin, saved for later use. class Notification(config_forms.CfgForm): title = _("Notification") _security_choices = [(t,t) for t in [None,"SSL","TLS"]]