summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend/modules/partmgr2
-rw-r--r--wizard/partmansel.cpp4
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")