summaryrefslogtreecommitdiff
path: root/gio/gfileoutputstream.c
diff options
context:
space:
mode:
authorPiotr Drąg <piotrdrag@gmail.com>2016-09-30 05:47:15 +0200
committerPiotr Drąg <piotrdrag@gmail.com>2016-10-12 21:30:42 +0200
commit10c490cdfe3ae042f747bd00f787492e2bdb7ed0 (patch)
treeb75b4850b83006add6b6775888f47137d28d780a /gio/gfileoutputstream.c
parentda509fd67d1e78adb20e1e132bd14b2bcbb036f2 (diff)
downloadglib-10c490cdfe3ae042f747bd00f787492e2bdb7ed0.tar.gz
Use Unicode in translatable strings
See https://developer.gnome.org/hig/stable/typography.html https://bugzilla.gnome.org/show_bug.cgi?id=772221
Diffstat (limited to 'gio/gfileoutputstream.c')
-rw-r--r--gio/gfileoutputstream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/gfileoutputstream.c b/gio/gfileoutputstream.c
index 61987ca35..e6e298a75 100644
--- a/gio/gfileoutputstream.c
+++ b/gio/gfileoutputstream.c
@@ -161,7 +161,7 @@ g_file_output_stream_query_info (GFileOutputStream *stream,
info = class->query_info (stream, attributes, cancellable, error);
else
g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
- _("Stream doesn't support query_info"));
+ _("Stream doesn’t support query_info"));
if (cancellable)
g_cancellable_pop_current (cancellable);
@@ -494,7 +494,7 @@ query_info_async_thread (GTask *task,
info = class->query_info (stream, attributes, cancellable, &error);
else
g_set_error_literal (&error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
- _("Stream doesn't support query_info"));
+ _("Stream doesn’t support query_info"));
if (info == NULL)
g_task_return_error (task, error);