summaryrefslogtreecommitdiff
path: root/gtk/encodesymbolic.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/encodesymbolic.c')
-rw-r--r--gtk/encodesymbolic.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/encodesymbolic.c b/gtk/encodesymbolic.c
index e6d01dd5c2..3b24ca7dba 100644
--- a/gtk/encodesymbolic.c
+++ b/gtk/encodesymbolic.c
@@ -276,7 +276,7 @@ main (int argc, char **argv)
symbolic = make_symbolic_pixbuf (path, width, height, &error);
if (symbolic == NULL)
{
- g_printerr (_("Can't load file: %s\n"), error->message);
+ g_printerr (_("Can’t load file: %s\n"), error->message);
return 1;
}
@@ -304,19 +304,19 @@ main (int argc, char **argv)
NULL, &error);
if (out == NULL)
{
- g_printerr (_("Can't save file %s: %s\n"), pngpath, error->message);
+ g_printerr (_("Can’t save file %s: %s\n"), pngpath, error->message);
return 1;
}
if (!gdk_pixbuf_save_to_stream (symbolic, G_OUTPUT_STREAM (out), "png", NULL, &error, NULL))
{
- g_printerr (_("Can't save file %s: %s\n"), pngpath, error->message);
+ g_printerr (_("Can’t save file %s: %s\n"), pngpath, error->message);
return 1;
}
if (!g_output_stream_close (G_OUTPUT_STREAM (out), NULL, &error))
{
- g_printerr (_("Can't close stream"));
+ g_printerr (_("Can’t close stream"));
return 1;
}