diff options
author | Piotr Drąg <piotrdrag@gmail.com> | 2017-04-10 15:40:42 +0200 |
---|---|---|
committer | Piotr Drąg <piotrdrag@gmail.com> | 2017-04-10 15:40:42 +0200 |
commit | 77d00030e59b123c1e5eef708eacd4cf685253c3 (patch) | |
tree | 7a9b9a8b8b0c44e7d16d2607dfb55b8f581d5a3b | |
parent | f952fdf3fcb00946317ecb2672e9d2c99c74c7a3 (diff) | |
download | glib-77d00030e59b123c1e5eef708eacd4cf685253c3.tar.gz |
gio-tool: Fix closing Unicode quotation mark
See https://developer.gnome.org/hig/stable/typography.html
https://bugzilla.gnome.org/show_bug.cgi?id=772221
-rw-r--r-- | gio/gio-tool-set.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/gio-tool-set.c b/gio/gio-tool-set.c index 87eea9d1f..ada62c2b1 100644 --- a/gio/gio-tool-set.c +++ b/gio/gio-tool-set.c @@ -177,7 +177,7 @@ handle_set (int argc, char *argv[], gboolean do_help) break; case G_FILE_ATTRIBUTE_TYPE_OBJECT: default: - print_error (_("Invalid attribute type “%s“"), attr_type); + print_error (_("Invalid attribute type “%s”"), attr_type); return 1; } |