diff options
author | Piotr Drąg <piotrdrag@gmail.com> | 2016-10-03 18:20:03 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2016-12-19 15:08:10 -0500 |
commit | a2da4ddcebcf1c28f49d6a73d2a575be17be873e (patch) | |
tree | 174ad02f69d0695ca753f3433ec25ed9ce82daa8 /gtk/gtkicontheme.c | |
parent | 7331735499e09aeb981f821b540131195a1f31e7 (diff) | |
download | gtk+-a2da4ddcebcf1c28f49d6a73d2a575be17be873e.tar.gz |
Use Unicode in translatable strings
See https://developer.gnome.org/hig/stable/typography.html
https://bugzilla.gnome.org/show_bug.cgi?id=772371
Diffstat (limited to 'gtk/gtkicontheme.c')
-rw-r--r-- | gtk/gtkicontheme.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkicontheme.c b/gtk/gtkicontheme.c index 1d8dd57da1..8b12c02eab 100644 --- a/gtk/gtkicontheme.c +++ b/gtk/gtkicontheme.c @@ -2301,7 +2301,7 @@ gtk_icon_theme_load_icon_for_scale (GtkIconTheme *icon_theme, if (!icon_info) { g_set_error (error, GTK_ICON_THEME_ERROR, GTK_ICON_THEME_NOT_FOUND, - _("Icon '%s' not present in theme %s"), icon_name, icon_theme->priv->current_theme); + _("Icon “%s” not present in theme %s"), icon_name, icon_theme->priv->current_theme); return NULL; } @@ -2365,7 +2365,7 @@ gtk_icon_theme_load_surface (GtkIconTheme *icon_theme, if (!icon_info) { g_set_error (error, GTK_ICON_THEME_ERROR, GTK_ICON_THEME_NOT_FOUND, - _("Icon '%s' not present in theme %s"), icon_name, icon_theme->priv->current_theme); + _("Icon “%s” not present in theme %s"), icon_name, icon_theme->priv->current_theme); return NULL; } |