anjuta r3549 - in trunk: . manuals/anjuta-manual/C plugins/debug-manager



Author: sgranjoux
Date: Wed Jan 30 20:17:17 2008
New Revision: 3549
URL: http://svn.gnome.org/viewvc/anjuta?rev=3549&view=rev

Log:
	* plugins/debug-manager/data_view.c,
	plugins/debug-manager/sparse_view.c,
	manuals/anjuta-manual/C/debugger.xml:
	Fix #513130, #513131 #513135: Wrong menu item names and errors
	in the documentation


Modified:
   trunk/ChangeLog
   trunk/manuals/anjuta-manual/C/debugger.xml
   trunk/plugins/debug-manager/data_view.c
   trunk/plugins/debug-manager/sparse_view.c

Modified: trunk/manuals/anjuta-manual/C/debugger.xml
==============================================================================
--- trunk/manuals/anjuta-manual/C/debugger.xml	(original)
+++ trunk/manuals/anjuta-manual/C/debugger.xml	Wed Jan 30 20:17:17 2008
@@ -625,7 +625,7 @@
 	has been selected as the current thread). Alternatively, open the 
 	<interface>Operation menu</interface> by right-clicking on the 
 	<interface>Thread list window</interface>, and choose the menu item 
-	<guimenuitem>Set thread</guimenuitem> to set the thread.
+	<guimenuitem>Set current thread</guimenuitem> to set the thread.
    </para>
    <para>
     Changing the thread will change the value of CPU registers and the current
@@ -677,10 +677,9 @@
   <sect2 id="cpu-disassembly">
    <title>Disassembly window</title>
    <para>
-    Choose the menu item <menuchoice><guisubmenu>View</guisubmenu><guimenuitem>Disassembly 
+    Choose the menu item <menuchoice><guisubmenu>View</guisubmenu><guimenuitem>Disassembly
 	</guimenuitem></menuchoice>, to open the <interface>disassembly window</interface>
     for the program being debugged.
-	registers.
    </para>
    <para>
     The first column is the address in hexadecimal. In the second column, you can

Modified: trunk/plugins/debug-manager/data_view.c
==============================================================================
--- trunk/plugins/debug-manager/data_view.c	(original)
+++ trunk/plugins/debug-manager/data_view.c	Wed Jan 30 20:17:17 2008
@@ -26,6 +26,8 @@
 
 #include "sexy-icon-entry.h"
 
+#include <libgnome/gnome-i18n.h>
+
 #include <gdk/gdkkeysyms.h>
 
 #include <stdlib.h>
@@ -378,7 +380,7 @@
 	gtk_widget_show (menu_item);
 
 	/* create goto menu_item. */
-	menu_item = gtk_menu_item_new_with_mnemonic ("_Goto address");
+	menu_item = gtk_menu_item_new_with_mnemonic (_("_Goto address"));
 	g_signal_connect (G_OBJECT (menu_item), "activate",
 			  G_CALLBACK (dma_data_view_goto_activate), view);
 	gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), menu_item);

Modified: trunk/plugins/debug-manager/sparse_view.c
==============================================================================
--- trunk/plugins/debug-manager/sparse_view.c	(original)
+++ trunk/plugins/debug-manager/sparse_view.c	Wed Jan 30 20:17:17 2008
@@ -488,7 +488,7 @@
 	gtk_widget_show (menu_item);
 
 	/* create goto menu_item. */
-	menu_item = gtk_menu_item_new_with_mnemonic ("_Goto address");
+	menu_item = gtk_menu_item_new_with_mnemonic (_("_Goto address"));
 	g_signal_connect (G_OBJECT (menu_item), "activate",
 			  G_CALLBACK (dma_sparse_view_goto_activate), view);
 	gtk_menu_shell_prepend (GTK_MENU_SHELL (menu), menu_item);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]