[haiku-commits] haiku: hrev54377 - src/apps/installer

  • From: waddlesplash <waddlesplash@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 29 Jun 2020 13:20:25 -0400 (EDT)

hrev54377 adds 1 changeset to branch 'master'
old head: 595b4d406e508a5ddf9efcd86513ff351073f7ef
new head: 72fcffef9db96911d19c0662228d5351747912a1
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=72fcffef9db9+%5E595b4d406e50

----------------------------------------------------------------------------

72fcffef9db9: Installer: GUI change initialize -> format
  
  DriveSetup terminology was changed a while ago. Disks get 'initialized'
  with a partition map. Partitions are 'formatted'.
  
  Change-Id: I600145cdd1ed622378d364aa66a6146aae4a9a87
  Reviewed-on: https://review.haiku-os.org/c/haiku/+/2968
  Reviewed-by: waddlesplash <waddlesplash@xxxxxxxxx>

                                        [ Humdinger <humdingerb@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev54377
Commit:      72fcffef9db96911d19c0662228d5351747912a1
URL:         https://git.haiku-os.org/haiku/commit/?id=72fcffef9db9
Author:      Humdinger <humdingerb@xxxxxxxxx>
Date:        Mon Jun 29 16:26:03 2020 UTC
Committer:   waddlesplash <waddlesplash@xxxxxxxxx>
Commit-Date: Mon Jun 29 17:20:21 2020 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+), 2 deletions(-)
src/apps/installer/InstallerWindow.cpp | 4 ++--

----------------------------------------------------------------------------

diff --git a/src/apps/installer/InstallerWindow.cpp 
b/src/apps/installer/InstallerWindow.cpp
index 897f4d7f58..19b669090f 100644
--- a/src/apps/installer/InstallerWindow.cpp
+++ b/src/apps/installer/InstallerWindow.cpp
@@ -290,7 +290,7 @@ InstallerWindow::InstallerWindow()
        fLaunchDriveSetupButton->SetToolTip(
                B_TRANSLATE("Launch the DriveSetup utility to partition\n"
                "available hard drives and other media.\n"
-               "Partitions can be initialized with the\n"
+               "Partitions can be formatted with the\n"
                "Be File System needed for a Haiku boot\n"
                "partition."));
 //     fLaunchBootManagerItem->SetToolTip(
@@ -444,7 +444,7 @@ InstallerWindow::MessageReceived(BMessage *msg)
                {
                        BAlert* alert = new BAlert("use drive setup", 
B_TRANSLATE("No partitions have "
                                "been found that are suitable for installation. 
Please set "
-                               "up partitions and initialize at least one 
partition with the "
+                               "up partitions and format at least one 
partition with the "
                                "Be File System."), B_TRANSLATE("OK"));
                        alert->SetFlags(alert->Flags() | B_CLOSE_ON_ESCAPE);
                        alert->Go();


Other related posts:

  • » [haiku-commits] haiku: hrev54377 - src/apps/installer - waddlesplash