Revision: 1484 http://svn.sourceforge.net/geany/?rev=1484&view=rev Author: ntrel Date: 2007-04-29 04:35:23 -0700 (Sun, 29 Apr 2007)
Log Message: ----------- Rename 'tabulators' 'tabs'.
Modified Paths: -------------- trunk/ChangeLog trunk/geany.glade trunk/src/interface.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2007-04-29 10:57:25 UTC (rev 1483) +++ trunk/ChangeLog 2007-04-29 11:35:23 UTC (rev 1484) @@ -1,3 +1,9 @@ +2007-04-29 Nick Treleaven nick.treleaven@btinternet.com + + * src/interface.c, geany.glade: + Rename 'tabulators' 'tabs'. + + 2007-04-29 Enrico Tröger enrico.troeger@uvena.de
* src/geany.h: Changed default browser to firefox.
Modified: trunk/geany.glade =================================================================== --- trunk/geany.glade 2007-04-29 10:57:25 UTC (rev 1483) +++ trunk/geany.glade 2007-04-29 11:35:23 UTC (rev 1484) @@ -5692,9 +5692,9 @@ <child> <widget class="GtkCheckButton" id="check_use_tabs"> <property name="visible">True</property> - <property name="tooltip" translatable="yes">Whenever some whitespace is inserted by Geany it will use tabulators when enabled otherwise Geany will use just spaces.</property> + <property name="tooltip" translatable="yes">Whenever some whitespace is inserted by Geany it will use tabs when enabled otherwise Geany will use just spaces.</property> <property name="can_focus">True</property> - <property name="label" translatable="yes">Use tabulators when inserting whitespace</property> + <property name="label" translatable="yes">Use tabs when inserting whitespace</property> <property name="use_underline">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> <property name="focus_on_click">False</property>
Modified: trunk/src/interface.c =================================================================== --- trunk/src/interface.c 2007-04-29 10:57:25 UTC (rev 1483) +++ trunk/src/interface.c 2007-04-29 11:35:23 UTC (rev 1484) @@ -3469,10 +3469,10 @@ gtk_tooltips_set_tip (tooltips, check_disable_dnd, _("Disable drag and drop completely in the editor window so you can't drag and drop any selections within or outside of the editor window."), NULL); gtk_button_set_focus_on_click (GTK_BUTTON (check_disable_dnd), FALSE);
- check_use_tabs = gtk_check_button_new_with_mnemonic (_("Use tabulators when inserting whitespace")); + check_use_tabs = gtk_check_button_new_with_mnemonic (_("Use tabs when inserting whitespace")); gtk_widget_show (check_use_tabs); gtk_box_pack_start (GTK_BOX (vbox17), check_use_tabs, FALSE, FALSE, 0); - gtk_tooltips_set_tip (tooltips, check_use_tabs, _("Whenever some whitespace is inserted by Geany it will use tabulators when enabled otherwise Geany will use just spaces."), NULL); + gtk_tooltips_set_tip (tooltips, check_use_tabs, _("Whenever some whitespace is inserted by Geany it will use tabs when enabled otherwise Geany will use just spaces."), NULL); gtk_button_set_focus_on_click (GTK_BUTTON (check_use_tabs), FALSE);
label172 = gtk_label_new (_("<b>Features</b>"));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.