diff options
| author | John Scipione <jscipione@gmail.com> | 2012-08-01 07:46:44 -0400 |
|---|---|---|
| committer | John Scipione <jscipione@gmail.com> | 2012-08-01 07:46:44 -0400 |
| commit | 147ef3a9e89c28d64387f4bf645f48453913c3f8 (patch) | |
| tree | 50429fd092dc6114e03c31bfbd0c4c05c5c25ac7 | |
| parent | f7010474bbc31cf0800e1dd0b7d0b03bb1b25b9b (diff) | |
Remove the ellipses for About App in the replicant menu.hrev44451
The ellipsis character (...) after a menu item means that
the command needs more information from the user before
the operation executes.
The ellipsis character doesn’t simply mean that a dialog
box or window will appear.
The window appearing completes the command and doesn’t
require additional input from the user before it executes.
| -rw-r--r-- | src/kits/interface/Dragger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kits/interface/Dragger.cpp b/src/kits/interface/Dragger.cpp index 37f92d68db..fd8f8a2929 100644 --- a/src/kits/interface/Dragger.cpp +++ b/src/kits/interface/Dragger.cpp @@ -740,7 +740,7 @@ BDragger::_BuildDefaultPopUp() if (name != NULL) msg->AddString("target", name); - BString about(B_TRANSLATE("About %app" B_UTF8_ELLIPSIS)); + BString about(B_TRANSLATE("About %app")); about.ReplaceFirst("%app", name); fPopUp->AddItem(new BMenuItem(about.String(), msg)); |
