mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Miscellaneous string fixes
Typo and punctuation fixes, and some rewording, based on a patch by Philip Withnall, bug https://bugzilla.gnome.org/review?bug=628193
This commit is contained in:
parent
e4dc223e9d
commit
6bee6dbce5
@ -450,7 +450,7 @@ _g_dbus_address_parse_entry (const gchar *address_entry,
|
||||
g_set_error (error,
|
||||
G_IO_ERROR,
|
||||
G_IO_ERROR_INVALID_ARGUMENT,
|
||||
_("Address element `%s', does not contain a colon (:)"),
|
||||
_("Address element `%s' does not contain a colon (:)"),
|
||||
address_entry);
|
||||
goto out;
|
||||
}
|
||||
@ -471,7 +471,7 @@ _g_dbus_address_parse_entry (const gchar *address_entry,
|
||||
g_set_error (error,
|
||||
G_IO_ERROR,
|
||||
G_IO_ERROR_INVALID_ARGUMENT,
|
||||
_("Key/Value pair %d, `%s', in address element `%s', does not contain an equal sign"),
|
||||
_("Key/Value pair %d, `%s', in address element `%s' does not contain an equal sign"),
|
||||
n,
|
||||
kv_pair,
|
||||
address_entry);
|
||||
|
@ -364,8 +364,8 @@ g_dbus_method_invocation_return_value_internal (GDBusMethodInvocation *invocatio
|
||||
{
|
||||
gchar *type_string = g_variant_type_dup_string (type);
|
||||
|
||||
g_warning ("Type of return value is incorrect, got `%s', expected `%s'",
|
||||
g_variant_get_type_string (parameters), type_string);
|
||||
g_warning ("Type of return value is incorrect: expected `%s', got `%s''",
|
||||
type_string, g_variant_get_type_string (parameters));
|
||||
g_variant_type_free (type);
|
||||
g_free (type_string);
|
||||
goto out;
|
||||
|
@ -425,7 +425,7 @@ g_icon_new_for_string (const gchar *str,
|
||||
g_set_error_literal (error,
|
||||
G_IO_ERROR,
|
||||
G_IO_ERROR_INVALID_ARGUMENT,
|
||||
_("Can't handle the supplied version the icon encoding"));
|
||||
_("Can't handle the supplied version of the icon encoding"));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -1122,8 +1122,8 @@ parse_state_start_schema (ParseState *state,
|
||||
{
|
||||
g_set_error (error, G_MARKUP_ERROR,
|
||||
G_MARKUP_ERROR_INVALID_CONTENT,
|
||||
_("<schema id='%s'> extends not yet "
|
||||
"existing schema '%s'"), id, extends_name);
|
||||
_("<schema id='%s'> extends not-yet-existing "
|
||||
"schema '%s'"), id, extends_name);
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -1138,8 +1138,8 @@ parse_state_start_schema (ParseState *state,
|
||||
{
|
||||
g_set_error (error, G_MARKUP_ERROR,
|
||||
G_MARKUP_ERROR_INVALID_CONTENT,
|
||||
_("<schema id='%s'> is list of not yet "
|
||||
"existing schema '%s'"), id, list_of);
|
||||
_("<schema id='%s'> is list of not-yet-existing "
|
||||
"schema '%s'"), id, list_of);
|
||||
return;
|
||||
}
|
||||
|
||||
@ -1456,7 +1456,7 @@ start_element (GMarkupParseContext *context,
|
||||
element_name, container);
|
||||
else
|
||||
g_set_error (error, G_MARKUP_ERROR, G_MARKUP_ERROR_UNKNOWN_ELEMENT,
|
||||
_("Element <%s> not allowed at toplevel"), element_name);
|
||||
_("Element <%s> not allowed at the top level"), element_name);
|
||||
}
|
||||
/* 2}}} */
|
||||
/* End element {{{2 */
|
||||
@ -1912,7 +1912,7 @@ set_overrides (GHashTable *schema_table,
|
||||
{
|
||||
fprintf (stderr,
|
||||
_("override for key `%s' in schema `%s' in "
|
||||
"override file `%s' is out of the range "
|
||||
"override file `%s' is outside the range "
|
||||
"given in the schema"),
|
||||
key, group, filename);
|
||||
|
||||
|
@ -1675,7 +1675,7 @@ g_socket_get_protocol (GSocket *socket)
|
||||
* @socket: a #GSocket.
|
||||
*
|
||||
* Returns the underlying OS socket object. On unix this
|
||||
* is a socket file descriptor, and on windows this is
|
||||
* is a socket file descriptor, and on Windows this is
|
||||
* a Winsock2 SOCKET handle. This may be useful for
|
||||
* doing platform specific or otherwise unusual operations
|
||||
* on the socket.
|
||||
@ -1874,7 +1874,7 @@ g_socket_bind (GSocket *socket,
|
||||
if (!check_socket (socket, error))
|
||||
return FALSE;
|
||||
|
||||
/* SO_REUSEADDR on windows means something else and is not what we want.
|
||||
/* SO_REUSEADDR on Windows means something else and is not what we want.
|
||||
It always allows the unix variant of SO_REUSEADDR anyway */
|
||||
#ifndef G_OS_WIN32
|
||||
{
|
||||
@ -3822,7 +3822,7 @@ g_socket_send_message (GSocket *socket,
|
||||
if (num_messages != 0)
|
||||
{
|
||||
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
||||
_("GSocketControlMessage not supported on windows"));
|
||||
_("GSocketControlMessage not supported on Windows"));
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -1026,7 +1026,7 @@ g_socket_client_connect (GSocketClient *client,
|
||||
|
||||
g_set_error_literal (&last_error,
|
||||
G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
||||
_("Trying to proxy over non-TCP connection is not supported."));
|
||||
_("Proxying over a non-TCP connection is not supported."));
|
||||
|
||||
g_object_unref (connection);
|
||||
connection = NULL;
|
||||
@ -1483,7 +1483,7 @@ g_socket_client_connected_callback (GObject *source,
|
||||
|
||||
g_set_error_literal (&data->last_error,
|
||||
G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
||||
_("Trying to proxy over non-TCP connection is not supported."));
|
||||
_("Proxying over a non-TCP connection is not supported."));
|
||||
|
||||
enumerator_next_async (data);
|
||||
}
|
||||
|
@ -176,8 +176,8 @@ parse_nego_reply (const guint8 *data,
|
||||
case SOCKS5_AUTH_NO_ACCEPT:
|
||||
default:
|
||||
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_PROXY_AUTH_FAILED,
|
||||
_("The SOCKSv5 proxy requires an authentication method that is not "
|
||||
"supported by GLib."));
|
||||
_("The SOCKSv5 proxy requires an authentication "
|
||||
"method that is not supported by GLib."));
|
||||
return FALSE;
|
||||
break;
|
||||
}
|
||||
|
@ -332,7 +332,7 @@ translate_compile_error (gint *errcode, const gchar **errmsg)
|
||||
*errmsg = _("\\c at end of pattern");
|
||||
break;
|
||||
case G_REGEX_ERROR_UNRECOGNIZED_ESCAPE:
|
||||
*errmsg = _("unrecognized character follows \\");
|
||||
*errmsg = _("unrecognized character following \\");
|
||||
break;
|
||||
case G_REGEX_ERROR_QUANTIFIERS_OUT_OF_ORDER:
|
||||
*errmsg = _("numbers out of order in {} quantifier");
|
||||
|
Loading…
Reference in New Issue
Block a user