Remove the ellipses for About App in the replicant menu.

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.
This commit is contained in:
John Scipione 2012-08-01 07:46:44 -04:00
parent f7010474bb
commit 147ef3a9e8
1 changed files with 1 additions and 1 deletions

View File

@ -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));