From 147ef3a9e89c28d64387f4bf645f48453913c3f8 Mon Sep 17 00:00:00 2001 From: John Scipione Date: Wed, 1 Aug 2012 07:46:44 -0400 Subject: [PATCH] Remove the ellipses for About App in the replicant menu. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- src/kits/interface/Dragger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));