diff options
author | Piotr Drąg <piotrdrag@gmail.com> | 2016-09-30 05:47:15 +0200 |
---|---|---|
committer | Piotr Drąg <piotrdrag@gmail.com> | 2016-10-12 21:30:42 +0200 |
commit | 10c490cdfe3ae042f747bd00f787492e2bdb7ed0 (patch) | |
tree | b75b4850b83006add6b6775888f47137d28d780a /gio/gthemedicon.c | |
parent | da509fd67d1e78adb20e1e132bd14b2bcbb036f2 (diff) | |
download | glib-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/gthemedicon.c')
-rw-r--r-- | gio/gthemedicon.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/gthemedicon.c b/gio/gthemedicon.c index 3d72bc25f..e1fc74cfe 100644 --- a/gio/gthemedicon.c +++ b/gio/gthemedicon.c @@ -270,7 +270,7 @@ g_themed_icon_class_init (GThemedIconClass *klass) g_object_class_install_property (gobject_class, PROP_USE_DEFAULT_FALLBACKS, g_param_spec_boolean ("use-default-fallbacks", P_("use default fallbacks"), - P_("Whether to use default fallbacks found by shortening the name at '-' characters. Ignores names after the first if multiple names are given."), + P_("Whether to use default fallbacks found by shortening the name at “-” characters. Ignores names after the first if multiple names are given."), FALSE, G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_BLURB | G_PARAM_STATIC_NICK)); } @@ -515,7 +515,7 @@ g_themed_icon_from_tokens (gchar **tokens, g_set_error (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT, - _("Can't handle version %d of GThemedIcon encoding"), + _("Can’t handle version %d of GThemedIcon encoding"), version); goto out; } |