mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02:00
Use Unicode in translatable strings
See https://developer.gnome.org/hig/stable/typography.html https://bugzilla.gnome.org/show_bug.cgi?id=772221
This commit is contained in:
@@ -115,7 +115,7 @@ set_connect_msg (guint8 *msg,
|
||||
if (addr_len != 4)
|
||||
{
|
||||
g_set_error (error, G_IO_ERROR, G_IO_ERROR_PROXY_FAILED,
|
||||
_("SOCKSv4 does not support IPv6 address '%s'"),
|
||||
_("SOCKSv4 does not support IPv6 address “%s”"),
|
||||
ip);
|
||||
g_object_unref (addr);
|
||||
return -1;
|
||||
@@ -150,7 +150,7 @@ set_connect_msg (guint8 *msg,
|
||||
if (host_len > SOCKS4_MAX_LEN)
|
||||
{
|
||||
g_set_error (error, G_IO_ERROR, G_IO_ERROR_PROXY_FAILED,
|
||||
_("Hostname '%s' is too long for SOCKSv4 protocol"),
|
||||
_("Hostname “%s” is too long for SOCKSv4 protocol"),
|
||||
hostname);
|
||||
return -1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user