forked from AuroraMiddleware/gtk
Use Unicode quotation marks in new strings
See https://developer.gnome.org/hig/stable/typography.html https://bugzilla.gnome.org/show_bug.cgi?id=772371
This commit is contained in:
parent
a5815ad5c6
commit
794a2bfd00
@ -88,7 +88,7 @@ gdk_content_provider_real_write_mime_type_async (GdkContentProvider *provider,
|
||||
g_task_set_source_tag (task, gdk_content_provider_real_write_mime_type_async);
|
||||
|
||||
g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
||||
_("Cannot provide contents as \"%s\""), mime_type);
|
||||
_("Cannot provide contents as “%s”"), mime_type);
|
||||
g_object_unref (task);
|
||||
}
|
||||
|
||||
|
@ -212,7 +212,7 @@ gdk_content_provider_bytes_write_mime_type_async (GdkContentProvider *provid
|
||||
if (mime_type != content->mime_type)
|
||||
{
|
||||
g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
||||
_("Cannot provide contents as \"%s\""), mime_type);
|
||||
_("Cannot provide contents as “%s”"), mime_type);
|
||||
g_object_unref (task);
|
||||
return;
|
||||
}
|
||||
|
@ -199,7 +199,7 @@ gdk_x11_text_list_converter_encode (GdkX11TextListConverter *conv,
|
||||
else
|
||||
{
|
||||
g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
|
||||
_("Unsupported encoding \"%s\""), conv->encoding);
|
||||
_("Unsupported encoding “%s”"), conv->encoding);
|
||||
return G_CONVERTER_ERROR;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user