diff options
author | Piotr Drąg <piotrdrag@gmail.com> | 2017-03-14 14:51:49 +0100 |
---|---|---|
committer | Piotr Drąg <piotrdrag@gmail.com> | 2017-03-14 14:51:49 +0100 |
commit | e9fe8868a7c967a39c7a9d6e672835329d0cc15b (patch) | |
tree | 88afaee6f3e490ad64c2c1b95d075c4c2c41968e /gio | |
parent | bb93f3a4aa1181976bc75c03016277e08c16ab8f (diff) | |
download | glib-e9fe8868a7c967a39c7a9d6e672835329d0cc15b.tar.gz |
Use single non-Unicode quotation marks in a new translatable message
Actually, Unicode changes to this file got reverted in
2d56c49b1085ae3ad769e6b59329cf493eb0f8a1. Also, there is
"No such interface '%s'" string already, so we avoid
breaking the string freeze.
Diffstat (limited to 'gio')
-rw-r--r-- | gio/gdbusconnection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/gdbusconnection.c b/gio/gdbusconnection.c index 724ceea8e..e75e47c39 100644 --- a/gio/gdbusconnection.c +++ b/gio/gdbusconnection.c @@ -4606,7 +4606,7 @@ handle_get_all_properties (GDBusConnection *connection, GDBusMessage *reply; reply = g_dbus_message_new_method_error (message, "org.freedesktop.DBus.Error.InvalidArgs", - _("No such interface “%s”"), + _("No such interface '%s'"), interface_name); g_dbus_connection_send_message_unlocked (eo->connection, reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, NULL); g_object_unref (reply); |