Revision: 2921 http://geany.svn.sourceforge.net/geany/?rev=2921&view=rev Author: eht16 Date: 2008-09-01 14:49:22 +0000 (Mon, 01 Sep 2008)
Log Message: ----------- Fix ambiguous tooltip of new 'Stop scroll at last line' editor pref.
Modified Paths: -------------- trunk/ChangeLog trunk/geany.glade trunk/src/interface.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2008-09-01 11:31:27 UTC (rev 2920) +++ trunk/ChangeLog 2008-09-01 14:49:22 UTC (rev 2921) @@ -22,6 +22,8 @@ * src/vte.c: Mark the VTE as clean when restarting it to make Geany able to execute commands in it. + * geany.glade, src/interface: + Fix ambiguous tooltip of new 'Stop scroll at last line' editor pref.
2008-08-29 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/geany.glade =================================================================== --- trunk/geany.glade 2008-09-01 11:31:27 UTC (rev 2920) +++ trunk/geany.glade 2008-09-01 14:49:22 UTC (rev 2921) @@ -6526,7 +6526,7 @@ <child> <widget class="GtkCheckButton" id="check_scroll_stop_at_last_line"> <property name="visible">True</property> - <property name="tooltip" translatable="yes">Whether to allow scrolling one page past the last line of a document.</property> + <property name="tooltip" translatable="yes">Whether to stop scrolling one page past the last line of a document.</property> <property name="can_focus">True</property> <property name="label" translatable="yes">Stop scrolling at last line</property> <property name="use_underline">True</property> @@ -6941,7 +6941,7 @@ <child> <widget class="GtkCheckButton" id="check_cmdline_new_files"> <property name="visible">True</property> - <property name="tooltip" translatable="yes">Start a new file for each command-line filename that doesn't exist</property> + <property name="tooltip" translatable="yes">Start a new file for each command-line filename that doesn't exist.</property> <property name="can_focus">True</property> <property name="label" translatable="yes">Open new documents from the command-line</property> <property name="use_underline">True</property>
Modified: trunk/src/interface.c =================================================================== --- trunk/src/interface.c 2008-09-01 11:31:27 UTC (rev 2920) +++ trunk/src/interface.c 2008-09-01 14:49:22 UTC (rev 2921) @@ -3923,7 +3923,7 @@ check_scroll_stop_at_last_line = gtk_check_button_new_with_mnemonic (_("Stop scrolling at last line")); gtk_widget_show (check_scroll_stop_at_last_line); gtk_box_pack_start (GTK_BOX (vbox12), check_scroll_stop_at_last_line, FALSE, FALSE, 0); - gtk_tooltips_set_tip (tooltips, check_scroll_stop_at_last_line, _("Whether to allow scrolling one page past the last line of a document."), NULL); + gtk_tooltips_set_tip (tooltips, check_scroll_stop_at_last_line, _("Whether to stop scrolling one page past the last line of a document."), NULL);
label102 = gtk_label_new (_("<b>Display</b>")); gtk_widget_show (label102); @@ -4050,7 +4050,7 @@ check_cmdline_new_files = gtk_check_button_new_with_mnemonic (_("Open new documents from the command-line")); gtk_widget_show (check_cmdline_new_files); gtk_box_pack_start (GTK_BOX (vbox38), check_cmdline_new_files, FALSE, FALSE, 0); - gtk_tooltips_set_tip (tooltips, check_cmdline_new_files, _("Start a new file for each command-line filename that doesn't exist"), NULL); + gtk_tooltips_set_tip (tooltips, check_cmdline_new_files, _("Start a new file for each command-line filename that doesn't exist."), NULL);
table15 = gtk_table_new (1, 2, FALSE); gtk_widget_show (table15);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.