Revision: 973 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=973&view=rev Author: frlan Date: 2009-10-04 21:15:56 +0000 (Sun, 04 Oct 2009)
Log Message: ----------- GeanyVC: Improve wording on some of the menu items to make it more clear what's behind menu item.
Modified Paths: -------------- trunk/geany-plugins/geanyvc/src/geanyvc.c
Modified: trunk/geany-plugins/geanyvc/src/geanyvc.c =================================================================== --- trunk/geany-plugins/geanyvc/src/geanyvc.c 2009-09-30 19:43:46 UTC (rev 972) +++ trunk/geany-plugins/geanyvc/src/geanyvc.c 2009-10-04 21:15:56 UTC (rev 973) @@ -2007,7 +2007,7 @@ gtk_container_add(GTK_CONTAINER(cur_file_menu), gtk_separator_menu_item_new());
/* History/log of current file */ - menu_vc_log_file = gtk_menu_item_new_with_mnemonic(_("_History")); + menu_vc_log_file = gtk_menu_item_new_with_mnemonic(_("_History (log)")); gtk_container_add(GTK_CONTAINER(cur_file_menu), menu_vc_log_file); ui_widget_set_tooltip_text(menu_vc_log_file, _("Shows the log of the current file")); @@ -2073,7 +2073,7 @@
gtk_container_add(GTK_CONTAINER(cur_dir_menu), gtk_separator_menu_item_new()); /* History/log of the current dir */ - menu_vc_log_dir = gtk_menu_item_new_with_mnemonic(_("_History")); + menu_vc_log_dir = gtk_menu_item_new_with_mnemonic(_("_History (log)")); gtk_container_add(GTK_CONTAINER(cur_dir_menu), menu_vc_log_dir); ui_widget_set_tooltip_text(menu_vc_log_dir, _("Shows the log of the current directory")); @@ -2114,7 +2114,7 @@ G_CALLBACK(vclog_dir_activated), NULL);
/* Complete History/Log of base directory */ - menu_vc_log_basedir = gtk_menu_item_new_with_mnemonic(_("_History")); + menu_vc_log_basedir = gtk_menu_item_new_with_mnemonic(_("_History (log)")); gtk_container_add(GTK_CONTAINER(basedir_menu), menu_vc_log_basedir); ui_widget_set_tooltip_text(menu_vc_log_basedir, _("Shows the log of the top VC directory"));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.