From 574e99959673cc5b49ddea1fb9c7f6ad6b6977e1 Mon Sep 17 00:00:00 2001 From: Bryce Groff Date: Sun, 17 Oct 2010 20:17:23 +0000 Subject: [PATCH] Re-worded initialization's alert box text. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38991 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/drivesetup/MainWindow.cpp | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/apps/drivesetup/MainWindow.cpp b/src/apps/drivesetup/MainWindow.cpp index 709066176d..c08e94d47a 100644 --- a/src/apps/drivesetup/MainWindow.cpp +++ b/src/apps/drivesetup/MainWindow.cpp @@ -792,15 +792,13 @@ MainWindow::_Initialize(BDiskDevice* disk, partition_id selectedPartition, char message[512]; if (partition->ContentName() && strlen(partition->ContentName()) > 0) { snprintf(message, sizeof(message), B_TRANSLATE("Are you sure you want " - "to initialize the partition \"%s\"? After entering the " - "initialization parameters, you can abort this operation " - "right before writing changes back to the disk."), + "to initialize the partition \"%s\"? You will be asked again " + "before changes are written to the disk."), partition->ContentName()); } else { snprintf(message, sizeof(message), B_TRANSLATE("Are you sure you want " - "to initialize the selected partition? After entering the " - "initialization parameters, you can abort this operation " - "right before writing changes back to the disk.")); + "to initialize the partition? You will be asked again " + "before changes are written to the disk.")); } BAlert* alert = new BAlert("first notice", message, B_TRANSLATE("Continue"), B_TRANSLATE("Cancel"), NULL,