From fc7e3cbee1da3ec94be41084dbf9ae22bfe0d676 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Sat, 28 Apr 2012 01:08:37 +0000 Subject: [PATCH] fixed i18n support of indicator menu --- src/ui_appindicator.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/ui_appindicator.c b/src/ui_appindicator.c index 24781f2..7961100 100644 --- a/src/ui_appindicator.c +++ b/src/ui_appindicator.c @@ -103,25 +103,25 @@ static GtkActionEntry entries[] = { { "PsensorMenuAction", NULL, "_Psensor" }, { "ShowAction", NULL, - "_Show", NULL, - "Show", + N_("_Show"), NULL, + N_("Show"), G_CALLBACK(cb_menu_show) }, { "PreferencesAction", GTK_STOCK_PREFERENCES, - "_Preferences", NULL, - "Preferences", + N_("_Preferences"), NULL, + N_("Preferences"), G_CALLBACK(cb_menu_preferences) }, { "SensorPreferencesAction", GTK_STOCK_PREFERENCES, - "S_ensor Preferences", + N_("S_ensor Preferences"), NULL, - "SensorPreferences", + N_("SensorPreferences"), G_CALLBACK(cb_sensor_preferences) }, { "AboutAction", NULL, - "_About", + N_("_About"), NULL, - "About", + N_("About"), G_CALLBACK(cb_about) }, { "QuitAction", -- 2.7.4