Revision: 1370 http://svn.sourceforge.net/geany/?rev=1370&view=rev Author: eht16 Date: 2007-03-08 04:42:59 -0800 (Thu, 08 Mar 2007)
Log Message: ----------- Fixed wrong tooltip.
Modified Paths: -------------- trunk/ChangeLog trunk/geany.glade trunk/src/interface.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2007-03-06 16:57:09 UTC (rev 1369) +++ trunk/ChangeLog 2007-03-08 12:42:59 UTC (rev 1370) @@ -1,3 +1,8 @@ +2007-03-08 Enrico Tröger enrico.troeger@uvena.de + + * geany.glade, src/interface.c: Fixed wrong tooltip. + + 2007-03-06 Nick Treleaven nick.treleaven@btinternet.com
* src/win32.c, src/callbacks.c, src/keyfile.c, src/document.c,
Modified: trunk/geany.glade =================================================================== --- trunk/geany.glade 2007-03-06 16:57:09 UTC (rev 1369) +++ trunk/geany.glade 2007-03-08 12:42:59 UTC (rev 1370) @@ -3288,7 +3288,7 @@ <child> <widget class="GtkCheckButton" id="check_list_openfiles"> <property name="visible">True</property> - <property name="tooltip" translatable="yes">Toggle the symbol list on and off</property> + <property name="tooltip" translatable="yes">Toggle the open files list on and off</property> <property name="can_focus">True</property> <property name="label" translatable="yes">Show open files list</property> <property name="use_underline">True</property>
Modified: trunk/src/interface.c =================================================================== --- trunk/src/interface.c 2007-03-06 16:57:09 UTC (rev 1369) +++ trunk/src/interface.c 2007-03-08 12:42:59 UTC (rev 1370) @@ -2672,7 +2672,7 @@ check_list_openfiles = gtk_check_button_new_with_mnemonic (_("Show open files list")); gtk_widget_show (check_list_openfiles); gtk_box_pack_start (GTK_BOX (vbox11), check_list_openfiles, FALSE, FALSE, 0); - gtk_tooltips_set_tip (tooltips, check_list_openfiles, _("Toggle the symbol list on and off"), NULL); + gtk_tooltips_set_tip (tooltips, check_list_openfiles, _("Toggle the open files list on and off"), NULL); gtk_button_set_focus_on_click (GTK_BUTTON (check_list_openfiles), FALSE);
label146 = gtk_label_new (_("<b>Sidebar</b>"));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.