Revision: 1753 http://geany.svn.sourceforge.net/geany/?rev=1753&view=rev Author: ntrel Date: 2007-07-27 04:56:50 -0700 (Fri, 27 Jul 2007)
Log Message: ----------- Use AE spelling of 'color'.
Modified Paths: -------------- trunk/ChangeLog trunk/geany.glade trunk/src/interface.c trunk/src/keybindings.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2007-07-27 11:34:16 UTC (rev 1752) +++ trunk/ChangeLog 2007-07-27 11:56:50 UTC (rev 1753) @@ -12,6 +12,8 @@ Move Color Chooser and Word Count tools to tools.c. * src/plugins.c: Add separator between built-in Tools menu items and plugins. + * src/interface.c, src/keybindings.c, geany.glade: + Use AE spelling of 'color'.
2007-07-26 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/geany.glade =================================================================== --- trunk/geany.glade 2007-07-27 11:34:16 UTC (rev 1752) +++ trunk/geany.glade 2007-07-27 11:56:50 UTC (rev 1753) @@ -1340,7 +1340,7 @@ <widget class="GtkImageMenuItem" id="menu_choose_color1"> <property name="visible">True</property> <property name="tooltip" translatable="yes">Open a color chooser dialog, to interactively pick colors from a palette.</property> - <property name="label" translatable="yes">_Colour Chooser</property> + <property name="label" translatable="yes">_Color Chooser</property> <property name="use_underline">True</property> <signal name="activate" handler="on_show_color_chooser1_activate" last_modification_time="Wed, 22 Jun 2005 18:10:21 GMT"/>
@@ -4408,8 +4408,8 @@ <child> <widget class="GtkCheckButton" id="check_toolbar_colour"> <property name="visible">True</property> - <property name="tooltip" translatable="yes">Display the Colour Chooser button in the toolbar</property> - <property name="label" translatable="yes">Show Colour Chooser button</property> + <property name="tooltip" translatable="yes">Display the Color Chooser button in the toolbar</property> + <property name="label" translatable="yes">Show Color Chooser button</property> <property name="use_underline">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> <property name="focus_on_click">False</property> @@ -4829,7 +4829,7 @@ <widget class="GtkCheckButton" id="checkbutton1"> <property name="tooltip" translatable="yes">Use white text on a black background.</property> <property name="can_focus">True</property> - <property name="label" translatable="yes">Invert syntax highlighting colours</property> + <property name="label" translatable="yes">Invert syntax highlighting colors</property> <property name="use_underline">True</property> <property name="relief">GTK_RELIEF_NORMAL</property> <property name="focus_on_click">True</property> @@ -5121,7 +5121,7 @@ <child> <widget class="GtkRadioButton" id="radio_long_line_background"> <property name="visible">True</property> - <property name="tooltip" translatable="yes">The background colour of characters after the given cursor position (see below) changed to the colour set below. (This is recommended if you use proportional fonts)</property> + <property name="tooltip" translatable="yes">The background color of characters after the given cursor position (see below) changed to the color set below. (This is recommended if you use proportional fonts)</property> <property name="can_focus">True</property> <property name="label" translatable="yes">Background</property> <property name="use_underline">True</property>
Modified: trunk/src/interface.c =================================================================== --- trunk/src/interface.c 2007-07-27 11:34:16 UTC (rev 1752) +++ trunk/src/interface.c 2007-07-27 11:56:50 UTC (rev 1753) @@ -937,7 +937,7 @@ tools1_menu = gtk_menu_new (); gtk_menu_item_set_submenu (GTK_MENU_ITEM (tools1), tools1_menu);
- menu_choose_color1 = gtk_image_menu_item_new_with_mnemonic (_("_Colour Chooser")); + menu_choose_color1 = gtk_image_menu_item_new_with_mnemonic (_("_Color Chooser")); gtk_widget_show (menu_choose_color1); gtk_container_add (GTK_CONTAINER (tools1_menu), menu_choose_color1); gtk_tooltips_set_tip (tooltips, menu_choose_color1, _("Open a color chooser dialog, to interactively pick colors from a palette."), NULL); @@ -3113,11 +3113,11 @@ gtk_tooltips_set_tip (tooltips, check_toolbar_compile, _("Display the Compile and Run buttons in the toolbar"), NULL); gtk_button_set_focus_on_click (GTK_BUTTON (check_toolbar_compile), FALSE);
- check_toolbar_colour = gtk_check_button_new_with_mnemonic (_("Show Colour Chooser button")); + check_toolbar_colour = gtk_check_button_new_with_mnemonic (_("Show Color Chooser button")); gtk_widget_show (check_toolbar_colour); gtk_box_pack_start (GTK_BOX (vbox16), check_toolbar_colour, FALSE, FALSE, 0); GTK_WIDGET_UNSET_FLAGS (check_toolbar_colour, GTK_CAN_FOCUS); - gtk_tooltips_set_tip (tooltips, check_toolbar_colour, _("Display the Colour Chooser button in the toolbar"), NULL); + gtk_tooltips_set_tip (tooltips, check_toolbar_colour, _("Display the Color Chooser button in the toolbar"), NULL); gtk_button_set_focus_on_click (GTK_BUTTON (check_toolbar_colour), FALSE);
check_toolbar_zoom = gtk_check_button_new_with_mnemonic (_("Show Zoom In and Zoom Out buttons")); @@ -3250,7 +3250,7 @@ gtk_widget_show (vbox12); gtk_container_add (GTK_CONTAINER (alignment6), vbox12);
- checkbutton1 = gtk_check_button_new_with_mnemonic (_("Invert syntax highlighting colours")); + checkbutton1 = gtk_check_button_new_with_mnemonic (_("Invert syntax highlighting colors")); gtk_box_pack_start (GTK_BOX (vbox12), checkbutton1, FALSE, FALSE, 0); gtk_tooltips_set_tip (tooltips, checkbutton1, _("Use white text on a black background."), NULL);
@@ -3348,7 +3348,7 @@ radio_long_line_background = gtk_radio_button_new_with_mnemonic (NULL, _("Background")); gtk_widget_show (radio_long_line_background); gtk_box_pack_start (GTK_BOX (hbox5), radio_long_line_background, FALSE, FALSE, 0); - gtk_tooltips_set_tip (tooltips, radio_long_line_background, _("The background colour of characters after the given cursor position (see below) changed to the colour set below. (This is recommended if you use proportional fonts)"), NULL); + gtk_tooltips_set_tip (tooltips, radio_long_line_background, _("The background color of characters after the given cursor position (see below) changed to the color set below. (This is recommended if you use proportional fonts)"), NULL); gtk_radio_button_set_group (GTK_RADIO_BUTTON (radio_long_line_background), radio_long_line_line_group); radio_long_line_line_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (radio_long_line_background));
Modified: trunk/src/keybindings.c =================================================================== --- trunk/src/keybindings.c 2007-07-27 11:34:16 UTC (rev 1752) +++ trunk/src/keybindings.c 2007-07-27 11:56:50 UTC (rev 1753) @@ -187,7 +187,7 @@ GDK_minus, GDK_CONTROL_MASK, "menu_zoomout", _("Zoom Out"));
keys[GEANY_KEYS_MENU_OPENCOLORCHOOSER] = fill(cb_func_menu_opencolorchooser, - 0, 0, "menu_opencolorchooser", _("Show Colour Chooser")); + 0, 0, "menu_opencolorchooser", _("Show Color Chooser")); keys[GEANY_KEYS_MENU_INSERTSPECIALCHARS] = fill(cb_func_menu_insert_specialchars, 0, 0, "menu_insert_specialchars", _("Insert Special HTML Characters"));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.