From 28329716413f4311d9188e742e3e8b6eca9b0725 Mon Sep 17 00:00:00 2001 From: Joachim Seemer Date: Sat, 4 Dec 2010 19:27:21 +0000 Subject: [PATCH] Changed wording of installation alert. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39725 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/networkstatus/NetworkStatus.cpp | 7 ++++--- src/apps/processcontroller/PCWorld.cpp | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/src/apps/networkstatus/NetworkStatus.cpp b/src/apps/networkstatus/NetworkStatus.cpp index daf4dc0896..1f387f5292 100644 --- a/src/apps/networkstatus/NetworkStatus.cpp +++ b/src/apps/networkstatus/NetworkStatus.cpp @@ -151,9 +151,10 @@ NetworkStatus::ReadyToRun() } if (isDeskbarRunning && !isInstalled) { - BAlert* alert = new BAlert("", B_TRANSLATE("Do you want NetworkStatus " - "to live in the Deskbar?"), B_TRANSLATE("Don't"), - B_TRANSLATE("Install"), NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT); + BAlert* alert = new BAlert("", B_TRANSLATE("You can run NetworkStatus " + "in a window or install it in Deskbar's tray."), + B_TRANSLATE("Run in window"), B_TRANSLATE("Install in Deskbar"), + NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT); alert->SetShortcut(0, B_ESCAPE); if (alert->Go() == 1) { diff --git a/src/apps/processcontroller/PCWorld.cpp b/src/apps/processcontroller/PCWorld.cpp index 3f9921d179..d1ec2deae9 100644 --- a/src/apps/processcontroller/PCWorld.cpp +++ b/src/apps/processcontroller/PCWorld.cpp @@ -81,9 +81,9 @@ PCApplication::ReadyToRun() BDeskbar deskbar; if (!deskbar.HasItem(kDeskbarItemName)) { // We're not yet installed in the Deskbar, ask if we should - BAlert* alert = new BAlert("", - "Do you want ProcessController to live in the Deskbar?", "Don't", - "Install", NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT); + 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() != 0) {