SF.net SVN: geany: [2431] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Mon Mar 31 16:07:09 UTC 2008


Revision: 2431
          http://geany.svn.sourceforge.net/geany/?rev=2431&view=rev
Author:   ntrel
Date:     2008-03-31 09:07:06 -0700 (Mon, 31 Mar 2008)

Log Message:
-----------
Add 3 remaining mnemonics for popup menu, copy Insert include
mnemonic - even though these have conflicts, just let GTK toggle
between them.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/geany.glade
    trunk/src/interface.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-03-31 13:09:56 UTC (rev 2430)
+++ trunk/ChangeLog	2008-03-31 16:07:06 UTC (rev 2431)
@@ -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>

Modified: trunk/geany.glade
===================================================================
--- trunk/geany.glade	2008-03-31 13:09:56 UTC (rev 2430)
+++ trunk/geany.glade	2008-03-31 16:07:06 UTC (rev 2431)
@@ -2937,7 +2937,7 @@
   <child>
     <widget class="GtkImageMenuItem" id="insert_include1">
       <property name="visible">True</property>
-      <property name="label" translatable="yes">In_sert "include <...>"</property>
+      <property name="label" translatable="yes">_Insert "include <...>"</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>

Modified: trunk/src/interface.c
===================================================================
--- trunk/src/interface.c	2008-03-31 13:09:56 UTC (rev 2430)
+++ trunk/src/interface.c	2008-03-31 16:07:06 UTC (rev 2431)
@@ -2269,7 +2269,7 @@
   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 @@
   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 @@
   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);
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list