Skip to content

Commit

Permalink
Add "Help" menu item
Browse files Browse the repository at this point in the history
People may very well look for it there when they look for
documentation in general and not for a specific topic
(via the blue "?" buttons).

Updated en.catkeys
  • Loading branch information
humdingerb committed Nov 23, 2024
1 parent 2d4590c commit 8bb3eb1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion locales/en.catkeys
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1 English application/x-vnd.wgp-CapitalBe 1317338280
1 English application/x-vnd.wgp-CapitalBe 3533405837
Year ReportWindow Year
None ReportWindow None
Export to QIF file… MainWindow Export to QIF file…
Expand Down Expand Up @@ -251,6 +251,7 @@ Quick balance failed. This doesn't mean that you did something wrong - it's just
You need to have an account created in order to reconcile it. MainWindow You need to have an account created in order to reconcile it.
Payee is missing TextInput Payee is missing
CapitalBe didn't understand the date you entered TextInput CapitalBe didn't understand the date you entered
Help… MainWindow Help…
Recalculate all BudgetWindow Recalculate all
Quarterly BudgetWindow Quarterly
You created the new category '%categoryname%'.\n\nPlease select a transaction type for it, 'income' or 'expenses'. CategoryWindow You created the new category '%categoryname%'.\n\nPlease select a transaction type for it, 'income' or 'expenses'.
Expand Down
2 changes: 2 additions & 0 deletions src/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ MainWindow::MainWindow(BRect frame, BPath lastFile)
= new BMenuItem(B_TRANSLATE("Clear filter"), new BMessage(M_CLEAR_FILTER), 'L');
menu->AddItem(clearFilter);
menu->AddSeparatorItem();
menu->AddItem(
new BMenuItem(B_TRANSLATE("Help" B_UTF8_ELLIPSIS), new BMessage(M_HELP)));
menu->AddItem(
new BMenuItem(B_TRANSLATE("Report a bug" B_UTF8_ELLIPSIS), new BMessage(M_REPORT_BUG)));
BMenuItem* item
Expand Down

0 comments on commit 8bb3eb1

Please sign in to comment.