From: Jean-Philippe Orsini Date: Sat, 28 Apr 2012 01:08:37 +0000 (+0000) Subject: fixed i18n support of indicator menu X-Git-Tag: v0.8.0.5~373 X-Git-Url: https://git.wpitchoune.net/gitweb/?p=psensor.git;a=commitdiff_plain;h=fc7e3cbee1da3ec94be41084dbf9ae22bfe0d676 fixed i18n support of indicator menu --- 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",