X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Fui.c;h=6d1b509956b2c210d9cb71e9970f67385cb22177;hb=2b51051578ef29b031d0927388c4d62baa3c525e;hp=c62f3266501ea50d37da815e7507143ed6d89daa;hpb=45c8086f97097df36ba8cd0552f152be80f79b12;p=psensor.git diff --git a/src/ui.c b/src/ui.c index c62f326..6d1b509 100644 --- a/src/ui.c +++ b/src/ui.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2011 jeanfi@gmail.com + * Copyright (C) 2010-2012 jeanfi@gmail.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -80,7 +80,7 @@ void ui_show_about_dialog() _("Psensor is a GTK+ application for monitoring " "hardware sensors"), "copyright", - _("Copyright(c) 2010-2011\njeanfi@gmail.com"), + _("Copyright(c) 2010-2012\njeanfi@gmail.com"), "logo-icon-name", "psensor", "program-name", "Psensor", "title", _("About Psensor"), @@ -138,27 +138,28 @@ static const char *menu_desc = ""; static GtkActionEntry entries[] = { - { "PsensorMenuAction", NULL, "_Psensor" }, /* name, stock id, label */ + { "PsensorMenuAction", NULL, "_Psensor" }, - { "PreferencesAction", GTK_STOCK_PREFERENCES, /* name, stock id */ - N_("_Preferences"), NULL, /* label, accelerator */ - N_("Preferences"), /* tooltip */ - G_CALLBACK(cb_preferences) }, + { "PreferencesAction", GTK_STOCK_PREFERENCES, + N_("_Preferences"), NULL, + N_("Preferences"), + G_CALLBACK(cb_preferences) }, - { "SensorPreferencesAction", GTK_STOCK_PREFERENCES, - N_("_Sensor Preferences"), NULL, - N_("Sensor Preferences"), - G_CALLBACK(cb_sensor_preferences) }, + { "SensorPreferencesAction", GTK_STOCK_PREFERENCES, + N_("_Sensor Preferences"), NULL, + N_("Sensor Preferences"), + G_CALLBACK(cb_sensor_preferences) }, - { "QuitAction", - GTK_STOCK_QUIT, N_("_Quit"), NULL, N_("Quit"), G_CALLBACK(cb_menu_quit) }, + { "QuitAction", + GTK_STOCK_QUIT, N_("_Quit"), NULL, N_("Quit"), + G_CALLBACK(cb_menu_quit) }, - { "HelpMenuAction", NULL, "_Help" }, + { "HelpMenuAction", NULL, "_Help" }, - { "AboutAction", GTK_STOCK_PREFERENCES, - N_("_About"), NULL, - N_("About"), - G_CALLBACK(cb_about) } + { "AboutAction", GTK_STOCK_PREFERENCES, + N_("_About"), NULL, + N_("About"), + G_CALLBACK(cb_about) } }; static guint n_entries = G_N_ELEMENTS(entries);