summaryrefslogtreecommitdiff
path: root/gio/gresourcefile.c
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2017-05-19 09:23:56 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2017-05-19 09:24:02 +0900
commit1defe28610e534d9362f90370889275a47f90bf7 (patch)
tree7e31f455c6c09e978d08904fce5d1a01b20387a7 /gio/gresourcefile.c
parent7ae3a4342f42d9432e0d24c17bbcf6ea06232b95 (diff)
downloadglib-1defe28610e534d9362f90370889275a47f90bf7.tar.gz
glib-1defe28610e534d9362f90370889275a47f90bf7.tar.bz2
glib-1defe28610e534d9362f90370889275a47f90bf7.zip
Imported Upstream version 2.51.0
Change-Id: I4219f1e9924abb0277e06eb3575732907a86e82d Signed-off-by: DongHun Kwak <dh0128.kwak@samsung.com>
Diffstat (limited to 'gio/gresourcefile.c')
-rw-r--r--gio/gresourcefile.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gio/gresourcefile.c b/gio/gresourcefile.c
index 6f211f4ff..fde563fd7 100644
--- a/gio/gresourcefile.c
+++ b/gio/gresourcefile.c
@@ -450,7 +450,7 @@ g_resource_file_query_info (GFile *file,
if (g_error_matches (my_error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND))
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
- _("The resource at '%s' does not exist"),
+ _("The resource at “%s” does not exist"),
resource->path);
}
else
@@ -573,7 +573,7 @@ g_resource_file_read (GFile *file,
if (g_error_matches (my_error, G_RESOURCE_ERROR, G_RESOURCE_ERROR_NOT_FOUND))
{
g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
- _("The resource at '%s' does not exist"),
+ _("The resource at “%s” does not exist"),
resource->path);
}
else
@@ -706,11 +706,11 @@ _g_resource_file_enumerator_new (GResourceFile *file,
res = g_resources_get_info (file->path, 0, NULL, NULL, NULL);
if (res)
g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_DIRECTORY,
- _("The resource at '%s' is not a directory"),
+ _("The resource at “%s” is not a directory"),
file->path);
else
g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
- _("The resource at '%s' does not exist"),
+ _("The resource at “%s” does not exist"),
file->path);
return NULL;
}
@@ -914,7 +914,7 @@ g_resource_file_input_stream_seek (GFileInputStream *stream,
if (!G_IS_SEEKABLE (file->stream))
{
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
- _("Input stream doesn't implement seek"));
+ _("Input stream doesn’t implement seek"));
return FALSE;
}