aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-encoding-menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ephy-encoding-menu.c')
-rw-r--r--src/ephy-encoding-menu.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ephy-encoding-menu.c b/src/ephy-encoding-menu.c
index 95b3ed050..b97011bac 100644
--- a/src/ephy-encoding-menu.c
+++ b/src/ephy-encoding-menu.c
@@ -27,6 +27,8 @@
#include "ephy-shell.h"
#include "ephy-debug.h"
+#include <libgnome/gnome-i18n.h>
+
/**
* Private data
*/
@@ -188,7 +190,7 @@ build_group (EggActionGroup *action_group, GString *xml_string, const char *grou
action = g_object_new (EGG_TYPE_ACTION,
"name", verb,
- "label", group,
+ "label", _(group),
NULL);
egg_action_group_add_action (action_group, action);
g_object_unref (action);
@@ -214,7 +216,7 @@ build_charset (EggActionGroup *action_group,
verb = g_strdup_printf ("Charset%d", index);
action = g_object_new (EGG_TYPE_ACTION,
"name", verb,
- "label", info->title,
+ "label", _(info->title),
NULL);
g_signal_connect_closure
(action, "activate",