diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2011-10-02 20:53:09 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2011-10-02 20:53:09 +0200 |
commit | 17dd2d0281bf750768bb9820a677806980380c10 (patch) | |
tree | 7067d7ca64625484dba2c166c52fa2845098119e | |
parent | 2a991852ade4de5ab6ea355a1f2996edb106d08d (diff) | |
download | acritoxinstaller-17dd2d0281bf750768bb9820a677806980380c10.zip acritoxinstaller-17dd2d0281bf750768bb9820a677806980380c10.tar.gz |
recommend gparted instead of cfdisk
-rw-r--r-- | backend/modules/partmgr | 2 | ||||
-rw-r--r-- | wizard/partmansel.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/backend/modules/partmgr b/backend/modules/partmgr index 618406b..281667d 100644 --- a/backend/modules/partmgr +++ b/backend/modules/partmgr @@ -17,7 +17,7 @@ function run_partmgr() function send_partition_managers() { send data partition_managers - for app in cfdisk gparted qtparted fdisk + for app in gparted qtparted fdisk cfdisk do which $app &>/dev/null || continue echo $app diff --git a/wizard/partmansel.cpp b/wizard/partmansel.cpp index ae74f0e..3a3d78b 100644 --- a/wizard/partmansel.cpp +++ b/wizard/partmansel.cpp @@ -35,7 +35,7 @@ void wpPartManSel::receivedDataLine(QString data, QString line) if(app == "cfdisk") { title = tr("cfdisk"); - desc = tr("cfdisk is a curses-based partition editor. It is text-only (curses), but it is easy to use [recommended]"); + desc = tr("cfdisk is a curses-based partition editor. It is text-only (curses), but it is easy to use."); icon = "terminal"; } else if(app == "fdisk") @@ -47,7 +47,7 @@ void wpPartManSel::receivedDataLine(QString data, QString line) else if(app == "gparted") { title = tr("GParted"); - desc = tr("GParted is the Gnome Partition Editor application. It has a Graphical User Interface."); + desc = tr("GParted is the Gnome Partition Editor application. It has a Graphical User Interface. [recommended]"); icon = "gparted"; } else if(app == "qtparted") |