summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorbfox <bfox>2001-03-14 21:25:27 +0000
committerbfox <bfox>2001-03-14 21:25:27 +0000
commit21365522d9ed11ed7d474997dded72a92e94dd7b (patch)
treed031394f062478ad6543d7f9a0bafc7bf9ed318c /installclasses
parenta0019c729b85a9f1f0e9573b9593721e7850fa5c (diff)
downloadanaconda-21365522d9ed11ed7d474997dded72a92e94dd7b.tar.gz
anaconda-21365522d9ed11ed7d474997dded72a92e94dd7b.tar.xz
anaconda-21365522d9ed11ed7d474997dded72a92e94dd7b.zip
At Trond's request, I changed the strings in the warningText. Partial sentence translations would have made translations very hard.
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/custom.py6
-rw-r--r--installclasses/server.py2
-rw-r--r--installclasses/workstation.py2
3 files changed, 7 insertions, 3 deletions
diff --git a/installclasses/custom.py b/installclasses/custom.py
index 5e43f66ea..e523a2ca1 100644
--- a/installclasses/custom.py
+++ b/installclasses/custom.py
@@ -19,7 +19,7 @@ class InstallClass(BaseInstallClass):
self.addNewPartition('/boot', (32, -1, 0), (None,-1,0), (0,0))
self.addNewPartition('/', (700, -1, 1), (None, -1, 0), (0,0))
self.setClearParts(FSEDIT_CLEAR_LINUX,
- warningText = N_("any preexisting Linux "
+ warningText = N_("Automatic parittioning will erase any preexisting Linux "
"installations on your system."))
# 2.4 kernel requires more swap, so base amount we try to get
@@ -27,3 +27,7 @@ class InstallClass(BaseInstallClass):
(minswap, maxswap) = iutil.swapSuggestion()
self.addNewPartition('swap', (minswap, maxswap, 1), (None, -1, 0), (0,0))
+
+
+
+
diff --git a/installclasses/server.py b/installclasses/server.py
index a2186c6ed..6f75aed3c 100644
--- a/installclasses/server.py
+++ b/installclasses/server.py
@@ -35,7 +35,7 @@ class InstallClass(BaseInstallClass):
self.addNewPartition('/var', (256, -1, 0), (None, -1, 0), (0,0))
self.addNewPartition('/home',(512, -1, 1), (None, -1, 0), (0,0))
self.setClearParts(FSEDIT_CLEAR_ALL,
- warningText = N_("ALL DATA on your hard "
+ warningText = N_("Automatic partitioning will erase ALL DATA on your hard "
"drive to make room for your Linux installation."))
# self.addNewPartition('swap', (64, 256, 1), (None, -1, 0), (0,0))
diff --git a/installclasses/workstation.py b/installclasses/workstation.py
index dc48094f7..057208cf6 100644
--- a/installclasses/workstation.py
+++ b/installclasses/workstation.py
@@ -29,7 +29,7 @@ class InstallClass(BaseInstallClass):
self.setClearParts(FSEDIT_CLEAR_LINUX,
# warningText = N_("You are about to erase any preexisting Linux "
# "installations on your system."))
- warningText = N_("any preexisting Linux "
+ warningText = N_("Automatic partitioning will erase any preexisting Linux "
"installations on your system."))
# 2.4 kernel requires more swap, so base amount we try to get