[Gnucash-changes] r11958 - gnucash/trunk - Add ellipsis to menu labels that require further action from user.

Christian Stimming cstim at cvs.gnucash.org
Wed Nov 16 15:07:19 EST 2005


Author: cstim
Date: 2005-11-16 15:07:18 -0500 (Wed, 16 Nov 2005)
New Revision: 11958
Trac: http://svn.gnucash.org/trac/changeset/11958

Modified:
   gnucash/trunk/ChangeLog
   gnucash/trunk/src/business/business-gnome/gnc-plugin-business.c
Log:
Add ellipsis to menu labels that require further action from user.


Modified: gnucash/trunk/ChangeLog
===================================================================
--- gnucash/trunk/ChangeLog	2005-11-16 20:05:29 UTC (rev 11957)
+++ gnucash/trunk/ChangeLog	2005-11-16 20:07:18 UTC (rev 11958)
@@ -1,5 +1,9 @@
 2005-11-16  Christian Stimming  <stimming at tuhh.de>
 
+	* src/business/business-gnome/gnc-plugin-business.c: Add ellipsis
+	to menu labels that require further action from user. See
+	http://developer.gnome.org/projects/gup/hig/2.0/menus-design.html#menu-item-types
+
 	* po/de.po: Updated German translation by Andreas Köhler
 	<KoehlerAndreas at web.de>
 

Modified: gnucash/trunk/src/business/business-gnome/gnc-plugin-business.c
===================================================================
--- gnucash/trunk/src/business/business-gnome/gnc-plugin-business.c	2005-11-16 20:05:29 UTC (rev 11957)
+++ gnucash/trunk/src/business/business-gnome/gnc-plugin-business.c	2005-11-16 20:07:18 UTC (rev 11958)
@@ -148,67 +148,67 @@
 
 	/* Customer submenu */
 	{ "CustomerMenuAction", NULL, N_("_Customer"), NULL, NULL, NULL },
-	{ "CustomerNewCustomerOpenAction", NULL, N_("_New Customer"), NULL,
+	{ "CustomerNewCustomerOpenAction", NULL, N_("_New Customer..."), NULL,
 	  N_("Open the New Customer dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_customer_new_customer) },
-	{ "CustomerFindCustomerOpenAction", NULL, N_("_Find Customer"), NULL,
+	{ "CustomerFindCustomerOpenAction", NULL, N_("_Find Customer..."), NULL,
 	  N_("Open the Find Customer dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_customer_find_customer) },
-	{ "CustomerNewInvoiceOpenAction", NULL, N_("New _Invoice"), NULL,
+	{ "CustomerNewInvoiceOpenAction", NULL, N_("New _Invoice..."), NULL,
 	  N_("Open the New Invoice dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_customer_new_invoice) },
-	{ "CustomerFindInvoiceOpenAction", NULL, N_("Find In_voice"), NULL,
+	{ "CustomerFindInvoiceOpenAction", NULL, N_("Find In_voice..."), NULL,
 	  N_("Open the Find Invoice dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_customer_find_invoice) },
-	{ "CustomerNewJobOpenAction", NULL, N_("New _Job"), NULL,
+	{ "CustomerNewJobOpenAction", NULL, N_("New _Job..."), NULL,
 	  N_("Open the New Job dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_customer_new_job) },
-	{ "CustomerFindJobOpenAction", NULL, N_("Find Jo_b"), NULL,
+	{ "CustomerFindJobOpenAction", NULL, N_("Find Jo_b..."), NULL,
 	  N_("Open the Find Job dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_customer_find_job) },
-	{ "CustomerProcessPaymentAction", NULL, N_("_Process Payment"), NULL,
+	{ "CustomerProcessPaymentAction", NULL, N_("_Process Payment..."), NULL,
 	  N_("Open the Process Payment dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_customer_process_payment) },
 
 	/* Vendor submenu */
 	{ "VendorMenuAction", NULL, N_("_Vendor"), NULL, NULL, NULL },
-	{ "VendorNewVendorOpenAction", NULL, N_("_New Vendor"), NULL,
+	{ "VendorNewVendorOpenAction", NULL, N_("_New Vendor..."), NULL,
 	  N_("Open the New Vendor dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_vendor_new_vendor) },
-	{ "VendorFindVendorOpenAction", NULL, N_("_Find Vendor"), NULL,
+	{ "VendorFindVendorOpenAction", NULL, N_("_Find Vendor..."), NULL,
 	  N_("Open the Find Vendor dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_vendor_find_vendor) },
-	{ "VendorNewBillOpenAction", NULL, N_("New _Bill"), NULL,
+	{ "VendorNewBillOpenAction", NULL, N_("New _Bill..."), NULL,
 	  N_("Open the New Bill dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_vendor_new_bill) },
-	{ "VendorFindBillOpenAction", NULL, N_("Find Bi_ll"), NULL,
+	{ "VendorFindBillOpenAction", NULL, N_("Find Bi_ll..."), NULL,
 	  N_("Open the Find Bill dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_vendor_find_bill) },
-	{ "VendorNewJobOpenAction", NULL, N_("New _Job"), NULL,
+	{ "VendorNewJobOpenAction", NULL, N_("New _Job..."), NULL,
 	  N_("Open the New Job dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_vendor_new_job) },
-	{ "VendorFindJobOpenAction", NULL, N_("Find Jo_b"), NULL,
+	{ "VendorFindJobOpenAction", NULL, N_("Find Jo_b..."), NULL,
 	  N_("Open the Find Job dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_vendor_find_job) },
-	{ "VendorProcessPaymentAction", NULL, N_("_Process Payment"), NULL,
+	{ "VendorProcessPaymentAction", NULL, N_("_Process Payment..."), NULL,
 	  N_("Open the Process Payment dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_vendor_process_payment) },
 
 	/* Employee submenu */
 	{ "EmployeeMenuAction", NULL, N_("_Employee"), NULL, NULL, NULL },
-	{ "EmployeeNewEmployeeOpenAction", NULL, N_("_New Employee"), NULL,
+	{ "EmployeeNewEmployeeOpenAction", NULL, N_("_New Employee..."), NULL,
 	  N_("Open the New Employee dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_employee_new_employee) },
-	{ "EmployeeFindEmployeeOpenAction", NULL, N_("_Find Employee"), NULL,
+	{ "EmployeeFindEmployeeOpenAction", NULL, N_("_Find Employee..."), NULL,
 	  N_("Open the Find Employee dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_employee_find_employee) },
-	{ "EmployeeNewExpenseVoucherOpenAction", NULL, N_("New _Expense Voucher"), NULL,
+	{ "EmployeeNewExpenseVoucherOpenAction", NULL, N_("New _Expense Voucher..."), NULL,
 	  N_("Open the New Expense Voucher dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_employee_new_expense_voucher) },
-	{ "EmployeeFindExpenseVoucherOpenAction", NULL, N_("Find Expense _Voucher"), NULL,
+	{ "EmployeeFindExpenseVoucherOpenAction", NULL, N_("Find Expense _Voucher..."), NULL,
 	  N_("Open the Find Expense Voucher dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_employee_find_expense_voucher) },
-	{ "EmployeeProcessPaymentAction", NULL, N_("_Process Payment"), NULL,
+	{ "EmployeeProcessPaymentAction", NULL, N_("_Process Payment..."), NULL,
 	  N_("Open the Process Payment dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_employee_process_payment) },
 
@@ -223,16 +223,16 @@
 	  N_("Open the Bills Due Reminder dialog"),
 	  G_CALLBACK (gnc_plugin_business_cmd_bills_due_reminder) },
 	{ "ExportMenuAction", NULL, N_("E_xport"), NULL, NULL, NULL },
-	{ "QSFInvoiceAction", NULL, N_("QSF _Invoice"), NULL,
+	{ "QSFInvoiceAction", NULL, N_("QSF _Invoice..."), NULL,
 	  N_("Export one or more invoices to QSF"),
 	  G_CALLBACK (gnc_plugin_business_cmd_export_invoice) },
-	{ "QSFCustomerAction", NULL, N_("QSF _Customer"), NULL,
+	{ "QSFCustomerAction", NULL, N_("QSF _Customer..."), NULL,
 	  N_("Export one or more customers to QSF"),
 	  G_CALLBACK (gnc_plugin_business_cmd_export_customer) },
-	{ "QSFVendorAction", NULL, N_("QSF _Vendor"), NULL,
+	{ "QSFVendorAction", NULL, N_("QSF _Vendor..."), NULL,
 	  N_("Export one or more vendors to QSF"),
 	  G_CALLBACK (gnc_plugin_business_cmd_export_vendor) },
-	{ "QSFEmployeeAction", NULL, N_("QSF _Employee"), NULL,
+	{ "QSFEmployeeAction", NULL, N_("QSF _Employee..."), NULL,
 	  N_("Export one or more employees to QSF"),
 	  G_CALLBACK (gnc_plugin_business_cmd_export_employee) },
 



More information about the gnucash-changes mailing list