Add 3 remaining mnemonics for popup menu, copy Insert include

mnemonic - even though these have conflicts, just let GTK toggle
between them.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2431 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Nick Treleaven 2008-03-31 16:07:06 +00:00
parent 9dd3382343
commit 099fd5f64b
3 changed files with 12 additions and 8 deletions

View File

@ -5,6 +5,10 @@
Add missing mnemonics (except for 3 popup menu items, ran out of
letters).
Capitalize some menu items.
* src/interface.c, geany.glade:
Add 3 remaining mnemonics for popup menu, copy Insert include
mnemonic - even though these have conflicts, just let GTK toggle
between them.
2008-03-28 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>

View File

@ -2937,7 +2937,7 @@
<child>
<widget class="GtkImageMenuItem" id="insert_include1">
<property name="visible">True</property>
<property name="label" translatable="yes">In_sert &quot;include &lt;...&gt;&quot;</property>
<property name="label" translatable="yes">_Insert &quot;include &lt;...&gt;&quot;</property>
<property name="use_underline">True</property>
<child internal-child="image">
@ -2975,7 +2975,7 @@
<child>
<widget class="GtkImageMenuItem" id="find_usage1">
<property name="visible">True</property>
<property name="label" translatable="yes">Find Usage</property>
<property name="label" translatable="yes">Find _Usage</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_find_usage1_activate" last_modification_time="Fri, 27 May 2005 21:55:12 GMT"/>
@ -2996,7 +2996,7 @@
<child>
<widget class="GtkMenuItem" id="goto_tag_definition1">
<property name="visible">True</property>
<property name="label" translatable="yes">Go to Tag Definition</property>
<property name="label" translatable="yes">Go to _Tag Definition</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_goto_tag_activate" last_modification_time="Sun, 29 May 2005 22:08:28 GMT"/>
</widget>
@ -3005,7 +3005,7 @@
<child>
<widget class="GtkMenuItem" id="goto_tag_declaration1">
<property name="visible">True</property>
<property name="label" translatable="yes">Go to Tag Declaration</property>
<property name="label" translatable="yes">Go to T_ag Declaration</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_goto_tag_activate" last_modification_time="Sun, 29 May 2005 22:08:28 GMT"/>
</widget>

View File

@ -2269,7 +2269,7 @@ create_edit_menu1 (void)
invisible10 = gtk_menu_item_new_with_mnemonic (_("invisible"));
gtk_container_add (GTK_CONTAINER (insert_date2_menu), invisible10);
insert_include1 = gtk_image_menu_item_new_with_mnemonic (_("In_sert \"include <...>\""));
insert_include1 = gtk_image_menu_item_new_with_mnemonic (_("_Insert \"include <...>\""));
gtk_widget_show (insert_include1);
gtk_container_add (GTK_CONTAINER (edit_menu1), insert_include1);
@ -2288,7 +2288,7 @@ create_edit_menu1 (void)
gtk_container_add (GTK_CONTAINER (edit_menu1), separator7);
gtk_widget_set_sensitive (separator7, FALSE);
find_usage1 = gtk_image_menu_item_new_with_mnemonic (_("Find Usage"));
find_usage1 = gtk_image_menu_item_new_with_mnemonic (_("Find _Usage"));
gtk_widget_show (find_usage1);
gtk_container_add (GTK_CONTAINER (edit_menu1), find_usage1);
@ -2296,11 +2296,11 @@ create_edit_menu1 (void)
gtk_widget_show (image1974);
gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (find_usage1), image1974);
goto_tag_definition1 = gtk_menu_item_new_with_mnemonic (_("Go to Tag Definition"));
goto_tag_definition1 = gtk_menu_item_new_with_mnemonic (_("Go to _Tag Definition"));
gtk_widget_show (goto_tag_definition1);
gtk_container_add (GTK_CONTAINER (edit_menu1), goto_tag_definition1);
goto_tag_declaration1 = gtk_menu_item_new_with_mnemonic (_("Go to Tag Declaration"));
goto_tag_declaration1 = gtk_menu_item_new_with_mnemonic (_("Go to T_ag Declaration"));
gtk_widget_show (goto_tag_declaration1);
gtk_container_add (GTK_CONTAINER (edit_menu1), goto_tag_declaration1);