Tracker: Fix "Select" shortcut

* Quick sentense-casing fix to AboutWindow.

* Probably some copy&paste mishap.
  Fixes #19596

Change-Id: Ic7193cceaa9ad3da771c2d8e950a52234f0e7b64
Reviewed-on: https://review.haiku-os.org/c/haiku/+/9317
Reviewed-by: waddlesplash <[email protected]>
Tested-by: Commit checker robot <[email protected]>
This commit is contained in:
Humdinger
2025-05-31 20:58:02 +00:00
committed by Adrien Destugues
parent 66032c9f31
commit e5a6a906f8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -527,7 +527,7 @@ BAboutWindow::AddSpecialThanks(const char** thanks)
if (thanks == NULL)
return;
const char* specialThanks = B_TRANSLATE_MARK("Special Thanks:");
const char* specialThanks = B_TRANSLATE_MARK("Special thanks:");
specialThanks = gSystemCatalog.GetString(specialThanks, "AboutWindow");
AddText(specialThanks, thanks);
+1 -1
View File
@@ -677,7 +677,7 @@ TShortcuts::ReverseOrderLabel()
BMenuItem*
TShortcuts::SelectItem()
{
return new BMenuItem(SelectLabel(), new BMessage(kShowSelectionWindow), 'A', B_SHIFT_KEY);
return new BMenuItem(SelectLabel(), new BMessage(kShowSelectionWindow), 'A');
}