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:
Piotr Drąg 2017-12-03 18:38:39 +01:00
parent a5815ad5c6
commit 794a2bfd00
3 changed files with 3 additions and 3 deletions

View File

@ -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);
}

View File

@ -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;
}

View File

@ -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;
}