summaryrefslogtreecommitdiffstats
path: root/abs/core/mythinstall/installationtype.cpp.patch
blob: bbb269356548e63ebcd30b622ac434a2a6784976 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
--- installationtype.cpp.orig	2013-12-06 01:40:00.625732158 +0000
+++ installationtype.cpp	2013-12-06 17:28:37.733758564 +0000
@@ -28,13 +28,13 @@
 static HostComboBox *HOSTinstallationtype()
 {
     HostComboBox *gc = new HostComboBox("HOSTinstallationtype");
-    gc->setLabel(QObject::tr("Upgrade or Full install"));
+    gc->setLabel(QObject::tr("Installation Type"));
     gc->addSelection("Full/Auto") ;
 
     gc->addSelection("Upgrade");
 
     //gc->setValue("Full/Auto");
-    gc->setHelpText(QObject::tr("A full install will erase the entire drive and repartition.  An upgrade will only format or overlay the first parition of the drive."));
+    gc->setHelpText(QObject::tr("Full install will erase the entire drive and repartition. Upgrade will format only the first parition of the drive. Only LinHES R8.0 or newer can use Upgrade."));
 
     return gc;
 }
@@ -48,7 +48,7 @@
 #endif
     gc->setLabel(QObject::tr("OS size (GB)"));
     gc->setValue(2);
-    gc->setHelpText(QObject::tr(""  ));
+    gc->setHelpText(QObject::tr("Amount of space allocated for the root OS."  ));
 
     return gc;
 }
@@ -68,7 +68,7 @@
     HostSpinBox *gc = new HostSpinBox("HOSTHOMEsize", 1, 1500, 1, true);
     gc->setLabel(QObject::tr("Home dir size (GB)"));
     gc->setValue(3);
-    gc->setHelpText(QObject::tr("Amount of space allocated for home directories.   Three - Five GB will be sufficient for most people.  This space will be formatted the same as the root OS"  ));
+    gc->setHelpText(QObject::tr("Amount of space allocated for the home directories partition. Three to five GB will be sufficient for most people. The home partition will be the same filesystem as the root OS."  ));
 
     return gc;
 }
@@ -79,7 +79,7 @@
     HostSpinBox *gc = new HostSpinBox("HOSTDatabasesize", 1, 20, 1, true);
     gc->setLabel(QObject::tr("Database partition size (GB)"));
     gc->setValue(4);
-    gc->setHelpText(QObject::tr("Amount of space allocated for the database. One or Two  GB is more then enough for the avg user.  This space will be formated with ext3"  ));
+    gc->setHelpText(QObject::tr("Amount of space allocated for the database partition. Two GB is more then enough for most people. The database partition space will be formatted with the ext3 filesystem."  ));
 
     return gc;
 }
@@ -111,7 +111,7 @@
     HostSpinBox *gc = new HostSpinBox("HOSTSWAPsize", 128, 128000, 128, true);
     gc->setLabel(QObject::tr("Swapspace size (MB)"));
     gc->setValue(mem);
-    gc->setHelpText(QObject::tr(""  ));
+    gc->setHelpText(QObject::tr("Amount of space allocated for the swap partition."  ));
 
     return gc;
 }
@@ -130,7 +130,7 @@
     HostCheckBox *gc = new HostCheckBox("HostUseALLdata");
     gc->setLabel(QObject::tr("Use all remaining space for data"));
     gc->setValue(true);
-    gc->setHelpText(QObject::tr("If checked myth will use the rest of the drive for the data.  Otherwise you will be able to set the size of the partition."));
+    gc->setHelpText(QObject::tr("If checked the remaining space on the drive will be used for storage. Otherwise you can set the size of the partition."));
     return gc;
 };
 
@@ -146,7 +146,7 @@
     gc->addSelection("xfs");
     //gc->addSelection("btrfs");
 
-    gc->setHelpText(QObject::tr("Filesystem for data. "));
+    gc->setHelpText(QObject::tr("Filesystem type for data storage."));
 
     return gc;
 }
@@ -163,7 +163,7 @@
     //gc->addSelection("btrfs");
     gc->addSelection("Do_not_format");
 
-    gc->setHelpText(QObject::tr("Filesystem for OS. "));
+    gc->setHelpText(QObject::tr("Filesystem type for OS. "));
 
     return gc;
 }
@@ -179,7 +179,7 @@
     //gc->addSelection("btrfs");
     //gc->addSelection("xfs");
 
-    gc->setHelpText(QObject::tr("Filesystem for OS.  "));
+    gc->setHelpText(QObject::tr("Filesystem type for root OS."));
 
     return gc;
 }
@@ -233,6 +233,7 @@
 public:
     Installationtype():
         TriggeredConfigurationGroup(true,false,true,true,false,false,false,true) {
+        setLabel(QObject::tr("LinHES Install"));
         Setting *Mtemplate = HOSTinstallationtype();
         addChild(Mtemplate);
         setTrigger(Mtemplate);