diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2013-09-03 15:21:04 +0800 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2013-09-03 15:22:20 +0800 |
commit | 62921d430cdaf988c795c43ef61f1706cec46b74 (patch) | |
tree | c9c9ec56069f920a6754eaffe44c2b72c6225e12 | |
parent | 19748ef0dfd3127bb67c147b7d7530904e4f6079 (diff) | |
download | gsoc2013-epiphany-62921d430cdaf988c795c43ef61f1706cec46b74.tar gsoc2013-epiphany-62921d430cdaf988c795c43ef61f1706cec46b74.tar.gz gsoc2013-epiphany-62921d430cdaf988c795c43ef61f1706cec46b74.tar.bz2 gsoc2013-epiphany-62921d430cdaf988c795c43ef61f1706cec46b74.tar.lz gsoc2013-epiphany-62921d430cdaf988c795c43ef61f1706cec46b74.tar.xz gsoc2013-epiphany-62921d430cdaf988c795c43ef61f1706cec46b74.tar.zst gsoc2013-epiphany-62921d430cdaf988c795c43ef61f1706cec46b74.zip |
ephy-bookmark-properties: icon name should not be marked for translation
https://bugzilla.gnome.org/show_bug.cgi?id=707341
-rw-r--r-- | src/bookmarks/ephy-bookmark-properties.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/ephy-bookmark-properties.c b/src/bookmarks/ephy-bookmark-properties.c index 19584c355..bd7542d69 100644 --- a/src/bookmarks/ephy-bookmark-properties.c +++ b/src/bookmarks/ephy-bookmark-properties.c @@ -610,7 +610,7 @@ ephy_bookmark_properties_constructor (GType type, text = g_strdup_printf (ngettext("%d _Similar", "%d _Similar", 0), 0); gtk_button_set_label (GTK_BUTTON (priv->warning), text); g_free (text); - widget = gtk_image_new_from_icon_name (_("dialog-warning"), GTK_ICON_SIZE_BUTTON); + widget = gtk_image_new_from_icon_name ("dialog-warning", GTK_ICON_SIZE_BUTTON); gtk_widget_show (widget); gtk_button_set_image (GTK_BUTTON (priv->warning), widget); g_object_set (priv->warning, "sensitive", FALSE, NULL); |