[Gnucash-changes] r12283 - gnucash/trunk/src - Add some access keys to menu items and buttons.

David Hampton hampton at cvs.gnucash.org
Sat Jan 7 02:28:40 EST 2006


Author: hampton
Date: 2006-01-07 02:28:40 -0500 (Sat, 07 Jan 2006)
New Revision: 12283
Trac: http://svn.gnucash.org/trac/changeset/12283

Modified:
   gnucash/trunk/src/gnome-utils/gnc-file.c
   gnucash/trunk/src/report/report-gnome/gnc-plugin-page-report.c
Log:
Add some access keys to menu items and buttons.

Modified: gnucash/trunk/src/gnome-utils/gnc-file.c
===================================================================
--- gnucash/trunk/src/gnome-utils/gnc-file.c	2006-01-07 07:03:48 UTC (rev 12282)
+++ gnucash/trunk/src/gnome-utils/gnc-file.c	2006-01-07 07:28:40 UTC (rev 12283)
@@ -95,7 +95,7 @@
 		  break;
 	case GNC_FILE_DIALOG_IMPORT:
 		  action = GTK_FILE_CHOOSER_ACTION_OPEN;
-		  okbutton = _("Import");
+		  okbutton = _("_Import");
 		  if (title == NULL)
 			  title = _("Import");
 		  break;
@@ -107,7 +107,7 @@
 		  break;
 	case GNC_FILE_DIALOG_EXPORT:
 		  action = GTK_FILE_CHOOSER_ACTION_SAVE;
-		  okbutton = _("Export");
+		  okbutton = _("_Export");
 		  if (title == NULL)
 			  title = _("Export");
 		  break;

Modified: gnucash/trunk/src/report/report-gnome/gnc-plugin-page-report.c
===================================================================
--- gnucash/trunk/src/report/report-gnome/gnc-plugin-page-report.c	2006-01-07 07:03:48 UTC (rev 12282)
+++ gnucash/trunk/src/report/report-gnome/gnc-plugin-page-report.c	2006-01-07 07:28:40 UTC (rev 12283)
@@ -820,17 +820,17 @@
 
 static GtkActionEntry report_actions[] =
 {
-        { "FilePrintAction", GTK_STOCK_PRINT, N_("Print Report..."), "<control>p", NULL,
+        { "FilePrintAction", GTK_STOCK_PRINT, N_("_Print Report..."), "<control>p", NULL,
           G_CALLBACK(gnc_plugin_page_report_print_cb) },
-        { "ReportSaveAction", GTK_STOCK_SAVE, N_("Save Report"), NULL, 
+        { "ReportSaveAction", GTK_STOCK_SAVE, N_("Save _Report"), NULL, 
 	  N_("Save the current report for later use in "
 	     "~/.gnucash/saved-reports-2.0 so that they are accessible as "
 	     "menu entries in the report menu. Will go into effect at the "
 	     "next startup of gnucash."),
           G_CALLBACK(gnc_plugin_page_report_save_cb) },
-        { "ReportExportAction", GTK_STOCK_CONVERT, N_("Export Report"), NULL, NULL,
+        { "ReportExportAction", GTK_STOCK_CONVERT, N_("Export _Report"), NULL, NULL,
           G_CALLBACK(gnc_plugin_page_report_export_cb) },
-        { "ReportOptionsAction", GTK_STOCK_PROPERTIES, N_("Report Options"), NULL, NULL,
+        { "ReportOptionsAction", GTK_STOCK_PROPERTIES, N_("_Report Options"), NULL, NULL,
           G_CALLBACK(gnc_plugin_page_report_options_cb) },
 
         { "ReportBackAction", GTK_STOCK_GO_BACK, N_("Back"), NULL, NULL,



More information about the gnucash-changes mailing list