diff options
author | Piotr Drąg <piotrdrag@gmail.com> | 2016-10-11 15:18:39 +0200 |
---|---|---|
committer | Piotr Drąg <piotrdrag@gmail.com> | 2017-03-18 17:04:55 +0100 |
commit | 5c69617973690bf75cf911f03e2c47f382e4673a (patch) | |
tree | 89a008c469c215dee0bf53119910a6847189ed9f /json-glib/json-glib-format.c | |
parent | 4171dea099d689dca356fcd5fc45e685cb30b259 (diff) | |
download | json-glib-5c69617973690bf75cf911f03e2c47f382e4673a.tar.gz |
Use Unicode in translatable strings
See https://developer.gnome.org/hig/stable/typography.html
https://bugzilla.gnome.org/show_bug.cgi?id=772753
Diffstat (limited to 'json-glib/json-glib-format.c')
-rw-r--r-- | json-glib/json-glib-format.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/json-glib/json-glib-format.c b/json-glib/json-glib-format.c index 177e8b3..52a40ec 100644 --- a/json-glib/json-glib-format.c +++ b/json-glib/json-glib-format.c @@ -178,7 +178,7 @@ main (int argc, */ g_printerr (_("Error parsing commandline options: %s\n"), error->message); g_printerr ("\n"); - g_printerr (_("Try \"%s --help\" for more information."), g_get_prgname ()); + g_printerr (_("Try “%s --help” for more information."), g_get_prgname ()); g_printerr ("\n"); g_error_free (error); return 1; @@ -192,7 +192,7 @@ main (int argc, */ g_printerr (_("%s: missing files"), g_get_prgname ()); g_printerr ("\n"); - g_printerr (_("Try \"%s --help\" for more information."), g_get_prgname ()); + g_printerr (_("Try “%s --help” for more information."), g_get_prgname ()); g_printerr ("\n"); return 1; } |