Re-worded initialization's alert box text.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38991 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Bryce Groff 2010-10-17 20:17:23 +00:00
parent ce30d635e3
commit 574e999596

View File

@ -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,