From 01b9223aa5856ca9c9b6726b3f3a1924574c3243 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Tue, 19 May 2009 22:08:11 +0000 Subject: [PATCH] Woha, "anyways" is not proper English! Thanks bbjimmy for noticing! git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30805 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/installer/WorkerThread.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apps/installer/WorkerThread.cpp b/src/apps/installer/WorkerThread.cpp index 015ed14ed2..cb818e5bf5 100644 --- a/src/apps/installer/WorkerThread.cpp +++ b/src/apps/installer/WorkerThread.cpp @@ -381,7 +381,7 @@ WorkerThread::_PerformInstall(BMenu *srcMenu, BMenu *targetMenu) } if (entries != 0 && ((new BAlert("", "The target volume is not empty. Are you sure you " - "want to install anyways?", "Install Anyways", "Cancel", 0, + "want to install anyway?", "Install Anyway", "Cancel", 0, B_WIDTH_AS_USUAL, B_STOP_ALERT))->Go() != 0)) { err = B_CANCELED; goto error; @@ -535,7 +535,7 @@ TargetVisitor::Visit(BPartition *partition, int32 level) printf("TargetVisitor::Visit(BPartition *) : %s\n", partition->ContentName()); if (partition->ContentSize() < 20 * 1024 * 1024) { - // reject partitions which are too small anyways + // reject partitions which are too small anyway // TODO: Could depend on the source size printf(" too small\n"); return false; @@ -583,7 +583,7 @@ TargetVisitor::_MakeLabel(BPartition* partition, char* label, char* menuLabel, const char* type = partition->ContentType(); if (type == NULL) type = "Unknown Type"; - + sprintf(label, "%s - %s [%s] (%s)", partition->ContentName(), size, path.Path(), type); } else {