Changed wording of installation alert.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39726 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Joachim Seemer
2010-12-04 19:27:38 +00:00
parent 2832971641
commit 7cf8a711bc
+4 -3
View File
@@ -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()) {