From 7cf8a711bc34f7dfff270d2473ea68817b247dec Mon Sep 17 00:00:00 2001 From: Joachim Seemer Date: Sat, 4 Dec 2010 19:27:38 +0000 Subject: [PATCH] Changed wording of installation alert. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39726 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/powerstatus/PowerStatus.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/apps/powerstatus/PowerStatus.cpp b/src/apps/powerstatus/PowerStatus.cpp index 647fb8bebd..b5d223297e 100644 --- a/src/apps/powerstatus/PowerStatus.cpp +++ b/src/apps/powerstatus/PowerStatus.cpp @@ -79,9 +79,10 @@ PowerStatus::ReadyToRun() isInstalled = deskbar.HasItem(kDeskbarItemName); } - if (isDeskbarRunning && !isInstalled) { - BAlert* alert = new BAlert("", "Do you want PowerStatus to live in the Deskbar?", - "Don't", "Install", NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT); + if (isDeskbarRunning && !isInstalled) { + BAlert* alert = new BAlert("", "You can run PowerStatus in a window " + "or install it in Deskbar's tray.", "Run in window", + "Install in Deskbar", NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT); alert->SetShortcut(0, B_ESCAPE); if (alert->Go()) {