Add ellipsis to menu labels that require further action from user.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@11958 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Christian Stimming 2005-11-16 20:07:18 +00:00
parent 3ec4e0ca9e
commit 4fb764b9f7
2 changed files with 27 additions and 23 deletions

View File

@ -1,5 +1,9 @@
2005-11-16 Christian Stimming <stimming@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@web.de>

View File

@ -148,67 +148,67 @@ static GtkActionEntry gnc_plugin_actions [] =
/* 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 @@ static GtkActionEntry gnc_plugin_actions [] =
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) },