diff options
author | Allan Nordhøy <epost@anotheragency.no> | 2017-09-17 04:04:52 +0200 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2017-09-16 22:04:52 -0400 |
commit | a388d0c553f495719204662515945b4c6e0cbdad (patch) | |
tree | 17646f3935093535adfc2c012a23f076b44be9b8 /src/fe-gtk/setup.c | |
parent | 1e5180a148fba9a0c3715df260c2efc23d4c8b56 (diff) |
Spelling: SOCKS5, Byte per second (#2056)
* Spelling: SOCKS5 * SOCKS4/5, Byte per second As per https://en.wikipedia.org/wiki/Data_rate_units
Diffstat (limited to 'src/fe-gtk/setup.c')
-rw-r--r-- | src/fe-gtk/setup.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fe-gtk/setup.c b/src/fe-gtk/setup.c index 66883a37..3d003eef 100644 --- a/src/fe-gtk/setup.c +++ b/src/fe-gtk/setup.c @@ -360,7 +360,7 @@ static const setting filexfer_settings[] = {ST_TOGGLE, N_("Receive window"), P_OFFINTNL(hex_gui_autoopen_recv), 0, 0, 0}, {ST_TOGGLE, N_("Chat window"), P_OFFINTNL(hex_gui_autoopen_chat), 0, 0, 0}, - {ST_HEADER, N_("Maximum File Transfer Speeds (Bytes per Second)"), 0, 0, 0}, + {ST_HEADER, N_("Maximum File Transfer Speeds (Byte per Second)"), 0, 0, 0}, {ST_NUMBER, N_("One upload:"), P_OFFINTNL(hex_dcc_max_send_cps), N_("Maximum speed for one transfer"), 0, 10000000}, {ST_NUMBER, N_("One download:"), P_OFFINTNL(hex_dcc_max_get_cps), @@ -611,8 +611,8 @@ static const char *const proxytypes[] = { N_("(Disabled)"), N_("Wingate"), - N_("Socks4"), - N_("Socks5"), + N_("SOCKS4"), + N_("SOCKS5"), N_("HTTP"), #ifdef USE_LIBPROXY N_("Auto"), @@ -650,7 +650,7 @@ static const setting network_settings[] = {ST_MENU, N_("Use proxy for:"), P_OFFINTNL(hex_net_proxy_use), 0, proxyuse, 0}, {ST_HEADER, N_("Proxy Authentication"), 0, 0, 0, 0}, - {ST_TOGGLE, N_("Use authentication (HTTP or Socks5 only)"), P_OFFINTNL(hex_net_proxy_auth), 0, 0, 0}, + {ST_TOGGLE, N_("Use authentication (HTTP or SOCKS5 only)"), P_OFFINTNL(hex_net_proxy_auth), 0, 0, 0}, {ST_ENTRY, N_("Username:"), P_OFFSETNL(hex_net_proxy_user), 0, 0, sizeof prefs.hex_net_proxy_user}, {ST_ENTRY, N_("Password:"), P_OFFSETNL(hex_net_proxy_pass), 0, GINT_TO_POINTER(1), sizeof prefs.hex_net_proxy_pass}, @@ -928,7 +928,7 @@ setup_menu_cb (GtkWidget *cbox, const setting *set) if (set->list == proxytypes) { - /* only HTTP and Socks5 can use a username/pass */ + /* only HTTP and SOCKS5 can use a username/pass */ gtk_widget_set_sensitive (proxy_user, (n == 3 || n == 4 || n == 5)); gtk_widget_set_sensitive (proxy_pass, (n == 3 || n == 4 || n == 5)); } |