Changed wording of installation alert.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39725 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
bcbc6fda31
commit
2832971641
@ -151,9 +151,10 @@ NetworkStatus::ReadyToRun()
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (isDeskbarRunning && !isInstalled) {
|
if (isDeskbarRunning && !isInstalled) {
|
||||||
BAlert* alert = new BAlert("", B_TRANSLATE("Do you want NetworkStatus "
|
BAlert* alert = new BAlert("", B_TRANSLATE("You can run NetworkStatus "
|
||||||
"to live in the Deskbar?"), B_TRANSLATE("Don't"),
|
"in a window or install it in Deskbar's tray."),
|
||||||
B_TRANSLATE("Install"), NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT);
|
B_TRANSLATE("Run in window"), B_TRANSLATE("Install in Deskbar"),
|
||||||
|
NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT);
|
||||||
alert->SetShortcut(0, B_ESCAPE);
|
alert->SetShortcut(0, B_ESCAPE);
|
||||||
|
|
||||||
if (alert->Go() == 1) {
|
if (alert->Go() == 1) {
|
||||||
|
@ -81,9 +81,9 @@ PCApplication::ReadyToRun()
|
|||||||
BDeskbar deskbar;
|
BDeskbar deskbar;
|
||||||
if (!deskbar.HasItem(kDeskbarItemName)) {
|
if (!deskbar.HasItem(kDeskbarItemName)) {
|
||||||
// We're not yet installed in the Deskbar, ask if we should
|
// We're not yet installed in the Deskbar, ask if we should
|
||||||
BAlert* alert = new BAlert("",
|
BAlert* alert = new BAlert("", "You can run PowerStatus in a window "
|
||||||
"Do you want ProcessController to live in the Deskbar?", "Don't",
|
"or install it in Deskbar's tray.", "Run in window",
|
||||||
"Install", NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT);
|
"Install in Deskbar", NULL, B_WIDTH_AS_USUAL, B_WARNING_ALERT);
|
||||||
alert->SetShortcut(0, B_ESCAPE);
|
alert->SetShortcut(0, B_ESCAPE);
|
||||||
|
|
||||||
if (alert->Go() != 0) {
|
if (alert->Go() != 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user