Use AE spelling of 'color'.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1753 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2007-07-27 11:56:50 +00:00
parent be04740016
commit 2e500fb403
4 changed files with 13 additions and 11 deletions

View File

@ -12,6 +12,8 @@
Move Color Chooser and Word Count tools to tools.c. Move Color Chooser and Word Count tools to tools.c.
* src/plugins.c: * src/plugins.c:
Add separator between built-in Tools menu items and plugins. 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> 2007-07-26 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>

View File

@ -1340,7 +1340,7 @@
<widget class="GtkImageMenuItem" id="menu_choose_color1"> <widget class="GtkImageMenuItem" id="menu_choose_color1">
<property name="visible">True</property> <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="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> <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"/> <signal name="activate" handler="on_show_color_chooser1_activate" last_modification_time="Wed, 22 Jun 2005 18:10:21 GMT"/>
@ -4408,8 +4408,8 @@ Bottom
<child> <child>
<widget class="GtkCheckButton" id="check_toolbar_colour"> <widget class="GtkCheckButton" id="check_toolbar_colour">
<property name="visible">True</property> <property name="visible">True</property>
<property name="tooltip" translatable="yes">Display the Colour Chooser button in the toolbar</property> <property name="tooltip" translatable="yes">Display the Color Chooser button in the toolbar</property>
<property name="label" translatable="yes">Show Colour Chooser button</property> <property name="label" translatable="yes">Show Color Chooser button</property>
<property name="use_underline">True</property> <property name="use_underline">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property> <property name="relief">GTK_RELIEF_NORMAL</property>
<property name="focus_on_click">False</property> <property name="focus_on_click">False</property>
@ -4829,7 +4829,7 @@ Bottom
<widget class="GtkCheckButton" id="checkbutton1"> <widget class="GtkCheckButton" id="checkbutton1">
<property name="tooltip" translatable="yes">Use white text on a black background.</property> <property name="tooltip" translatable="yes">Use white text on a black background.</property>
<property name="can_focus">True</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="use_underline">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property> <property name="relief">GTK_RELIEF_NORMAL</property>
<property name="focus_on_click">True</property> <property name="focus_on_click">True</property>
@ -5121,7 +5121,7 @@ Bottom
<child> <child>
<widget class="GtkRadioButton" id="radio_long_line_background"> <widget class="GtkRadioButton" id="radio_long_line_background">
<property name="visible">True</property> <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="can_focus">True</property>
<property name="label" translatable="yes">Background</property> <property name="label" translatable="yes">Background</property>
<property name="use_underline">True</property> <property name="use_underline">True</property>

View File

@ -937,7 +937,7 @@ create_window1 (void)
tools1_menu = gtk_menu_new (); tools1_menu = gtk_menu_new ();
gtk_menu_item_set_submenu (GTK_MENU_ITEM (tools1), tools1_menu); 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_widget_show (menu_choose_color1);
gtk_container_add (GTK_CONTAINER (tools1_menu), 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); 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 @@ create_prefs_dialog (void)
gtk_tooltips_set_tip (tooltips, check_toolbar_compile, _("Display the Compile and Run buttons in the toolbar"), NULL); 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); 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_widget_show (check_toolbar_colour);
gtk_box_pack_start (GTK_BOX (vbox16), check_toolbar_colour, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (vbox16), check_toolbar_colour, FALSE, FALSE, 0);
GTK_WIDGET_UNSET_FLAGS (check_toolbar_colour, GTK_CAN_FOCUS); 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); 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")); check_toolbar_zoom = gtk_check_button_new_with_mnemonic (_("Show Zoom In and Zoom Out buttons"));
@ -3250,7 +3250,7 @@ create_prefs_dialog (void)
gtk_widget_show (vbox12); gtk_widget_show (vbox12);
gtk_container_add (GTK_CONTAINER (alignment6), 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_box_pack_start (GTK_BOX (vbox12), checkbutton1, FALSE, FALSE, 0);
gtk_tooltips_set_tip (tooltips, checkbutton1, _("Use white text on a black background."), NULL); gtk_tooltips_set_tip (tooltips, checkbutton1, _("Use white text on a black background."), NULL);
@ -3348,7 +3348,7 @@ create_prefs_dialog (void)
radio_long_line_background = gtk_radio_button_new_with_mnemonic (NULL, _("Background")); radio_long_line_background = gtk_radio_button_new_with_mnemonic (NULL, _("Background"));
gtk_widget_show (radio_long_line_background); gtk_widget_show (radio_long_line_background);
gtk_box_pack_start (GTK_BOX (hbox5), radio_long_line_background, FALSE, FALSE, 0); 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); 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)); radio_long_line_line_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (radio_long_line_background));

View File

@ -187,7 +187,7 @@ void keybindings_init(void)
GDK_minus, GDK_CONTROL_MASK, "menu_zoomout", _("Zoom Out")); GDK_minus, GDK_CONTROL_MASK, "menu_zoomout", _("Zoom Out"));
keys[GEANY_KEYS_MENU_OPENCOLORCHOOSER] = fill(cb_func_menu_opencolorchooser, 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, keys[GEANY_KEYS_MENU_INSERTSPECIALCHARS] = fill(cb_func_menu_insert_specialchars,
0, 0, "menu_insert_specialchars", _("Insert Special HTML Characters")); 0, 0, "menu_insert_specialchars", _("Insert Special HTML Characters"));