summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-10-22 19:32:38 +0000
committerMatt Wilson <msw@redhat.com>1999-10-22 19:32:38 +0000
commit1fd6585406744fec328b38bd62957ec063b2452f (patch)
tree745ba23bd7c4d8abfbaa51b6bf9e1585532c478b
parenta29f74c35f97793fe68ce93387a97051890243b4 (diff)
downloadanaconda-1fd6585406744fec328b38bd62957ec063b2452f.tar.gz
anaconda-1fd6585406744fec328b38bd62957ec063b2452f.tar.xz
anaconda-1fd6585406744fec328b38bd62957ec063b2452f.zip
merge from 6.1 branch
-rw-r--r--balkan/dos.c5
-rw-r--r--comps.py2
-rw-r--r--iutil.py23
-rw-r--r--iw/installpath.py2
-rw-r--r--iw/lilo.py8
-rw-r--r--po/anaconda.pot357
-rw-r--r--po/cs.po1215
-rw-r--r--po/da.po604
-rw-r--r--po/de.po987
-rw-r--r--po/es.po835
-rw-r--r--po/fi.po1092
-rw-r--r--po/fr.po981
-rw-r--r--po/hu.po897
-rw-r--r--po/id.po1194
-rw-r--r--po/is.po904
-rw-r--r--po/it.po1207
-rw-r--r--po/no.po920
-rw-r--r--po/pl.po1094
-rw-r--r--po/pt_BR.po1111
-rw-r--r--po/ro.po1330
-rw-r--r--po/ru.po898
-rw-r--r--po/se.po1119
-rw-r--r--po/sk.po899
-rw-r--r--po/sl.po1232
-rw-r--r--po/sr.po1190
-rw-r--r--po/tr.po1240
-rw-r--r--po/uk.po1179
-rw-r--r--text.py9
-rw-r--r--textw/lilo.py16
-rw-r--r--todo.py53
30 files changed, 6568 insertions, 16035 deletions
diff --git a/balkan/dos.c b/balkan/dos.c
index cdd60ecfc..40410fadc 100644
--- a/balkan/dos.c
+++ b/balkan/dos.c
@@ -30,6 +30,7 @@ struct singlePartitionTable {
#define SECTOR_SIZE 512
#define DOSP_TYPE_EXTENDED 5
+#define WINP_TYPE_EXTENDED 0xf
long long llseek(int fd, long long offset, int whence);
@@ -72,7 +73,8 @@ static int readNextTable(int fd, struct partitionTable * table, int nextNum,
for (i = 0; i < 4; i++) {
if (!singleTable.parts[i].size) continue;
- if (singleTable.parts[i].type == DOSP_TYPE_EXTENDED &&
+ if ((singleTable.parts[i].type == DOSP_TYPE_EXTENDED ||
+ singleTable.parts[i].type == WINP_TYPE_EXTENDED) &&
nextNum >= 4) continue;
if (nextNum < 4)
@@ -133,7 +135,6 @@ int dospReadTable(int fd, struct partitionTable * table) {
case 0x0b:
case 0x0c:
case 0x0e:
- case 0x0f:
table->parts[i].type = BALKAN_PART_DOS;
break;
diff --git a/comps.py b/comps.py
index 07f2118be..107223c77 100644
--- a/comps.py
+++ b/comps.py
@@ -255,7 +255,7 @@ class ComponentSet:
everything.addPackage (packages[package])
self.comps.append (everything)
self.compsDict["Everything"] = everything
-
+
def __repr__(self):
s = ""
for n in self.comps:
diff --git a/iutil.py b/iutil.py
index cbe049ee9..77202a63a 100644
--- a/iutil.py
+++ b/iutil.py
@@ -131,3 +131,26 @@ def memInstalled():
fields = string.split(mem)
return int(fields[1]) / 1024
+
+# this is a mkdir that won't fail if a directory already exists and will
+# happily make all of the directories leading up to it.
+def mkdirChain(dir):
+ if (os.path.isdir(dir)): return
+ elements = string.splitfields(dir, "/")
+
+ if (len(elements[0])):
+ which = 1
+ path = elements[0]
+ else:
+ which = 2
+ path = "/" + elements[1]
+
+ if (not os.path.isdir(path)):
+ os.mkdir(path, 0755)
+
+ while (which < len(elements)):
+ path = path + "/" + elements[which]
+ which = which + 1
+
+ if (not os.path.isdir(path)):
+ os.mkdir(path, 0755)
diff --git a/iw/installpath.py b/iw/installpath.py
index 2e8ee29f2..7e38d018e 100644
--- a/iw/installpath.py
+++ b/iw/installpath.py
@@ -61,8 +61,10 @@ class InstallPathWindow (InstallWindow):
]
upgradeSteps = [ UpgradeExamineWindow,
+ LiloWindow,
UnresolvedDependenciesWindow,
InstallProgressWindow,
+ BootdiskWindow,
CongratulationWindow
]
diff --git a/iw/lilo.py b/iw/lilo.py
index 5ad081244..4666db588 100644
--- a/iw/lilo.py
+++ b/iw/lilo.py
@@ -40,6 +40,9 @@ class LiloWindow (InstallWindow):
self.todo.setLiloImages(self.images)
+ self.todo.liloLinear = self.linearCheck.get_active()
+ self.todo.liloAppend = self.appendEntry.get_text()
+
def typeName(self, type):
if (type == 2):
return "Linux Native"
@@ -139,11 +142,14 @@ class LiloWindow (InstallWindow):
self.linearCheck = GtkCheckButton(
_("Use linear mode (needed for some SCSI drives)"))
+ self.linearCheck.set_active(self.todo.liloLinear)
self.radioBox.attach(self.linearCheck, 0, 2, 4, 5)
label = GtkLabel(_("Kernel parameters") + ":")
label.set_alignment(0.0, 0.5)
- self.appendEntry = GtkEntry(15)
+ self.appendEntry = GtkEntry()
+ if self.todo.liloAppend:
+ self.appendEntry.set_text(self.todo.liloAppend)
box = GtkHBox(FALSE, 5)
box.pack_start(label)
box.pack_start(self.appendEntry)
diff --git a/po/anaconda.pot b/po/anaconda.pot
index bc83ca472..e98daa327 100644
--- a/po/anaconda.pot
+++ b/po/anaconda.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1999-10-18 15:35-0400\n"
+"POT-Creation-Date: 1999-10-22 15:21-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -20,18 +20,18 @@ msgstr ""
#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291
#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531
-#: ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632
-#: ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
+#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:533
+#: ../loader/loader.c:251 ../loader/loader.c:599 ../loader/loader.c:635
+#: ../loader/loader.c:738 ../loader/loader.c:1106 ../loader/net.c:162
+#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:323 ../text.py:87
#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
+#: ../textw/lilo.py:27 ../textw/lilo.py:77 ../textw/lilo.py:84
+#: ../textw/lilo.py:159 ../textw/packages.py:20 ../textw/packages.py:85
#: ../textw/packages.py:136 ../textw/packages.py:145
#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
@@ -96,17 +96,18 @@ msgstr ""
#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248
-#: ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632
-#: ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873
-#: ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103
-#: ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
+#: ../loader/lang.c:266 ../loader/lang.c:533 ../loader/loader.c:251
+#: ../loader/loader.c:467 ../loader/loader.c:477 ../loader/loader.c:635
+#: ../loader/loader.c:693 ../loader/loader.c:738 ../loader/loader.c:876
+#: ../loader/loader.c:881 ../loader/loader.c:967 ../loader/loader.c:1106
+#: ../loader/loader.c:1614 ../loader/loader.c:1660 ../loader/loader.c:1721
+#: ../loader/loader.c:1729 ../loader/net.c:162 ../loader/net.c:284
+#: ../loader/net.c:557 ../loader/urls.c:124 ../loader/urls.c:201
+#: ../loader/urls.c:206 ../loader/urls.c:323 ../text.py:52 ../text.py:107
#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
+#: ../text.py:892 ../text.py:1051 ../textw/lilo.py:26 ../textw/lilo.py:77
#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
@@ -131,8 +132,8 @@ msgstr ""
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:180 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:90
+#: ../textw/lilo.py:149 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr ""
@@ -159,8 +160,8 @@ msgstr ""
#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
+#: ../textw/constants.py:10 ../textw/lilo.py:95 ../textw/lilo.py:108
+#: ../textw/lilo.py:158 ../textw/silo.py:114 ../textw/silo.py:127
#: ../textw/silo.py:175
msgid "Ok"
msgstr ""
@@ -214,11 +215,12 @@ msgid "What type of system would you like to install?"
msgstr ""
#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474
-#: ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873
-#: ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362
-#: ../todo.py:503 ../todo.py:1043 ../todo.py:1362
+#: ../loader/devices.c:183 ../loader/loader.c:467 ../loader/loader.c:477
+#: ../loader/loader.c:693 ../loader/loader.c:738 ../loader/loader.c:876
+#: ../loader/loader.c:881 ../loader/loader.c:1614 ../loader/loader.c:1660
+#: ../loader/loader.c:1729 ../loader/urls.c:201 ../loader/urls.c:206
+#: ../text.py:231 ../text.py:634 ../todo.py:364 ../todo.py:504 ../todo.py:1073
+#: ../todo.py:1394
msgid "Error"
msgstr ""
@@ -250,7 +252,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701
+#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:599 ../loader/net.c:703
#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
#: ../textw/partitioning.py:165
msgid "Yes"
@@ -261,7 +263,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
+#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:703 ../text.py:269
#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
#: ../textw/partitioning.py:165
msgid "No"
@@ -325,7 +327,7 @@ msgid ""
"a network, this may be assigned by your network administrator."
msgstr ""
-#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:622 ../text.py:435
msgid "Hostname"
msgstr ""
@@ -409,7 +411,7 @@ msgid ""
msgstr ""
#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../textw/lilo.py:26 ../textw/silo.py:21
msgid "Skip"
msgstr ""
@@ -489,7 +491,7 @@ msgstr ""
msgid "Welcome"
msgstr ""
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
+#: ../iw/lilo.py:97 ../iw/lilo.py:202 ../iw/silo.py:124 ../iw/silo.py:265
#: ../text.py:935 ../text.py:941
msgid "Partition"
msgstr ""
@@ -510,8 +512,9 @@ msgstr ""
msgid "Filesystem Formatting"
msgstr ""
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../text.py:1006
+#: ../text.py:1008 ../text.py:1010 ../textw/lilo.py:29 ../textw/lilo.py:74
+#: ../textw/lilo.py:167
msgid "LILO Configuration"
msgstr ""
@@ -547,7 +550,7 @@ msgstr ""
msgid "Package Groups"
msgstr ""
-#: ../text.py:971 ../text.py:1007
+#: ../text.py:971 ../text.py:1013
msgid "Individual Packages"
msgstr ""
@@ -559,7 +562,7 @@ msgstr ""
msgid "X Configuration"
msgstr ""
-#: ../text.py:977 ../text.py:982
+#: ../text.py:977 ../text.py:982 ../text.py:1014 ../text.py:1017
msgid "Boot Disk"
msgstr ""
@@ -584,176 +587,176 @@ msgstr ""
msgid "Examine System"
msgstr ""
-#: ../text.py:1006
+#: ../text.py:1012
msgid "Customize Upgrade"
msgstr ""
-#: ../text.py:1008
+#: ../text.py:1016
msgid "Upgrade System"
msgstr ""
-#: ../text.py:1009
+#: ../text.py:1018
msgid "Upgrade Complete"
msgstr ""
-#: ../text.py:1039
+#: ../text.py:1048
msgid "Cancelled"
msgstr ""
-#: ../text.py:1040
+#: ../text.py:1049
msgid "I can't go to the previous step from here. You will have to try again."
msgstr ""
-#: ../todo.py:363
+#: ../todo.py:365
#, c-format
msgid "Error unmounting %s: %s"
msgstr ""
-#: ../todo.py:504
+#: ../todo.py:505
#, c-format
msgid "Error mounting %s: %s"
msgstr ""
-#: ../todo.py:525 ../todo.py:714
+#: ../todo.py:524 ../todo.py:721
msgid "Creating"
msgstr ""
-#: ../todo.py:526
+#: ../todo.py:525
msgid "Creating RAID devices..."
msgstr ""
-#: ../todo.py:575 ../todo.py:588
+#: ../todo.py:574 ../todo.py:587
msgid "Formatting"
msgstr ""
-#: ../todo.py:576 ../todo.py:589
+#: ../todo.py:575 ../todo.py:588
#, c-format
msgid "Formatting %s filesystem..."
msgstr ""
-#: ../todo.py:714
+#: ../todo.py:721
msgid "Creating boot disk..."
msgstr ""
-#: ../todo.py:845
+#: ../todo.py:866
msgid "Reading"
msgstr ""
-#: ../todo.py:846
+#: ../todo.py:867
msgid "Reading package information..."
msgstr ""
-#: ../todo.py:1000 ../todo.py:1010
+#: ../todo.py:1030 ../todo.py:1040
msgid "no suggestion"
msgstr ""
-#: ../todo.py:1016
+#: ../todo.py:1046
msgid "Searching"
msgstr ""
-#: ../todo.py:1017
+#: ../todo.py:1047
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1044
+#: ../todo.py:1074
#, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr ""
-#: ../todo.py:1063
+#: ../todo.py:1093
msgid "Finding"
msgstr ""
-#: ../todo.py:1064
+#: ../todo.py:1094
msgid "Finding packages to upgrade..."
msgstr ""
-#: ../todo.py:1252
+#: ../todo.py:1284
msgid "Processing"
msgstr ""
-#: ../todo.py:1253
+#: ../todo.py:1285
msgid "Preparing to install..."
msgstr ""
-#: ../todo.py:1357
+#: ../todo.py:1389
msgid "Rebuilding"
msgstr ""
-#: ../todo.py:1358
+#: ../todo.py:1390
msgid "Rebuilding RPM database..."
msgstr ""
-#: ../todo.py:1363
+#: ../todo.py:1395
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr ""
-#: ../todo.py:1413
+#: ../todo.py:1445
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1415
+#: ../todo.py:1447
#, c-format
msgid "Installing %s.\n"
msgstr ""
-#: ../todo.py:1436
+#: ../todo.py:1468
msgid ""
"You don't appear to have enough disk space to install the packages you've "
"selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1439
+#: ../todo.py:1471
msgid "Mount Point"
msgstr ""
-#: ../todo.py:1439
+#: ../todo.py:1471
msgid "Space Needed"
msgstr ""
-#: ../todo.py:1453
+#: ../todo.py:1485
msgid "Disk Space"
msgstr ""
-#: ../todo.py:1476
+#: ../todo.py:1508
msgid "Post Install"
msgstr ""
-#: ../todo.py:1477
+#: ../todo.py:1509
msgid "Performing post install configuration..."
msgstr ""
-#: ../iw/xconfig.py:10 ../xf86config.py:235
+#: ../iw/xconfig.py:10 ../xf86config.py:241
msgid "Video Card"
msgstr ""
-#: ../iw/xconfig.py:12 ../xf86config.py:237
+#: ../iw/xconfig.py:12 ../xf86config.py:243
msgid "Video Ram"
msgstr ""
-#: ../xf86config.py:239
+#: ../xf86config.py:245
msgid "X server"
msgstr ""
-#: ../xf86config.py:241
+#: ../xf86config.py:247
msgid "Unable to detect video card"
msgstr ""
-#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
+#: ../iw/xconfig.py:11 ../xf86config.py:252 ../xf86config.py:254
msgid "Monitor"
msgstr ""
-#: ../xf86config.py:248
+#: ../xf86config.py:254
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:250
+#: ../xf86config.py:256
msgid "Horizontal frequency range"
msgstr ""
-#: ../xf86config.py:252
+#: ../xf86config.py:258
msgid "Vertical frequency range"
msgstr ""
@@ -791,7 +794,7 @@ msgid "Add"
msgstr ""
#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
+#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:158 ../textw/lilo.py:180
#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
#: ../textw/userauth.py:172
msgid "Edit"
@@ -921,19 +924,19 @@ msgstr ""
msgid "Custom"
msgstr ""
-#: ../iw/installpath.py:89
+#: ../iw/installpath.py:91
msgid "Install Type"
msgstr ""
-#: ../iw/installpath.py:158
+#: ../iw/installpath.py:160
msgid "Install"
msgstr ""
-#: ../iw/installpath.py:160
+#: ../iw/installpath.py:162
msgid "Upgrade"
msgstr ""
-#: ../iw/installpath.py:214
+#: ../iw/installpath.py:216
msgid "Use fdisk"
msgstr ""
@@ -957,7 +960,7 @@ msgstr ""
msgid "Test your selection here:"
msgstr ""
-#: ../iw/language.py:16 ../loader/lang.c:269
+#: ../iw/language.py:16 ../loader/lang.c:264
msgid "What language should be used during the installation process?"
msgstr ""
@@ -965,50 +968,50 @@ msgstr ""
msgid "Lilo Configuration"
msgstr ""
-#: ../iw/lilo.py:99 ../iw/lilo.py:197 ../iw/silo.py:129 ../iw/silo.py:266
+#: ../iw/lilo.py:102 ../iw/lilo.py:203 ../iw/silo.py:129 ../iw/silo.py:266
msgid "Type"
msgstr ""
-#: ../iw/lilo.py:128
+#: ../iw/lilo.py:131
msgid "Install LILO boot record on:"
msgstr ""
-#: ../iw/lilo.py:133 ../iw/silo.py:165 ../textw/silo.py:51
+#: ../iw/lilo.py:136 ../iw/silo.py:165 ../textw/silo.py:51
msgid "Master Boot Record (MBR)"
msgstr ""
-#: ../iw/lilo.py:137 ../iw/silo.py:168 ../textw/silo.py:52
+#: ../iw/lilo.py:140 ../iw/silo.py:168 ../textw/silo.py:52
msgid "First sector of boot partition"
msgstr ""
-#: ../iw/lilo.py:141 ../textw/lilo.py:19
+#: ../iw/lilo.py:144 ../textw/lilo.py:20
msgid "Use linear mode (needed for some SCSI drives)"
msgstr ""
-#: ../iw/lilo.py:144 ../iw/silo.py:195
+#: ../iw/lilo.py:148 ../iw/silo.py:195
msgid "Kernel parameters"
msgstr ""
-#: ../iw/lilo.py:159 ../iw/silo.py:211
+#: ../iw/lilo.py:165 ../iw/silo.py:211
msgid "Create boot disk"
msgstr ""
-#: ../iw/lilo.py:163
+#: ../iw/lilo.py:169
msgid "Do not install LILO"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
+#: ../iw/lilo.py:180 ../iw/silo.py:242 ../textw/lilo.py:149
#: ../textw/silo.py:166
msgid "Default"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
+#: ../iw/lilo.py:180 ../iw/silo.py:242 ../textw/lilo.py:149
#: ../textw/silo.py:166
msgid "Partition type"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
+#: ../iw/lilo.py:180 ../iw/lilo.py:214 ../iw/silo.py:242 ../iw/silo.py:277
+#: ../textw/lilo.py:91 ../textw/lilo.py:149 ../textw/silo.py:110
#: ../textw/silo.py:166
msgid "Boot label"
msgstr ""
@@ -1029,11 +1032,11 @@ msgstr ""
msgid "IP Address"
msgstr ""
-#: ../iw/network.py:164 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:620
msgid "Netmask"
msgstr ""
-#: ../iw/network.py:165 ../loader/loader.c:233
+#: ../iw/network.py:165 ../loader/loader.c:236
msgid "Network"
msgstr ""
@@ -1218,7 +1221,7 @@ msgstr ""
msgid "Test failed"
msgstr ""
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:233
msgid "Customize X Configuration"
msgstr ""
@@ -1226,34 +1229,34 @@ msgstr ""
msgid "Bits per Pixel"
msgstr ""
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:229
msgid "Test this configuration"
msgstr ""
-#: ../iw/xconfig.py:175
+#: ../iw/xconfig.py:177
msgid ""
"In most cases your video hardware can be probed to automatically determine "
"the best settings for your display."
msgstr ""
-#: ../iw/xconfig.py:183
+#: ../iw/xconfig.py:185
msgid "Autoprobe results:"
msgstr ""
-#: ../iw/xconfig.py:197
+#: ../iw/xconfig.py:199
msgid ""
"Your monitor could not be autodetected. Please choose it from the list below:"
msgstr ""
-#: ../iw/xconfig.py:234
+#: ../iw/xconfig.py:236
msgid "Use Graphical Login"
msgstr ""
-#: ../iw/xconfig.py:236
+#: ../iw/xconfig.py:238
msgid "Skip X Configuration"
msgstr ""
-#: ../textw/lilo.py:13 ../textw/silo.py:14
+#: ../textw/lilo.py:14 ../textw/silo.py:14
msgid ""
"A few systems will need to pass special options to the kernel at boot time "
"for the system to function properly. If you need to pass boot options to the "
@@ -1261,28 +1264,28 @@ msgid ""
"blank."
msgstr ""
-#: ../textw/lilo.py:64 ../textw/silo.py:81
+#: ../textw/lilo.py:75 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr ""
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
+#: ../textw/lilo.py:95 ../textw/lilo.py:116 ../textw/silo.py:114
#: ../textw/silo.py:135
msgid "Clear"
msgstr ""
#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168
+#: ../loader/loader.c:1721 ../textw/lilo.py:95 ../textw/lilo.py:113
+#: ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr ""
-#: ../textw/lilo.py:92 ../textw/silo.py:122
+#: ../textw/lilo.py:103 ../textw/silo.py:122
msgid "Edit Boot Label"
msgstr ""
-#: ../textw/lilo.py:150 ../textw/silo.py:178
+#: ../textw/lilo.py:162 ../textw/silo.py:178
msgid ""
"The boot manager Red Hat uses can boot other operating systems as well. You "
"need to tell me what partitions you would like to be able to boot and what "
@@ -1317,7 +1320,7 @@ msgid ""
"two hard drives in your system so you can boot into Linux with LILO."
msgstr ""
-#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
+#: ../loader/loader.c:299 ../loader/loader.c:324 ../textw/partitioning.py:63
msgid "Done"
msgstr ""
@@ -1356,7 +1359,7 @@ msgid ""
"critical part of system security!"
msgstr ""
-#: ../loader/urls.c:298 ../textw/userauth.py:23
+#: ../loader/urls.c:299 ../textw/userauth.py:23
msgid "Password:"
msgstr ""
@@ -1989,8 +1992,8 @@ msgstr ""
msgid "Module Parameters"
msgstr ""
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246
-#: ../loader/loader.c:305 ../loader/loader.c:321
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:249
+#: ../loader/loader.c:308 ../loader/loader.c:324 ../loader/loader.c:1721
msgid "Devices"
msgstr ""
@@ -1998,7 +2001,7 @@ msgstr ""
msgid "Insert your driver disk and press \"OK\" to continue."
msgstr ""
-#: ../loader/devices.c:179
+#: ../loader/devices.c:179 ../loader/loader.c:1730
msgid "Failed to mount floppy disk."
msgstr ""
@@ -2041,150 +2044,170 @@ msgstr ""
msgid "Error on line %d of kickstart file %s."
msgstr ""
-#: ../loader/lang.c:269
+#: ../loader/lang.c:264
msgid "Choose a Language"
msgstr ""
-#: ../loader/lang.c:529
+#: ../loader/lang.c:531
msgid "Keyboard Type"
msgstr ""
-#: ../loader/lang.c:530
+#: ../loader/lang.c:532
msgid "What type of keyboard do you have?"
msgstr ""
-#: ../loader/loader.c:100
+#: ../loader/loader.c:101
msgid "Local CDROM"
msgstr ""
-#: ../loader/loader.c:103
+#: ../loader/loader.c:104
msgid "NFS image"
msgstr ""
-#: ../loader/loader.c:108
+#: ../loader/loader.c:109
msgid "Hard drive"
msgstr ""
-#: ../loader/loader.c:127
+#: ../loader/loader.c:128
msgid "Welcome to Red Hat Linux"
msgstr ""
-#: ../loader/loader.c:129
+#: ../loader/loader.c:130
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-#: ../loader/loader.c:233
+#: ../loader/loader.c:236
msgid "SCSI"
msgstr ""
-#: ../loader/loader.c:247
+#: ../loader/loader.c:250
msgid "What kind of device would you like to add"
msgstr ""
-#: ../loader/loader.c:294
+#: ../loader/loader.c:297
msgid "I have found the following devices in your system:"
msgstr ""
-#: ../loader/loader.c:296 ../loader/loader.c:321
+#: ../loader/loader.c:299 ../loader/loader.c:324
msgid "Add Device"
msgstr ""
-#: ../loader/loader.c:322
+#: ../loader/loader.c:325
msgid ""
"I don't have any special device drivers loaded for your system. Would you "
"like to load some now?"
msgstr ""
-#: ../loader/loader.c:406 ../loader/loader.c:408
+#: ../loader/loader.c:409 ../loader/loader.c:411
msgid "Loading"
msgstr ""
-#: ../loader/loader.c:460
+#: ../loader/loader.c:463
msgid "Loading second stage ramdisk..."
msgstr ""
-#: ../loader/loader.c:464
+#: ../loader/loader.c:467
msgid "Error loading ramdisk."
msgstr ""
-#: ../loader/loader.c:596
+#: ../loader/loader.c:599
msgid "Hard Drives"
msgstr ""
-#: ../loader/loader.c:597
+#: ../loader/loader.c:600
msgid ""
"You don't seem to have any hard drives on your system! Would you like to "
"configure additional devices?"
msgstr ""
-#: ../loader/loader.c:610
+#: ../loader/loader.c:613
msgid ""
"What partition and directory on that partition hold the RedHat/RPMS and "
"RedHat/base directories? If you don't see the disk drive you're using listed "
"here, press F2 to configure additional devices."
msgstr ""
-#: ../loader/loader.c:624
+#: ../loader/loader.c:627
msgid "Directory holding Red Hat:"
msgstr ""
-#: ../loader/loader.c:644
+#: ../loader/loader.c:647
msgid "Select Partition"
msgstr ""
-#: ../loader/loader.c:691
+#: ../loader/loader.c:694
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr ""
-#: ../loader/loader.c:736
+#: ../loader/loader.c:739
msgid ""
"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
"insert the Red Hat CD and press \"OK\" to retry."
msgstr ""
-#: ../loader/loader.c:874
+#: ../loader/loader.c:877
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr ""
-#: ../loader/loader.c:879
+#: ../loader/loader.c:882
msgid "I could not mount that directory from the server"
msgstr ""
-#: ../loader/loader.c:964
+#: ../loader/loader.c:967
msgid "FTP"
msgstr ""
-#: ../loader/loader.c:965
+#: ../loader/loader.c:968
msgid "Unable to retrieve the second stage ramdisk"
msgstr ""
-#: ../loader/loader.c:1095
+#: ../loader/loader.c:1098
msgid "Rescue Method"
msgstr ""
-#: ../loader/loader.c:1096
+#: ../loader/loader.c:1099
msgid "Installation Method"
msgstr ""
-#: ../loader/loader.c:1098
+#: ../loader/loader.c:1101
msgid "What type of media contains the rescue image?"
msgstr ""
-#: ../loader/loader.c:1100
+#: ../loader/loader.c:1103
msgid "What type of media contains the packages to be installed?"
msgstr ""
-#: ../loader/loader.c:1610
+#: ../loader/loader.c:1615
msgid "Cannot find ks.cfg on boot floppy."
msgstr ""
-#: ../loader/loader.c:1774
+#: ../loader/loader.c:1661
+#, c-format
+msgid "Failed to read directory %s: %s"
+msgstr ""
+
+#: ../loader/loader.c:1722
+msgid "Insert your updates disk and press \"OK\" to continue."
+msgstr ""
+
+#. Copy everything to /tmp/updates so .so files don't get run
+#. from /dev/fd0. We could (and probably should) get smarter about
+#. this at some point.
+#: ../loader/loader.c:1735
+msgid "Updates"
+msgstr ""
+
+#: ../loader/loader.c:1735
+msgid "Reading anaconda updates..."
+msgstr ""
+
+#: ../loader/loader.c:1888
msgid "PC Card"
msgstr ""
-#: ../loader/loader.c:1774
+#: ../loader/loader.c:1888
msgid "Initializing PC Card Devices..."
msgstr ""
@@ -2243,55 +2266,55 @@ msgstr ""
msgid "Determining host name and domain..."
msgstr ""
-#: ../loader/net.c:560
+#: ../loader/net.c:557
msgid "kickstart"
msgstr ""
-#: ../loader/net.c:561
+#: ../loader/net.c:558
#, c-format
msgid "bad argument to kickstart network command %s: %s"
msgstr ""
-#: ../loader/net.c:610
+#: ../loader/net.c:612
msgid "Boot protocol to use"
msgstr ""
-#: ../loader/net.c:612
+#: ../loader/net.c:614
msgid "Network gateway"
msgstr ""
-#: ../loader/net.c:614
+#: ../loader/net.c:616
msgid "IP address"
msgstr ""
-#: ../loader/net.c:616
+#: ../loader/net.c:618
msgid "Nameserver"
msgstr ""
-#: ../loader/net.c:623
+#: ../loader/net.c:625
msgid "Domain name"
msgstr ""
-#: ../loader/net.c:626
+#: ../loader/net.c:628
msgid "Network device"
msgstr ""
-#: ../loader/net.c:698
+#: ../loader/net.c:700
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
"screen"
msgstr ""
-#: ../loader/net.c:699
+#: ../loader/net.c:701
#, c-format
msgid "netconfig %s (C) 1999 Red Hat, Inc."
msgstr ""
-#: ../loader/net.c:701
+#: ../loader/net.c:703
msgid "Network configuration"
msgstr ""
-#: ../loader/net.c:702
+#: ../loader/net.c:704
msgid "Would you like to set up networking?"
msgstr ""
@@ -2349,36 +2372,36 @@ msgstr ""
msgid "You must enter a directory."
msgstr ""
-#: ../loader/urls.c:268
+#: ../loader/urls.c:269
msgid ""
"If you are using non anonymous ftp, enter the account name and password you "
"wish to use below. If you are using an FTP proxy enter the name of the FTP "
"proxy server to use."
msgstr ""
-#: ../loader/urls.c:274
+#: ../loader/urls.c:275
msgid ""
"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
"to use."
msgstr ""
-#: ../loader/urls.c:295
+#: ../loader/urls.c:296
msgid "Account name:"
msgstr ""
-#: ../loader/urls.c:303
+#: ../loader/urls.c:304
msgid "FTP Proxy:"
msgstr ""
-#: ../loader/urls.c:304
+#: ../loader/urls.c:305
msgid "HTTP Proxy:"
msgstr ""
-#: ../loader/urls.c:308
+#: ../loader/urls.c:309
msgid "FTP Proxy Port:"
msgstr ""
-#: ../loader/urls.c:309
+#: ../loader/urls.c:310
msgid "HTTP Proxy Port:"
msgstr ""
diff --git a/po/cs.po b/po/cs.po
index ee14ef15f..7f4119117 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rhinstall unknown\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-09-28 16:48+0200\n"
"Last-Translator: Petr Kolar <Petr.Kolar@vslib.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@@ -13,91 +13,67 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "Dal╧М"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "ZpЛt"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Zobrazit nАpovЛdu"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "SkrЩt nАpovЛdu"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "DokonХenМ"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "Online nАpovЛda"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "VЩbЛr jazyka"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "InstalАtor Red Hat Linuxu"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "InstalАtor Red Hat Linuxu"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "InstalАtor Red Hat Linuxu"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "InstalАtor Red Hat Linuxu"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr "MЫ╬e dojМt ke ztrАtЛ dat! SkuteХnЛ chcete pokraХovat?"
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "JakЩ jazyk chcete pou╬Мvat bЛhem instalace?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "OK"
@@ -117,8 +93,7 @@ msgstr "/dev/ttyS2 (v DOSu COM3)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (v DOSu COM4)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "ZaЬМzenМ"
@@ -128,26 +103,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "K jakИmu zaЬМzenМ je pЬipojena va╧e my╧? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "OK"
@@ -199,12 +155,7 @@ msgstr "Typ instalace"
msgid "What type of system would you like to install?"
msgstr "JakЩ druh systИmu chcete instalovat?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Chyba"
@@ -225,34 +176,14 @@ msgid "Customize Packages to Upgrade"
msgstr "VЩbЛr balМХkЫ pro aktualizaci"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Bude provedena aktualizace ji╬ nainstalovanЩch balМХkЫ a budou doinstalovАny "
-"i balМХky nutnИ k vyЬe╧enМ jejich zАvislostМ. Chcete tento seznam balМХkЫ "
-"upravit?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Bude provedena aktualizace ji╬ nainstalovanЩch balМХkЫ a budou doinstalovАny i balМХky nutnИ k vyЬe╧enМ jejich zАvislostМ. Chcete tento seznam balМХkЫ upravit?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Ano"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Ne"
@@ -264,21 +195,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"VМtА vАs Red Hat Linux!\n"
"\n"
-"InstalaХnМ proces podrobnЛ popisuje pЬМruХka \"Official Red Hat Linux "
-"Installation Guide\" dodАvanА spoleХnostМ Red Hat Software. MАte-li ji k "
-"dispozici, mЛli byste si nynМ pЬeХМst ХАst o instalaci.\n"
+"InstalaХnМ proces podrobnЛ popisuje pЬМruХka \"Official Red Hat Linux Installation Guide\" dodАvanА spoleХnostМ Red Hat Software. MАte-li ji k dispozici, mЛli byste si nynМ pЬeХМst ХАst o instalaci.\n"
"\n"
-"Pokud jste koupili oficiАlnМ Red Hat Linux, nezapomeРte jej zaregistrovat na "
-"na╧em web serveru http://www.redhat.com/."
+"Pokud jste koupili oficiАlnМ Red Hat Linux, nezapomeРte jej zaregistrovat na na╧em web serveru http://www.redhat.com/."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -317,34 +242,20 @@ msgid "Hostname Configuration"
msgstr "Konfigurace jmИna poХМtaХe"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"JmИno tohoto poХМtaХe (hostname) si mЫ╬ete zvolit. Pokud je poХМtaХ pЬipojen "
-"do sМtЛ, mЫ╬e mu bЩt jmИno pЬidЛleno sprАvcem sМtЛ."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "JmИno tohoto poХМtaХe (hostname) si mЫ╬ete zvolit. Pokud je poХМtaХ pЬipojen do sМtЛ, mЫ╬e mu bЩt jmИno pЬidЛleno sprАvcem sМtЛ."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "JmИno poХМtaХe"
#: ../text.py:447
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"VlastnМ zavАdЛcМ disketa umo╬Рuje start systИmu Linux bez pou╬itМ obvyklИho "
-"zavadЛХe systИmu (zpravidla LILO). Je u╬iteХnА, nechcete-li zavadЛХ LILO "
-"instalovat, pokud jej jinЩ operaХnМ systИm odstranМ, nebo kdy╬ LILO "
-"nefunguje. VlastnМ zavАdЛcМ disketu lze takИ pou╬Мt spolu se zАchrannou "
-"disketou Red Hat a znaХnЛ tak usnadnit o╬ivenМ systИmu po vА╬nЩch "
-"havАriМch.\n"
+"VlastnМ zavАdЛcМ disketa umo╬Рuje start systИmu Linux bez pou╬itМ obvyklИho zavadЛХe systИmu (zpravidla LILO). Je u╬iteХnА, nechcete-li zavadЛХ LILO instalovat, pokud jej jinЩ operaХnМ systИm odstranМ, nebo kdy╬ LILO nefunguje. VlastnМ zavАdЛcМ disketu lze takИ pou╬Мt spolu se zАchrannou disketou Red Hat a znaХnЛ tak usnadnit o╬ivenМ systИmu po vА╬nЩch havАriМch.\n"
"\n"
"Chcete vytvoЬit zavАdЛcМ disketu pro vА╧ systИm?"
@@ -388,12 +299,8 @@ msgid "Installation to begin"
msgstr "ZahАjenМ instalace"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"зplnЩ protokol o instalaci bude po restartu systИmu v souboru "
-"/tmp/install.log. Tento soubor se mЫ╬e hodit pro pozdЛj╧М referenci."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "зplnЩ protokol o instalaci bude po restartu systИmu v souboru /tmp/install.log. Tento soubor se mЫ╬e hodit pro pozdЛj╧М referenci."
#: ../text.py:606
msgid "Complete"
@@ -403,42 +310,27 @@ msgstr "Hotovo"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"BlahopЬejeme k dokonХenМ instalace.\n"
"\n"
-"VyjmЛte z jednotky disketu a stiskem Enter systИm restartujte. Na serveru "
-"http://www.redhat.com naleznete v dokumentu Errata informace o opravАch, "
-"kterИ jsou k dispozici pro tuto verzi systИmu Red Hat Linux.\n"
+"VyjmЛte z jednotky disketu a stiskem Enter systИm restartujte. Na serveru http://www.redhat.com naleznete v dokumentu Errata informace o opravАch, kterИ jsou k dispozici pro tuto verzi systИmu Red Hat Linux.\n"
"\n"
-"Informace o konfigurovАnМ systИmu jsou obsa╬eny v poinstalaХnМ kapitole "
-"pЬМruХky \"Official Red Hat Linux User's Guide\"."
+"Informace o konfigurovАnМ systИmu jsou obsa╬eny v poinstalaХnМ kapitole pЬМruХky \"Official Red Hat Linux User's Guide\"."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Vlo╬te prАzdnou disketu do prvnМ disketovИ jednotka. PЫvodnМ obsah diskety "
-"bude pЬi vytvАЬenМ zavАdЛcМ diskety pЬepsАn."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Vlo╬te prАzdnou disketu do prvnМ disketovИ jednotka. PЫvodnМ obsah diskety bude pЬi vytvАЬenМ zavАdЛcМ diskety pЬepsАn."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Vynechat"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"PЬi vytvАЬenМ zavАdЛcМ diskety do╧lo k chybЛ. Zkontrolujte, zda v prvnМ "
-"disketovИ jednotce je zformАtovanА disketa."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "PЬi vytvАЬenМ zavАdЛcМ diskety do╧lo k chybЛ. Zkontrolujte, zda v prvnМ disketovИ jednotce je zformАtovanА disketa."
#: ../text.py:697
msgid "Package Installation"
@@ -501,19 +393,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> pЬepМnА mezi polo╬kami | <Mezera> vЩbЛr | <F12> "
-"pokraХovat"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> pЬepМnА mezi polo╬kami | <Mezera> vЩbЛr | <F12> pokraХovat"
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "VМtejte"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "Oblast disku"
@@ -533,8 +420,7 @@ msgstr "OdklАdacМ"
msgid "Filesystem Formatting"
msgstr "FormАtovАnМ disku"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "Konfigurace LILO"
@@ -598,8 +484,7 @@ msgstr "Instalace systИmu"
msgid "Installation Complete"
msgstr "Instalace dokonХena"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
msgid "SILO Configuration"
msgstr "Konfigurace SILO"
@@ -627,175 +512,172 @@ msgstr "Zru╧eno"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "Z tohoto mМsta se nelze vrАtit k pЬedchozМmu kroku."
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "chyba pЬi zАpisu souboru %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "chyba pЬi zАpisu souboru %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "VytvАЬМm zavАdЛcМ disk..."
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "FormАtovАnМ disku"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "VytvАЬМm souborovЩ systИm ext2 na /dev/%s..."
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "VytvАЬМm zavАdЛcМ disk..."
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "ZbЩvА"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "OdesМlАm dotaz pro konfiguraci IP..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "╬АdnИ doporuХenМ"
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "V╧echno"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "chyba pЬi zАpisu souboru %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "ZbЩvА"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "HledАm balМХky pro aktualizaci..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr "Pracuji"
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Kontroluji seznam souborЫ..."
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "ZbЩvА"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr "ProbМhА aktualizace RPM databАze..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
-msgstr ""
-"Do╧lo k chybЛ pЬi aktualizaci RPM databАze. Je dostatek mМsta na disku?"
+msgstr "Do╧lo k chybЛ pЬi aktualizaci RPM databАze. Je dostatek mМsta na disku?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Instaluji balМХky"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-"NemАte dostatek mМsta na disku pro v╧echny balМХky, kterИ jste si vybrali. "
-"PotЬebujete vМce mМsta na nАsledujМcМch systИmech svazcМch:\n"
+"NemАte dostatek mМsta na disku pro v╧echny balМХky, kterИ jste si vybrali. PotЬebujete vМce mМsta na nАsledujМcМch systИmech svazcМch:\n"
"\n"
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Bod pЬipojenМ:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr "ChybМ mМsto"
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "DiskovЩ prostor"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Instalace"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "Otestovat konfiguraci"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "Videokarta"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Video RAM"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Server"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Nelze naХМst sekundАrnМ RAM disk"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Monitor"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "Rozsah ЬАdkovЩch kmitoХtЫ (horizontal)"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "Rozsah snМmkovЩch kmitoХtЫ (vertical)"
@@ -824,8 +706,7 @@ msgstr "Heslo"
msgid "Password (confirm)"
msgstr "Heslo (znovu)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "PlnИ jmИno"
@@ -833,15 +714,11 @@ msgstr "PlnИ jmИno"
msgid "Add"
msgstr "PЬidat"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Upravit"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Zru╧it"
@@ -957,8 +834,7 @@ msgstr "PracovnМ stanice s GNOME"
msgid "KDE Workstation"
msgstr "PracovnМ stanice s KDE"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Server"
@@ -1002,7 +878,7 @@ msgstr "Varianta"
msgid "Test your selection here:"
msgstr "Vyzkou╧ejte zde svЫj vЩbЛr:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "JakЩm jazykem mА s vАmi komunikovat instalaХnМ program?"
@@ -1042,19 +918,15 @@ msgstr "VytvoЬenМ zavАdЛcМ diskety"
msgid "Do not install LILO"
msgstr "Neinstalovat LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "ImplicitnМ"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Typ oddМlu"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "JmИno systИmu"
@@ -1062,43 +934,43 @@ msgstr "JmИno systИmu"
msgid "Emulate 3 Buttons"
msgstr "Emulovat 3 tlaХМtka"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Konfigurace pomocМ DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "PЬi startu aktivovat"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "IP adresa"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Maska sМtЛ"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "SМ╩"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "V╧esmЛrovА adresa"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Gateway"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "PrimАrnМ DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "SekundАrnМ DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "TerciАlnМ DNS"
@@ -1183,14 +1055,8 @@ msgid "Low Memory"
msgstr "Nedostatek pamЛti"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Proto╬e na tomto poХМtaХi nenМ dostatek pamЛti, je tЬeba zaХМt pou╬Мvat "
-"odklАdacМ prostor. Proto je nutnИ zapsat novou tabulku oddМlЫ na disk ji╬ "
-"nynМ. SouhlasМte?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Proto╬e na tomto poХМtaХi nenМ dostatek pamЛti, je tЬeba zaХМt pou╬Мvat odklАdacМ prostor. Proto je nutnИ zapsat novou tabulku oddМlЫ na disk ji╬ nynМ. SouhlasМte?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1201,21 +1067,17 @@ msgstr "AutomatickИ rozdЛlovАnМ na oddМly"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"Pokud jej nechcete, mЫ╬ete pokraХovat ruХnМm rozdЛlenМm diskЫ na oddМly, "
-"nebo se mЫ╬ete vrАtit zpЛt a provИst vlastnМ instalaci podle va╧ich "
-"po╬adavkЫ."
+"Pokud jej nechcete, mЫ╬ete pokraХovat ruХnМm rozdЛlenМm diskЫ na oddМly, nebo se mЫ╬ete vrАtit zpЛt a provИst vlastnМ instalaci podle va╧ich po╬adavkЫ."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Smazat data"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "RuХnМ rozdЛlovАnМ diskЫ"
@@ -1273,7 +1135,7 @@ msgstr "Rozsah snМmkovЩch kmitoХtЫ (vertical)"
msgid "Test failed"
msgstr "Test selhal"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "UpЬesnЛnМ konfigurace X"
@@ -1281,61 +1143,43 @@ msgstr "UpЬesnЛnМ konfigurace X"
msgid "Bits per Pixel"
msgstr "BitЫ na pixel"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Otestovat konfiguraci"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"Ve vЛt╧inЛ pЬМpadЫ lze va╧i videokartu automaticky otestovat a nastavit "
-"nejlep╧М rozli╧enМ pro vА╧ displej."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "Ve vЛt╧inЛ pЬМpadЫ lze va╧i videokartu automaticky otestovat a nastavit nejlep╧М rozli╧enМ pro vА╧ displej."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "VЩsledky automatickИ detekce:"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"VА╧ monitor nelze automaticky detekovat. ProsМm vyberte jeho typ ze seznamu:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "VА╧ monitor nelze automaticky detekovat. ProsМm vyberte jeho typ ze seznamu:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Nastavit pЬihla╧ovАnМ v grafice"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "PЬeskoХit konfiguraci X"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"U nЛkterЩch systИmЫ je tЬeba pro jejich sprАvnou funkci pЬedat jАdru "
-"speciАlnМ parametry. Jestli╬e musМte pЬedАvat zavАdЛcМ parametry jАdru, "
-"zadejte je teО. Pokud ╬АdnИ nepotЬebujete nebo je nevМte, nezadАvejte nic."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "U nЛkterЩch systИmЫ je tЬeba pro jejich sprАvnou funkci pЬedat jАdru speciАlnМ parametry. Jestli╬e musМte pЬedАvat zavАdЛcМ parametry jАdru, zadejte je teО. Pokud ╬АdnИ nepotЬebujete nebo je nevМte, nezadАvejte nic."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zavadЛХ systИmu?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Smazat"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Zru╧it"
@@ -1344,24 +1188,12 @@ msgid "Edit Boot Label"
msgstr "ZmЛnit jmИno systИmu"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"ZavadЛХ, kterЩ pou╬МvА systИm Red Hat, lze pou╬Мt i pro zavАdЛnМ jinЩch "
-"operaХnМch systИmЫ. Je tЬeba zadat, ve kterЩch oddМlech jsou tyto systИmy a "
-"jmИno, kterИ bude pou╬ito pro jejich vЩbЛr pЬi startu poХМtaХe."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "ZavadЛХ, kterЩ pou╬МvА systИm Red Hat, lze pou╬Мt i pro zavАdЛnМ jinЩch operaХnМch systИmЫ. Je tЬeba zadat, ve kterЩch oddМlech jsou tyto systИmy a jmИno, kterИ bude pou╬ito pro jejich vЩbЛr pЬi startu poХМtaХe."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"NЛkterИ z balМХkЫ vybranЩch pro instalaci vy╬adujМ balМХky, kterИ nebyly "
-"vybrАny. Jestli╬e zvolМte OK, nainstaluji takИ v╧echny tyto vy╬adovanИ "
-"balМХky."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "NЛkterИ z balМХkЫ vybranЩch pro instalaci vy╬adujМ balМХky, kterИ nebyly vybrАny. Jestli╬e zvolМte OK, nainstaluji takИ v╧echny tyto vy╬adovanИ balМХky."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1369,31 +1201,19 @@ msgstr "RozdЛlenМ diskЫ"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid je novЩ program pro vytvАЬenМ oddМlЫ a nastavovАnМ pЬipojovacМch "
-"bodЫ. MЛl by bЩt vЩkonnЛj╧М a snАze pou╬itelnЩ ne╬li tradiХnМ LinuxovЩ "
-"program fdisk. NЛkteЬМ u╬ivatelИ v╧ak preferujМ starЩ dobrЩ fdisk. NЛkdy je "
-"jeho pou╬itМ nezbytnИ.\n"
+"Disk Druid je novЩ program pro vytvАЬenМ oddМlЫ a nastavovАnМ pЬipojovacМch bodЫ. MЛl by bЩt vЩkonnЛj╧М a snАze pou╬itelnЩ ne╬li tradiХnМ LinuxovЩ program fdisk. NЛkteЬМ u╬ivatelИ v╧ak preferujМ starЩ dobrЩ fdisk. NЛkdy je jeho pou╬itМ nezbytnИ.\n"
"\n"
"KterЩ nАstroj chcete pou╬Мt?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"K instalaci Red Hat Linuxu je zapotЬebМ nejmИnЛ jeden oddМl o velikosti "
-"alespoР 150 MB vyhrazenЩ pro Linux. DoporuХuje se umМstit tento oddМl na "
-"prvnМ nebo druhЩ pevnЩ disk, aby bylo mo╬nИ zavАdЛt Linux zavadЛХem LILO."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "K instalaci Red Hat Linuxu je zapotЬebМ nejmИnЛ jeden oddМl o velikosti alespoР 150 MB vyhrazenЩ pro Linux. DoporuХuje se umМstit tento oddМl na prvnМ nebo druhЩ pevnЩ disk, aby bylo mo╬nИ zavАdЛt Linux zavadЛХem LILO."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Hotovo"
@@ -1402,16 +1222,8 @@ msgid "Continue"
msgstr "PokraХovat"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"KterИ oddМly chcete zformАtovat? DЫraznЛ se doporuХuje zformАtovat v╧echny "
-"systИmovИ oddМly vХetnЛ /, /usr a /var. OddМly /home nebo /usr/local v╧ak "
-"nenМ tЬeba formАtovat znovu, pokud ji╬ byly konfigurovАny bЛhem pЬedchozМ "
-"instalace."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "KterИ oddМly chcete zformАtovat? DЫraznЛ se doporuХuje zformАtovat v╧echny systИmovИ oddМly vХetnЛ /, /usr a /var. OddМly /home nebo /usr/local v╧ak nenМ tЬeba formАtovat znovu, pokud ji╬ byly konfigurovАny bЛhem pЬedchozМ instalace."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1431,14 +1243,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Zvolte heslo pro u╬ivatele root. Pamatujte, ╬e toto heslo je klМХovЩm bodem "
-"zabezpeХenМ systИmu! Heslo musМte zadat dvakrАt, aby se snМ╬ila "
-"pravdЛpodobnost, ╬e dМky pЬeklepu zadАte jinИ heslo ne╬ chcete."
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Zvolte heslo pro u╬ivatele root. Pamatujte, ╬e toto heslo je klМХovЩm bodem zabezpeХenМ systИmu! Heslo musМte zadat dvakrАt, aby se snМ╬ila pravdЛpodobnost, ╬e dМky pЬeklepu zadАte jinИ heslo ne╬ chcete."
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1489,24 +1295,12 @@ msgid "This user id already exists. Choose another."
msgstr "Toto ХМslo u╬ivatele ji╬ existuje. Zvolte jinИ."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"Pro vЛt╧inu ХinnostМ byste mЛli pou╬Мvat normАlnМ u╬ivatelskЩ ЗХet. "
-"Nebudete-li zbyteХnЛ pou╬Мvat ЗХet root, snМ╬Мte pravdЛpodobnost po╧kozenМ "
-"konfigurace va╧eho systИmu."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "Pro vЛt╧inu ХinnostМ byste mЛli pou╬Мvat normАlnМ u╬ivatelskЩ ЗХet. Nebudete-li zbyteХnЛ pou╬Мvat ЗХet root, snМ╬Мte pravdЛpodobnost po╧kozenМ konfigurace va╧eho systИmu."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"JakЩ u╬ivatelskЩ ЗХet chcete mМt na tomto poХМtaХi? MЛli byste mМt alespoР "
-"jeden obyХejnЩ ЗХet (ne root) pro normАlnМ prАci, ale mЫ╬ete vytvoЬit "
-"libovolnЩ poХet ЗХtЫ."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "JakЩ u╬ivatelskЩ ЗХet chcete mМt na tomto poХМtaХi? MЛli byste mМt alespoР jeden obyХejnЩ ЗХet (ne root) pro normАlnМ prАci, ale mЫ╬ete vytvoЬit libovolnЩ poХet ЗХtЫ."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1544,8 +1338,7 @@ msgstr "nebo:"
msgid "Request server via broadcast"
msgstr "Dotazovat server v╧esmЛrovЩm vysМlАnМm"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "ChybnЩ bod pЬipojenМ"
@@ -1614,42 +1407,26 @@ msgid "Too Many Drives"
msgstr "PЬМli╧ mnoho jednotek"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"MАte vМc jednotek, ne╬ tento program podporuje. Pou╬ijte standardnМ program "
-"fdisk a upozornЛte firmu Red Hat Software, ╬e se vАm zobrazila tato zprАva."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "MАte vМc jednotek, ne╬ tento program podporuje. Pou╬ijte standardnМ program fdisk a upozornЛte firmu Red Hat Software, ╬e se vАm zobrazila tato zprАva."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Nenalezeny ╬АdnИ jednotky"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Chyba - nebyla nalezena ╬АdnА platnА zaЬМzenМ, na nich╬ by bylo mo╬nИ "
-"vytvoЬit novИ systИmy souborЫ. MЫ╬e se jednat o hardwarovou chybu."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Chyba - nebyla nalezena ╬АdnА platnА zaЬМzenМ, na nich╬ by bylo mo╬nИ vytvoЬit novИ systИmy souborЫ. MЫ╬e se jednat o hardwarovou chybu."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
msgstr "PЬi ХtenМ tabulky oddМlЫ blokovИho zaЬМzenМ %s do╧lo k tИto chybЛ:"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Tabulka oddМlЫ na zaЬМzenМ %s je po╧kozena. Aby mohly bЩt vytvoЬeny novИ "
-"oddМly, je tЬeba tuto tabulku novЛ inicializovat, co╬ zpЫsobМ ztrАtu V╘ECH "
-"DAT na tИto jednotce."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Tabulka oddМlЫ na zaЬМzenМ %s je po╧kozena. Aby mohly bЩt vytvoЬeny novИ oddМly, je tЬeba tuto tabulku novЛ inicializovat, co╬ zpЫsobМ ztrАtu V╘ECH DAT na tИto jednotce."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1672,14 +1449,8 @@ msgid "BSD Disklabel"
msgstr "BSD jmenovka disku"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"Byl nalezen disk se jmenovkou typu BSD. Instalace systИmu Red Hat podporuje "
-"jmenovky disku BSD pouze v re╬imu ХtenМ; pro stroje s tЛmito typy jmenovek "
-"musМte pou╬Мt \"vlastnМ\" instalaci a program fdisk (nikoli Disk Druid)."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "Byl nalezen disk se jmenovkou typu BSD. Instalace systИmu Red Hat podporuje jmenovky disku BSD pouze v re╬imu ХtenМ; pro stroje s tЛmito typy jmenovek musМte pou╬Мt \"vlastnМ\" instalaci a program fdisk (nikoli Disk Druid)."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1706,10 +1477,7 @@ msgstr "Zru╧enМ oddМlu"
msgid "Are you sure you want to delete this partition?"
msgstr "SkuteХnЛ chcete tento oddМl zru╧it?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "зprava oddМlu"
@@ -1749,57 +1517,38 @@ msgstr "Typ oddМlu:"
msgid "Allowable Drives:"
msgstr "Pou╬itelnИ jednotky:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "ChybМ bod pЬipojenМ"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Nebyl zadАn pЬipojovacМ bod pro tento oddМl. SkuteХnЛ chcete pokraХovat?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Nebyl zadАn pЬipojovacМ bod pro tento oddМl. SkuteХnЛ chcete pokraХovat?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Chyba bodu pЬipojenМ"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"ZadanЩ pЬipojovacМ bod buО neexistuje, nebo je ji╬ pou╬МvАn. Zadejte platnЩ "
-"pЬipojovacМ bod."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "ZadanЩ pЬipojovacМ bod buО neexistuje, nebo je ji╬ pou╬МvАn. Zadejte platnЩ pЬipojovacМ bod."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "ChybnА velikost"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"ZadanА velikost je neplatnА. Velikost musМ bЩt celИ ХМslo vЛt╧М ne╬ nula "
-"zadanИ v desМtkovИ soustavЛ."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "ZadanА velikost je neplatnА. Velikost musМ bЩt celИ ХМslo vЛt╧М ne╬ nula zadanИ v desМtkovИ soustavЛ."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "ChybnА velikost odklАdacМho oddМlu"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"VytvoЬili jste pЬМli╧ velkЩ odklАdacМ oddМl. MaximАlnМ velikost odklАdacМho "
-"oddМlu je %ld megabajtЫ."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "VytvoЬili jste pЬМli╧ velkЩ odklАdacМ oddМl. MaximАlnМ velikost odklАdacМho oddМlu je %ld megabajtЫ."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1807,8 +1556,7 @@ msgstr "╝АdnА omezenМ na RAID jednotku"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
"Zkonfigurovali jste RAID oddМl bez omezenМ na jedinЩ disk.\n"
@@ -1819,12 +1567,8 @@ msgid "Close"
msgstr "ZavЬМt"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Zkonfigurovali jste RAID oddМl bez omezenМ na jedinЩ disk. ProsМm zvolte "
-"jednu jednotku, na kterou tento oddМl omezМte."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Zkonfigurovali jste RAID oddМl bez omezenМ na jedinЩ disk. ProsМm zvolte jednu jednotku, na kterou tento oddМl omezМte."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1834,30 +1578,17 @@ msgstr "NekompletnМ zadАnМ RAID"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"RAID zaЬМzenМ /dev/%s nynМ obsahuje nealokovanИ oddМly. RAID zaЬМzenМ "
-"/dev/%s bude nynМ rozdЛleno na oddМly, ze kterЩ sestАvА. ProsМm vytvoЬte "
-"znovu RAID zaЬМzenМ s alokovanЩmi oddМly."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "RAID zaЬМzenМ /dev/%s nynМ obsahuje nealokovanИ oddМly. RAID zaЬМzenМ /dev/%s bude nynМ rozdЛleno na oddМly, ze kterЩ sestАvА. ProsМm vytvoЬte znovu RAID zaЬМzenМ s alokovanЩmi oddМly."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "NepЬidЛlenИ oddМly"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Seznam oddМlЫ obsahuje jeden nebo vМce nepЬidЛlenЩch oddМlЫ. Tyto oddМly "
-"jsou v seznamu uvedeny dole s udАnМm dЫvodu, proХ nemohly bЩt pЬidЛleny."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Seznam oddМlЫ obsahuje jeden nebo vМce nepЬidЛlenЩch oddМlЫ. Tyto oddМly jsou v seznamu uvedeny dole s udАnМm dЫvodu, proХ nemohly bЩt pЬidЛleny."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1880,24 +1611,16 @@ msgid "You have not selected a mount point. A mount point is required."
msgstr "Nevybrali jste pЬipojovacМ bod. PЬipojovacМ bod musМ bЩt zadАn."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"ZadanЩ pЬipojovacМ bod je ji╬ pou╬МvАn. ProsМm zadejte platnЩ pЬipojovacМ "
-"bod."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "ZadanЩ pЬipojovacМ bod je ji╬ pou╬МvАn. ProsМm zadejte platnЩ pЬipojovacМ bod."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "VarovАnМ - zavАdЛnМ systИmu z RAID"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Zvolili jste toto RAID zaЬМzenМ jako zavАdЛcМ oddМl. ProsМm zkontrolujte, ╬e "
-"v╧echny oddМly, z nich╬ se sklАdА, jsou zavАdЛcМ."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Zvolili jste toto RAID zaЬМzenМ jako zavАdЛcМ oddМl. ProsМm zkontrolujte, ╬e v╧echny oddМly, z nich╬ se sklАdА, jsou zavАdЛcМ."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1913,21 +1636,15 @@ msgstr "Pou╬ito RAID zaЬМzenМ"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"RAID zaЬМzenМ \"/dev/%s\" je ji╬ zkonfigurovАno jako RAID zaЬМzenМ. ProsМm "
-"vyberte jinИ."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "RAID zaЬМzenМ \"/dev/%s\" je ji╬ zkonfigurovАno jako RAID zaЬМzenМ. ProsМm vyberte jinИ."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "NedostateХnЩ poХet oddМlЫ"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr "Nezkonfigurovali jste dostateХnЩ poХet oddМlЫ pro RAID zvolenИho typu."
#: ../libfdisk/gnomefsedit.c:1942
@@ -1940,14 +1657,8 @@ msgstr "ZavАdЛcМ oddМly (/boot) mohou bЩt pouze na RAID-1."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"OddМl %s byl ji╬ dЬМve uveden v sadЛ oddМlЫ pro toto RAID zaЬМzenМ. Bod "
-"pЬipojenМ je nastaven na /boot. Opravdu jste si jisti, ╬e lze zavАdЛt systИm "
-"z tohoto oddМlu?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "OddМl %s byl ji╬ dЬМve uveden v sadЛ oddМlЫ pro toto RAID zaЬМzenМ. Bod pЬipojenМ je nastaven na /boot. Opravdu jste si jisti, ╬e lze zavАdЛt systИm z tohoto oddМlu?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2011,12 +1722,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "ExistujМ nepЬidЛlenИ oddМly..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Aby mohla instalace pokraХovat, musМ bЩt oddМl, v nЛm╬ mА bЩt koЬenovЩ "
-"adresАЬ (/), typu Linux native (ext2) nebo RAID."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Aby mohla instalace pokraХovat, musМ bЩt oddМl, v nЛm╬ mА bЩt koЬenovЩ adresАЬ (/), typu Linux native (ext2) nebo RAID."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2067,12 +1774,8 @@ msgid "No Root Partition"
msgstr "ChybМ koЬenovЩ oddМl"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Aby mohla instalace pokraХovat, musМ bЩt oddМl, v nЛm╬ mА bЩt koЬenovЩ "
-"adresАЬ (/), typu Linux native (ext2)."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Aby mohla instalace pokraХovat, musМ bЩt oddМl, v nЛm╬ mА bЩt koЬenovЩ adresАЬ (/), typu Linux native (ext2)."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2084,13 +1787,11 @@ msgstr "Aby mohla instalace pokraХovat, musМte definovat odklАdacМ oddМl."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"ExistujМ nepЬidЛlenИ oddМly. Pokud nynМ skonХМte, bude ХАst disku "
-"nevyu╬ita.\n"
+"ExistujМ nepЬidЛlenИ oddМly. Pokud nynМ skonХМte, bude ХАst disku nevyu╬ita.\n"
"\n"
"Chcete vskutku skonХit?"
@@ -2127,21 +1828,14 @@ msgid "Miscellaneous"
msgstr "RЫznИ volby"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Tomuto modulu mЫ╬ete zadat parametry, kterИ ovlivРujМ jeho funkci. Pokud "
-"nevМte, jakИ parametry zadat, klidnЛ pokraХujte dАle stisknutМm tlaХМtka "
-"\"OK\"."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Tomuto modulu mЫ╬ete zadat parametry, kterИ ovlivРujМ jeho funkci. Pokud nevМte, jakИ parametry zadat, klidnЛ pokraХujte dАle stisknutМm tlaХМtka \"OK\"."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "Parametry modulЫ"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "ZaЬМzenМ"
@@ -2154,20 +1848,12 @@ msgid "Failed to mount floppy disk."
msgstr "Nelze pЬipojit disketu."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"Disketa, kterou jste vlo╬ili, nenМ sprАvnou disketou s ovladaХi pro tuto "
-"verzi Red Hat Linuxu."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "Disketa, kterou jste vlo╬ili, nenМ sprАvnou disketou s ovladaХi pro tuto verzi Red Hat Linuxu."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"KterЩ ovladaХ mАm pou╬Мt? Pokud ovladaХ, kterЩ potЬebujete, nenМ uveden v "
-"tomto seznamu a mАte dal╧М disk s ovladaХi, prosМm stisknЛte F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "KterЩ ovladaХ mАm pou╬Мt? Pokud ovladaХ, kterЩ potЬebujete, nenМ uveden v tomto seznamu a mАte dal╧М disk s ovladaХi, prosМm stisknЛte F2."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2196,15 +1882,15 @@ msgstr "Chyba pЬi ХtenМ obsahu kickstart souboru %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Chyba na ЬАdku %d kickstart souboru %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "Vyberte jazyk"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Typ klАvesnice"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "JakЩ typ klАvesnice mАte?"
@@ -2220,136 +1906,116 @@ msgstr "NFS obraz"
msgid "Hard drive"
msgstr "PevnЩ disk"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "VМtА vАs Red Hat Linux"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> pЬepМnА mezi polo╬kami | <Mezera> vЩbЛr | <F12> pokraХovat"
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> pЬepМnА mezi polo╬kami | <Mezera> vЩbЛr | <F12> pokraХovat"
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "JakИ zaЬМzenМ chcete pЬidat?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "V poХМtaХi byly nalezeny nАsledujМcМ zaЬМzenМ:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "PЬidat zaЬМzenМ"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"╝АdnИ speciАlnМ ovladaХe zaЬМzenМ pro vА╧ systИm nejsou zavedeny. Chcete "
-"nynМ nЛjakИ zavИst?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "╝АdnИ speciАlnМ ovladaХe zaЬМzenМ pro vА╧ systИm nejsou zavedeny. Chcete nynМ nЛjakИ zavИst?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "ZavАdЛnМ"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "NaХМtАm sekundАrnМ ramdisk..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Chyba pЬi naХМtАnМ RAM disku."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "PevnИ disky"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"V tomto poХМtaХi nebyly nalezeny ╬АdnИ pevnИ disky! Chcete zkonfigurovat "
-"dal╧М zaЬМzenМ?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "V tomto poХМtaХi nebyly nalezeny ╬АdnИ pevnИ disky! Chcete zkonfigurovat dal╧М zaЬМzenМ?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"KterЩ oddМl a adresАЬ v tomto oddМlu obsahuje adresАЬe RedHat/RPMS a "
-"RedHat/base? Pokud nevidМte vypsanou diskovou jednotku, kterou pou╬МvАte, "
-"stisknЛte F2 a zkonfigurujte dal╧М zaЬМzenМ."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "KterЩ oddМl a adresАЬ v tomto oddМlu obsahuje adresАЬe RedHat/RPMS a RedHat/base? Pokud nevidМte vypsanou diskovou jednotku, kterou pou╬МvАte, stisknЛte F2 a zkonfigurujte dal╧М zaЬМzenМ."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "AdresАЬ obsahujМcМ Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "VЩbЛr oddМlu"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "ZaЬМzenМ %s zЬejmЛ neobsahuje instalaХnМ strom distribuce Red Hat."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"Nemohu nalИzt CD-ROM Red Hat Linux v ╬АdnИ jednotce CD. ProsМm vlo╬te CD-ROM "
-"Red Hat Linux a stisknЛte tlaХМtko \"OK\" pro opakovАnМ."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "Nemohu nalИzt CD-ROM Red Hat Linux v ╬АdnИ jednotce CD. ProsМm vlo╬te CD-ROM Red Hat Linux a stisknЛte tlaХМtko \"OK\" pro opakovАnМ."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "ZadanЩ adresАЬ zЬejmЛ neobsahuje instalaХnМ strom distribuce Red Hat."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "ZadanЩ adresАЬ nelze ze serveru pЬipojit"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Nelze naХМst sekundАrnМ RAM disk"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "Metoda zotavenМ"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "InstalaХnМ metoda"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "JakЩ druh mИdia obsahuje disk pro zotavenМ?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Na jakИm druhu mИdia jsou balМХky, kterИ chcete instalovat?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Na zavАdЛcМ disketЛ nelze nalИzt soubor ks.cfg."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC Card"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "Inicializuji PC Card zaЬМzenМ..."
@@ -2380,12 +2046,8 @@ msgstr ""
" Red Hat Linux pro va╧i architekturu."
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Zadejte konfiguraci IP pro tento stroj. JednotlivИ polo╬ky zadАvejte jako IP "
-"adresy v desМtkovИ notaci oddЛlenИ teХkami (napЬ. 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Zadejte konfiguraci IP pro tento stroj. JednotlivИ polo╬ky zadАvejte jako IP adresy v desМtkovИ notaci oddЛlenИ teХkami (napЬ. 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2449,11 +2111,8 @@ msgid "Network device"
msgstr "SМ╩ovИ zaЬМzenМ"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> pЬepМnА mezi polo╬kami | <Mezera> vЩbЛr | <F12> pokraХovat"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> pЬepМnА mezi polo╬kami | <Mezera> vЩbЛr | <F12> pokraХovat"
#: ../loader/net.c:699
#, c-format
@@ -2533,18 +2192,11 @@ msgid "You must enter a directory."
msgstr "MusМte zadat adresАЬ."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Pou╬МvАte-li neanonymnМ FTP, zadejte jmИno u╬ivatele a heslo, kterИ chcete "
-"pou╬Мt. Pou╬МvАte-li FTP proxy, zadejte jmИno va╧eho FTP proxy serveru."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Pou╬МvАte-li neanonymnМ FTP, zadejte jmИno u╬ivatele a heslo, kterИ chcete pou╬Мt. Pou╬МvАte-li FTP proxy, zadejte jmИno va╧eho FTP proxy serveru."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
msgstr "Jestli╬e pou╬МvАte HTTP proxy server, zadejte jeho jmИno."
#: ../loader/urls.c:295
@@ -2571,13 +2223,8 @@ msgstr "HTTP proxy port:"
msgid "Loading SCSI driver"
msgstr "NaХМtАm SCSI ovladaХ"
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "PЬi ХtenМ blokovИho zaЬМzenМ %s byla nalezena chybnА jmenovka disku pro "
-#~ "disky Sun. Pro vytvoЬenМ a zapsАnМ novИ jmenovky musМte pou╬Мt program fdisk."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "PЬi ХtenМ blokovИho zaЬМzenМ %s byla nalezena chybnА jmenovka disku pro disky Sun. Pro vytvoЬenМ a zapsАnМ novИ jmenovky musМte pou╬Мt program fdisk."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "ChybnА jmenovka disku Sun"
@@ -2585,21 +2232,11 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "First sector of boot partition (recommended)"
#~ msgstr "PrvnМ sektor zavАdЛnИho oddМlu (doporuХeno)"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Aby mohla instalace pokraХovat, musМ bЩt zavАdЛcМ oddМl (/boot) typu Linux "
-#~ "native (ext2) nebo RAID-1.."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Aby mohla instalace pokraХovat, musМ bЩt zavАdЛcМ oddМl (/boot) typu Linux native (ext2) nebo RAID-1.."
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Proto╬e jste jako koЬenovЩ oddМl (/) pou╬ili RAID zaЬМzenМ, musМte takИ "
-#~ "zavАdЛcМ oddМl (/boot) pЬiЬadit oddМlu typu Linux native (ext2) nebo RAID-1. "
-#~ "Jinak nemЫ╬e bЩt instalace dokonХena."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Proto╬e jste jako koЬenovЩ oddМl (/) pou╬ili RAID zaЬМzenМ, musМte takИ zavАdЛcМ oddМl (/boot) pЬiЬadit oddМlu typu Linux native (ext2) nebo RAID-1. Jinak nemЫ╬e bЩt instalace dokonХena."
#~ msgid "Use fdisk to format drives"
#~ msgstr "Pou╬Мt fdisk pro rozdЛlenМ diskЫ"
@@ -2676,29 +2313,11 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "I can't find the device anywhere on your system!"
#~ msgstr "ZaЬМzenМ nelze nikde v systИmu najМt!"
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "V nЛkterЩch pЬМpadech je potЬeba pro sprАvnou funkci ovladaХe %s zadat dal╧М "
-#~ "Зdaje, aХkoliv obvykle funguje dobЬe i bez nich. Chcete zadat dal╧М volby "
-#~ "nebo umo╬nit, aby se ovladaХ pokusil automaticky detekovat hodnoty tЛchto "
-#~ "parametrЫ? AutomatickА detekce mЫ╬e nЛkdy zpЫsobit zablokovАnМ poХМtaХe, ale "
-#~ "nemЛla by vИst k ╬АdnЩm ╧kodАm."
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "V nЛkterЩch pЬМpadech je potЬeba pro sprАvnou funkci ovladaХe %s zadat dal╧М Зdaje, aХkoliv obvykle funguje dobЬe i bez nich. Chcete zadat dal╧М volby nebo umo╬nit, aby se ovladaХ pokusil automaticky detekovat hodnoty tЛchto parametrЫ? AutomatickА detekce mЫ╬e nЛkdy zpЫsobit zablokovАnМ poХМtaХe, ale nemЛla by vИst k ╬АdnЩm ╧kodАm."
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "V mnoha pЬМpadech musМ bЩt ovladaХi %s poskytnuty dal╧М informace o va╧em "
-#~ "hardwaru. Pokud chcete, budou pro tyto parametry vyzkou╧eny nЛkterИ obvyklИ "
-#~ "hodnoty. Zkou╧enМ mЫ╬e nЛkdy zpЫsobit zablokovАnМ poХМtaХe, ale nemЛlo by "
-#~ "vИst k ╬АdnЩm ╧kodАm."
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "V mnoha pЬМpadech musМ bЩt ovladaХi %s poskytnuty dal╧М informace o va╧em hardwaru. Pokud chcete, budou pro tyto parametry vyzkou╧eny nЛkterИ obvyklИ hodnoty. Zkou╧enМ mЫ╬e nЛkdy zpЫsobit zablokovАnМ poХМtaХe, ale nemЛlo by vИst k ╬АdnЩm ╧kodАm."
#~ msgid "Module options:"
#~ msgstr "Volby pro modul:"
@@ -2760,12 +2379,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "PCMCIA Disk"
#~ msgstr "Disketa PCMCIA"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "PЬipojenМ diskety se nezdaЬilo. Vlo╬te disketu Red Hat PCMCIA, nebo zvolte "
-#~ "Zru╧it a vyberte jinЩ instalaХnМ proces."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "PЬipojenМ diskety se nezdaЬilo. Vlo╬te disketu Red Hat PCMCIA, nebo zvolte Zru╧it a vyberte jinЩ instalaХnМ proces."
#~ msgid "Loading PCMCIA Support"
#~ msgstr "ZavАdМm podporu PCMCIA"
@@ -2773,12 +2388,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "Supplemental Disk"
#~ msgstr "DoplРkovА disketa"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "PЬipojenМ diskety se nezdaЬilo. Vlo╬te doplРkovou instalaХnМ disketu Red "
-#~ "Hat, nebo zvolte Zru╧it a vyberte jinЩ instalaХnМ proces."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "PЬipojenМ diskety se nezdaЬilo. Vlo╬te doplРkovou instalaХnМ disketu Red Hat, nebo zvolte Zru╧it a vyberte jinЩ instalaХnМ proces."
#~ msgid "Loading Supplemental Disk..."
#~ msgstr "NaХМtАm doplРkovou disketu..."
@@ -2786,28 +2397,14 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "Driver Disk"
#~ msgstr "Disketa s ovladaХi"
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "Tato instalaХnМ metoda vy╬aduje disketu s ovladaХi. VyjmЛte doplРkovou "
-#~ "disketu z jednotky a nahraОte ji disketou Red Hat Modules."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "Tato instalaХnМ metoda vy╬aduje disketu s ovladaХi. VyjmЛte doplРkovou disketu z jednotky a nahraОte ji disketou Red Hat Modules."
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "PЬipojenМ diskety se nezdaЬilo. Vlo╬te disketu Red Hat Modules, nebo zvolte "
-#~ "Zru╧it a vyberte jinЩ instalaХnМ proces."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "PЬipojenМ diskety se nezdaЬilo. Vlo╬te disketu Red Hat Modules, nebo zvolte Zru╧it a vyberte jinЩ instalaХnМ proces."
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "Tato instalaХnМ metoda vy╬aduje dvЛ dodateХnИ diskety. VyjmЛte startovacМ "
-#~ "disketu z jednotky a nahraОte ji doplРkovou instalaХnМ disketou Red Hat "
-#~ "Supplementary Install."
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "Tato instalaХnМ metoda vy╬aduje dvЛ dodateХnИ diskety. VyjmЛte startovacМ disketu z jednotky a nahraОte ji doplРkovou instalaХnМ disketou Red Hat Supplementary Install."
#~ msgid "hd command"
#~ msgstr "pЬМkaz hd"
@@ -2860,14 +2457,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "mount failed: %s"
#~ msgstr "chyba pЬi pЬipojovАnМ svazku: %s"
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "Tabulka oddМlЫ na zaЬМzenМ %s je po╧kozena. Aby mohly bЩt vytvoЬeny novИ "
-#~ "oddМly, je tЬeba tuto tabulku novЛ inicializovat. MА-li to bЩt provedeno "
-#~ "automaticky, je tЬeba v kickstart souboru zadat \"zerombr yes\"."
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "Tabulka oddМlЫ na zaЬМzenМ %s je po╧kozena. Aby mohly bЩt vytvoЬeny novИ oddМly, je tЬeba tuto tabulku novЛ inicializovat. MА-li to bЩt provedeno automaticky, je tЬeba v kickstart souboru zadat \"zerombr yes\"."
#~ msgid "Zero Partition Table"
#~ msgstr "VynulovАnМ tabulky oddМlЫ"
@@ -2877,8 +2468,7 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "kickstart: chybnЩ argument pЬМkazu zerombr: %s.\n"
-#~ "Pou╬ijte 'on', '1' nebo 'yes' pro pЬepsАnМ tabulky partition; 'off', '0' "
-#~ "nebo 'no' pro jejМ zachovАnМ."
+#~ "Pou╬ijte 'on', '1' nebo 'yes' pro pЬepsАnМ tabulky partition; 'off', '0' nebo 'no' pro jejМ zachovАnМ."
#~ msgid "Clear Partition Command"
#~ msgstr "PЬМkaz zru╧enМ oddМlu"
@@ -2895,12 +2485,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "Option Ignored"
#~ msgstr "Volba ignorovАna"
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "Volba --maxsize pro oddМl %s byla ignorovАna. Zkontrolujte, zda je vЛt╧М ne╬ "
-#~ "volba --size."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "Volba --maxsize pro oddМl %s byla ignorovАna. Zkontrolujte, zda je vЛt╧М ne╬ volba --size."
#~ msgid "The mount point %s is already in use."
#~ msgstr "PЬipojovacМ bod %s je ji╬ pou╬МvАn."
@@ -2911,12 +2497,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "The partition %s could not be allocated."
#~ msgstr "OddМl %s nelze pЬidЛlit."
-#~ msgid ""
-#~ "There are partitions that can be resized nondestructively to make room for "
-#~ "your Red Hat Linux installation. Do you want to resize these partitions now?"
-#~ msgstr ""
-#~ "Na disku jsou oddМly, jejich╬ velikost mЫ╬e bЩt zmЛnЛna bez ztrАty dat. "
-#~ "Chcete nynМ mЛnit velikost tЛchto oddМlЫ?"
+#~ msgid "There are partitions that can be resized nondestructively to make room for your Red Hat Linux installation. Do you want to resize these partitions now?"
+#~ msgstr "Na disku jsou oddМly, jejich╬ velikost mЫ╬e bЩt zmЛnЛna bez ztrАty dat. Chcete nynМ mЛnit velikost tЛchto oddМlЫ?"
#~ msgid "Success"
#~ msgstr "зspЛch"
@@ -2981,19 +2563,11 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "Scanning hard drives..."
#~ msgstr "Detekuji pevnИ disky..."
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "╝АdnИ pevnИ disky nejsou k dispozici! Je mo╬nИ, ╬e jste zapomnЛli "
-#~ "zkonfigurovat SCSI ЬadiХ."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "╝АdnИ pevnИ disky nejsou k dispozici! Je mo╬nИ, ╬e jste zapomnЛli zkonfigurovat SCSI ЬadiХ."
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "K instalaci Red Hat Linuxu je zapotЬebМ nejmИnЛ jeden oddМl o velikosti 150 "
-#~ "MB vyhrazenЩ pro Linux."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "K instalaci Red Hat Linuxu je zapotЬebМ nejmИnЛ jeden oddМl o velikosti 150 MB vyhrazenЩ pro Linux."
#~ msgid "Partition Disks"
#~ msgstr "RozdЛlenМ diskЫ na oddМly"
@@ -3002,21 +2576,13 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgstr "NutnЩ restart systИmu"
#~ msgid ""
-#~ "The kernel is unable to read your new partitioning information, probably "
-#~ "because you modified extended partitions. While this is not critical, you "
-#~ "must reboot your machine before proceeding. Insert the Red Hat boot disk now "
-#~ "and press Return to reboot your system.\n"
+#~ "The kernel is unable to read your new partitioning information, probably because you modified extended partitions. While this is not critical, you must reboot your machine before proceeding. Insert the Red Hat boot disk now and press Return to reboot your system.\n"
#~ "\n"
-#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an "
-#~ "empty SCSI drive can also cause this problem."
+#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an empty SCSI drive can also cause this problem."
#~ msgstr ""
-#~ "JАdro nemЫ╬e naХМst novИ Зdaje o rozdЛlenМ disku na oddМly pravdЛpodobnЛ "
-#~ "proto, ╬e jste upravili roz╧МЬenИ oddМly. PЬesto╬e to nenМ zАva╬nИ, musМte "
-#~ "pЬed dal╧М ХinnostМ stroj restartovat. Vlo╬te spou╧tЛcМ disk Red Hat do "
-#~ "jednotky a stisknutМm Enter systИm restartujte.\n"
+#~ "JАdro nemЫ╬e naХМst novИ Зdaje o rozdЛlenМ disku na oddМly pravdЛpodobnЛ proto, ╬e jste upravili roz╧МЬenИ oddМly. PЬesto╬e to nenМ zАva╬nИ, musМte pЬed dal╧М ХinnostМ stroj restartovat. Vlo╬te spou╧tЛcМ disk Red Hat do jednotky a stisknutМm Enter systИm restartujte.\n"
#~ "\n"
-#~ "MАte-li jednotku ZIP Хi JAZ, vlo╬te do nМ disk, proto╬e tento problИm mЫ╬e "
-#~ "bЩt zpЫsoben i prАzdnou SCSI jednotkou"
+#~ "MАte-li jednotku ZIP Хi JAZ, vlo╬te do nМ disk, proto╬e tento problИm mЫ╬e bЩt zpЫsoben i prАzdnou SCSI jednotkou"
#~ msgid "lilo command"
#~ msgstr "pЬМkaz lilo"
@@ -3027,26 +2593,14 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "PCMCIA Support"
#~ msgstr "Podpora PCMCIA"
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "PotЬebuje pou╬Мvat PCMCIA zaЬМzenМ pЬi instalaci? Jestli╬e budete podporu "
-#~ "PCMCIA potЬebovat a╬ po instalaci, odpovЛzte na tuto otАzku \"Ne\". Podpora "
-#~ "PCMCIA pЬi instalaci nenМ potЬeba, pokud instalujete Red Hat Linux na "
-#~ "pЬenosnЩ poХМtaХ s vestavЛnou jednotkou CDROM."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "PotЬebuje pou╬Мvat PCMCIA zaЬМzenМ pЬi instalaci? Jestli╬e budete podporu PCMCIA potЬebovat a╬ po instalaci, odpovЛzte na tuto otАzku \"Ne\". Podpora PCMCIA pЬi instalaci nenМ potЬeba, pokud instalujete Red Hat Linux na pЬenosnЩ poХМtaХ s vestavЛnou jednotkou CDROM."
#~ msgid "PCMCIA Support Disk"
#~ msgstr "Disketa s podporou PCMCIA"
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "Pro podporu PCMCIA pЬi instalaci je nutnА disketa s podporou PCMCIA. "
-#~ "NahraОte disketu v jednotce disketou Red Hat PCMCIA."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "Pro podporu PCMCIA pЬi instalaci je nutnА disketa s podporou PCMCIA. NahraОte disketu v jednotce disketou Red Hat PCMCIA."
#~ msgid "Starting PCMCIA services..."
#~ msgstr "Spou╧tМm PCMCIA slu╬by..."
@@ -3125,14 +2679,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "Upgrade log"
#~ msgstr "Protokol o aktualizaci"
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "зplnЩ protokol o aktualizaci bude po jejМm dokonХenМ v souboru "
-#~ "/tmp/upgrade.log. Po restartu jej zkontrolujte, abyste se ujistili, ╬e "
-#~ "konfiguraХnМ soubory byly sprАvnЛ aktualizovАny."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "зplnЩ protokol o aktualizaci bude po jejМm dokonХenМ v souboru /tmp/upgrade.log. Po restartu jej zkontrolujte, abyste se ujistili, ╬e konfiguraХnМ soubory byly sprАvnЛ aktualizovАny."
#~ msgid "rootpw command"
#~ msgstr "pЬМkaz rootpw"
@@ -3149,19 +2697,11 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "Installation Path"
#~ msgstr "InstalaХnМ cesta"
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "Chcete instalovat novЩ systИm nebo provИst aktualizaci systИmu na poХМtaХi, "
-#~ "na kterИm ji╬ je nainstalovАn systИm Red Hat Linux verze nejmИnЛ 2.0?"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "Chcete instalovat novЩ systИm nebo provИst aktualizaci systИmu na poХМtaХi, na kterИm ji╬ je nainstalovАn systИm Red Hat Linux verze nejmИnЛ 2.0?"
-#~ msgid ""
-#~ "What type of machine are you installing? For maximum flexibility, choose "
-#~ "\"Custom\"."
-#~ msgstr ""
-#~ "JakЩ typ poХМtaХe instalujete? Chcete-li maximАlnМ flexibilitu, zvolte "
-#~ "\"VlastnМ\"."
+#~ msgid "What type of machine are you installing? For maximum flexibility, choose \"Custom\"."
+#~ msgstr "JakЩ typ poХМtaХe instalujete? Chcete-li maximАlnМ flexibilitu, zvolte \"VlastnМ\"."
#~ msgid "Converting RPM database..."
#~ msgstr "Konvertuji RPM databАzi..."
@@ -3175,24 +2715,16 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
#~ msgstr ""
#~ "BЛhem instalaХnМho kroku \"%s\" do╧lo k chybЛ.\n"
#~ "\n"
-#~ "MЫ╬ete zkusit zopakovat tento krok, vrАtit se zpЛt k pЬedchozМmu kroku "
-#~ "instalace, nebo zobrazit nabМdku instalaХnМch krokЫ, kterА umo╬Рuje volnЛj╧М "
-#~ "pohyb v instalaХnМm programu. Pokud dostateХnЛ neznАte systИm Red Hat Linux, "
-#~ "u╬itМ nabМdky se nedoporuХuje. Jak chcete pokraХovat?"
+#~ "MЫ╬ete zkusit zopakovat tento krok, vrАtit se zpЛt k pЬedchozМmu kroku instalace, nebo zobrazit nabМdku instalaХnМch krokЫ, kterА umo╬Рuje volnЛj╧М pohyb v instalaХnМm programu. Pokud dostateХnЛ neznАte systИm Red Hat Linux, u╬itМ nabМdky se nedoporuХuje. Jak chcete pokraХovat?"
#~ msgid " Continue with install"
#~ msgstr " PokraХovat v instalaci"
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
#~ msgstr "KterЩ krok chcete provИst? Kroky oznaХenИ '*' ji╬ byly provedeny."
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
@@ -3210,11 +2742,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "Kernel"
#~ msgstr "JАdro"
-#~ msgid ""
-#~ "Please insert your boot disk in your first disk drive if it's not already "
-#~ "present."
-#~ msgstr ""
-#~ "Pokud nenМ zavАdЛcМ (boot) disk v prvnМ diskovИ jednotce, vlo╬te jej, prosМm."
+#~ msgid "Please insert your boot disk in your first disk drive if it's not already present."
+#~ msgstr "Pokud nenМ zavАdЛcМ (boot) disk v prvnМ diskovИ jednotce, vlo╬te jej, prosМm."
#~ msgid "Copying kernel from floppy..."
#~ msgstr "KopМrovАnМ jАdra z diskety..."
@@ -3264,12 +2793,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "No Swap Space"
#~ msgstr "NenМ definovАn odklАdacМ prostor"
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "KterИ oddМly chcete pou╬Мt pro odklАdacМ prostor? Tento zpЫsob pou╬itМ "
-#~ "oddМlu zniХМ v╧echny informace, kterИ na nЛm jsou."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "KterИ oddМly chcete pou╬Мt pro odklАdacМ prostor? Tento zpЫsob pou╬itМ oddМlu zniХМ v╧echny informace, kterИ na nЛm jsou."
#~ msgid "Active Swap Space"
#~ msgstr "AktivnМ odklАdacМ prostor"
@@ -3286,12 +2811,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "Ethernet Probe"
#~ msgstr "Detekce sМ╩ovИ karty"
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
-#~ msgstr ""
-#~ "NepodaЬilo se detekovat sМ╩ovou kartu. Po stisknutМ klАvesy <Enter> musМte "
-#~ "zadat jejМ konfiguraci ruХnЛ."
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
+#~ msgstr "NepodaЬilo se detekovat sМ╩ovou kartu. Po stisknutМ klАvesy <Enter> musМte zadat jejМ konfiguraci ruХnЛ."
#~ msgid "Static IP address"
#~ msgstr "StatickА IP adresa"
@@ -3308,12 +2829,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "kickstart network command is missing ip address"
#~ msgstr "kickstart: v pЬМkazu network chybМ IP adresa"
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
-#~ msgstr ""
-#~ "Jak se mА nastavit IP? Pokud vАm sprАvce sМtЛ pЬidЛlil IP adresu, vyberte "
-#~ "\"StatickА IP adresa\"."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
+#~ msgstr "Jak se mА nastavit IP? Pokud vАm sprАvce sМtЛ pЬidЛlil IP adresu, vyberte \"StatickА IP adresa\"."
#~ msgid "Sending BOOTP request..."
#~ msgstr "OdesМlАm BOOTP dotaz..."
@@ -3327,23 +2844,11 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "cannot open file: %s"
#~ msgstr "nelze otevЬМt soubor: %s"
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
-#~ msgstr ""
-#~ "JmИno poХМtaХe nelze zjistit automaticky. StisknЛte <Enter> a zadejte je "
-#~ "ruХnЛ."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
+#~ msgstr "JmИno poХМtaХe nelze zjistit automaticky. StisknЛte <Enter> a zadejte je ruХnЛ."
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
-#~ msgstr ""
-#~ "Zadejte nАzev va╧М domИny, jmИno poХМtaХe a IP adresy pЬМpadnЩch dal╧Мch DNS "
-#~ "serverЫ. JmИno poХМtaХe musМ bЩt plnЛ kvalifikovanИ, napЬ. "
-#~ "mojepc.mojeodd.mojefirma.cz. NemАte-li ╬АdnИ dal╧М DNS servery, ponechte "
-#~ "polo╬ky DNS serverЫ prАzdnИ."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
+#~ msgstr "Zadejte nАzev va╧М domИny, jmИno poХМtaХe a IP adresy pЬМpadnЩch dal╧Мch DNS serverЫ. JmИno poХМtaХe musМ bЩt plnЛ kvalifikovanИ, napЬ. mojepc.mojeodd.mojefirma.cz. NemАte-li ╬АdnИ dal╧М DNS servery, ponechte polo╬ky DNS serverЫ prАzdnИ."
#~ msgid "Host name:"
#~ msgstr "JmИno poХМtaХe:"
@@ -3366,12 +2871,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "LAN networking has already been configured. Do you want to:"
#~ msgstr "SМ╩ovИ slu╬by LAN ji╬ byly zkonfigurovАny. Chcete:"
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
-#~ msgstr ""
-#~ "Chcete na instalovanИm poХМtaХi zkonfigurovat sМ╩ovИ pЬipojenМ do LAN (ne "
-#~ "dialup)?"
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
+#~ msgstr "Chcete na instalovanИm poХМtaХi zkonfigurovat sМ╩ovИ pЬipojenМ do LAN (ne dialup)?"
#~ msgid "Cannot open components file: %s"
#~ msgstr "Nelze otevЬМt soubor komponent: %s"
@@ -3406,14 +2907,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "GNOME"
#~ msgstr "GNOME"
-#~ msgid ""
-#~ "Would you like to have the GNOME desktop installed? It provides an easy to "
-#~ "use interface, including a drag and drop capability and an integrated help "
-#~ "system."
-#~ msgstr ""
-#~ "PЬejete si nainstalovat GNOME desktop? GNOME poskytuje snadno ovladatelnИ "
-#~ "u╬ivatelskИ rozhranМ s podporou ovlАdАnМ stylem \"drag and drop\" a s "
-#~ "vestavЛnou nАpovЛdou."
+#~ msgid "Would you like to have the GNOME desktop installed? It provides an easy to use interface, including a drag and drop capability and an integrated help system."
+#~ msgstr "PЬejete si nainstalovat GNOME desktop? GNOME poskytuje snadno ovladatelnИ u╬ivatelskИ rozhranМ s podporou ovlАdАnМ stylem \"drag and drop\" a s vestavЛnou nАpovЛdou."
#~ msgid "Choose components to install:"
#~ msgstr "Vyberte souХАsti pro instalaci:"
@@ -3451,10 +2946,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "<F1> will give you information on this printer driver."
#~ msgstr "<F1> zobrazМ informace o tomto ovladaХi tiskАrny."
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
-#~ msgstr ""
-#~ "NynМ lze nastavit formАt papМru a rozli╧enМ tisku pro tuto tiskАrnu."
+#~ msgid "You may now configure the paper size and resolution for this printer."
+#~ msgstr "NynМ lze nastavit formАt papМru a rozli╧enМ tisku pro tuto tiskАrnu."
#~ msgid "Paper Size"
#~ msgstr "FormАt papМru"
@@ -3477,11 +2970,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "Configure Uniprint Driver"
#~ msgstr "Konfigurace uniprint ovladaХe"
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
-#~ msgstr ""
-#~ "Jako jakИ zaЬМzenМ je tiskАrna pЬipojena? (LPT1: je zaЬМzenМ /dev/lp0)"
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr "Jako jakИ zaЬМzenМ je tiskАrna pЬipojena? (LPT1: je zaЬМzenМ /dev/lp0)"
#~ msgid ""
#~ "Auto-detected ports:\n"
@@ -3511,13 +3001,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "Remote lpd Printer Options"
#~ msgstr "TiskovИ volby pro vzdАlenЩ lpd"
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "MА-li bЩt pou╬ita vzdАlenА tiskovА fronta lpd, musМte zadat jmИno tiskovИho "
-#~ "serveru a nАzev fronty na tomto serveru, kam se majМ Зlohy Ьadit."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "MА-li bЩt pou╬ita vzdАlenА tiskovА fronta lpd, musМte zadat jmИno tiskovИho serveru a nАzev fronty na tomto serveru, kam se majМ Зlohy Ьadit."
#~ msgid "Printer Server:"
#~ msgstr "TiskovЩ server:"
@@ -3528,16 +3013,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "NetWare Printer Options"
#~ msgstr "Volby tiskАrny pro NetWare"
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "Pro tisk na tiskАrnЛ dostupnИ pЬes Novell NetWare musМte zadat jmИno "
-#~ "novellovskИho print serveru (nemusМ se shodovat se jmИnem pou╬МvanЩm v "
-#~ "TCP/IP), jmИno tiskovИ fronty, kterou chcete pou╬Мt, a u╬ivatelskИ jmИno a "
-#~ "heslo."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "Pro tisk na tiskАrnЛ dostupnИ pЬes Novell NetWare musМte zadat jmИno novellovskИho print serveru (nemusМ se shodovat se jmИnem pou╬МvanЩm v TCP/IP), jmИno tiskovИ fronty, kterou chcete pou╬Мt, a u╬ivatelskИ jmИno a heslo."
#~ msgid "SMB server host:"
#~ msgstr "JmИno SMB serveru:"
@@ -3554,17 +3031,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "SMB/Windows 95/NT Printer Options"
#~ msgstr "Volby pro SMB/Windows 95/NT tiskАrnu"
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "Pro tisk na SMB tiskАrnЛ musМte zadat jmИno SMB serveru (nemusМ se v╬dy "
-#~ "shodovat s jeho TCP/IP jmИnem) pЬМpadnЛ IP adresu tiskovИho serveru, nАzev "
-#~ "sdМlenИ polo╬ky reprezentujМcМ zvolenou tiskАrnu, u╬ivatelskИ jmИno, heslo a "
-#~ "pracovnМ skupinu."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "Pro tisk na SMB tiskАrnЛ musМte zadat jmИno SMB serveru (nemusМ se v╬dy shodovat s jeho TCP/IP jmИnem) pЬМpadnЛ IP adresu tiskovИho serveru, nАzev sdМlenИ polo╬ky reprezentujМcМ zvolenou tiskАrnu, u╬ivatelskИ jmИno, heslo a pracovnМ skupinu."
#~ msgid "Spool directory:"
#~ msgstr "ьadicМ (spool) adresАЬ:"
@@ -3572,14 +3040,8 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "Standard Printer Options"
#~ msgstr "StandardnМ volby tiskАrny"
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Ka╬dА tiskovА fronta (do nМ╬ smЛЬujМ tiskovИ Зlohy) musМ mМt pЬiЬazen nАzev "
-#~ "(Хasto lp) a odpovМdajМcМ ЬadМcМ (spool) adresАЬ. JakЩ nАzev a adresАЬ se "
-#~ "majМ pro tuto frontu pou╬Мt?"
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Ka╬dА tiskovА fronta (do nМ╬ smЛЬujМ tiskovИ Зlohy) musМ mМt pЬiЬazen nАzev (Хasto lp) a odpovМdajМcМ ЬadМcМ (spool) adresАЬ. JakЩ nАzev a adresАЬ se majМ pro tuto frontu pou╬Мt?"
#~ msgid "Would you like to configure a printer?"
#~ msgstr "Chcete zkonfigurovat tiskАrnu?"
@@ -3699,9 +3161,7 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ "Chyba pЬi pЬenosu souboru %s:\n"
#~ "%s"
-#~ msgid ""
-#~ "An error occurred reading the partition table for the block device %s. The "
-#~ "error was:"
+#~ msgid "An error occurred reading the partition table for the block device %s. The error was:"
#~ msgstr "PЬi ХtenМ tabulky oddМlЫ blokovИho zaЬМzenМ %s do╧lo k tИto chybЛ:"
#~ msgid "LAN manager host:"
@@ -3734,6 +3194,5 @@ msgstr "NaХМtАm SCSI ovladaХ"
#~ msgid "I cannot log into machine: %s\n"
#~ msgstr "Nemohu se pЬihlАsit na stroj: %s\n"
-#~ msgid ""
-#~ "Would you like to install or configure the SILO bootloader on your system?"
+#~ msgid "Would you like to install or configure the SILO bootloader on your system?"
#~ msgstr "Chcete na tento poХМtaХ nainstalovat systИmovЩ zavadЛХ SILO?"
diff --git a/po/da.po b/po/da.po
index cc9ba241e..d9fb6aca1 100644
--- a/po/da.po
+++ b/po/da.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Red Hat 6.1 Install\n"
-"POT-Creation-Date: 1999-10-12 21:01-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-10-12 23:38+02:00\n"
"Last-Translator: Kenneth Christiansen <kenneth@ripen.dk>\n"
"Language-Team: Danish/Dansk <sslug-locate@sslug.dk>\n"
@@ -17,25 +17,7 @@ msgstr ""
msgid "Next"
msgstr "NФste"
-#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:530
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Tilbage"
@@ -79,43 +61,18 @@ msgid "Red Hat Linux Install Shell on %s"
msgstr "Red Hat Linux installerer"
#: ../installclass.py:248
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
-msgstr ""
-"Du er pЕ vej til at slette enhver eksisterende Linux installation pЕ dit "
-"system."
+msgid "You are about to erase any preexisting Linux installations on your system."
+msgstr "Du er pЕ vej til at slette enhver eksisterende Linux installation pЕ dit system."
#: ../installclass.py:288
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
-msgstr ""
-"Du er pЕ vej til at slette ALLE DATA pЕ din harddisk for at gЬre plads til "
-"din Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
+msgstr "Du er pЕ vej til at slette ALLE DATA pЕ din harddisk for at gЬre plads til din Linux installation."
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "Hvilket sprog Ьnsker du at benytte under installationen?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:270 ../loader/lang.c:530 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1601 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "Ok"
@@ -135,8 +92,7 @@ msgstr "/dev/ttyS2 (COM3 under DOS)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 under DOS)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Enhed"
@@ -146,26 +102,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "Hvilken enhed befinder din mus sig pЕ? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "Ok"
@@ -217,12 +154,7 @@ msgstr "Installation type"
msgid "What type of system would you like to install?"
msgstr "Hvilken systemtype Ьnsker du at installerer?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1601 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362
-#: ../todo.py:503 ../todo.py:1043 ../todo.py:1362
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Fejl"
@@ -243,34 +175,14 @@ msgid "Customize Packages to Upgrade"
msgstr "SpecificИr hvilke pakker som skal opgraderes"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Pakkerne du har installeret, og de andre pakker som er krФvet for at opfylde "
-"deres afhФngigheder, er blevet valgt til installering. ьnsker du at Фndre i "
-"sammensФtningen af pakker som vil blive opgraderet?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Pakkerne du har installeret, og de andre pakker som er krФvet for at opfylde deres afhФngigheder, er blevet valgt til installering. ьnsker du at Фndre i sammensФtningen af pakker som vil blive opgraderet?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Ja"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Nej"
@@ -282,22 +194,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Velkommen til Red Hat Linux!\n"
"\n"
-"Denne installations proces er beskrevet i detaljer i den officielle Red Hat "
-"Linux installation guide som er tilgФngelig fra Red Hat Software. Har du "
-"adgang til denne manual, bЬr du lФse installations afsnittet fЬr du "
-"fortsФtter.\n"
+"Denne installations proces er beskrevet i detaljer i den officielle Red Hat Linux installation guide som er tilgФngelig fra Red Hat Software. Har du adgang til denne manual, bЬr du lФse installations afsnittet fЬr du fortsФtter.\n"
"\n"
-"Har du kЬbt den officielle Red Hat Linux, husk da at registrerer dit kЬb "
-"gennem vores webside, http://www.redhat.com/."
+"Har du kЬbt den officielle Red Hat Linux, husk da at registrerer dit kЬb gennem vores webside, http://www.redhat.com/."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -336,34 +241,20 @@ msgid "Hostname Configuration"
msgstr "VФrtnavn konfiguration"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"VФrtnavnet er din computers navn. Hvis din computer er forbundet til et "
-"netvФrk, kan denne vФre givet af din netvФrks administrator."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "VФrtnavnet er din computers navn. Hvis din computer er forbundet til et netvФrk, kan denne vФre givet af din netvФrks administrator."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "VФrtnavn"
#: ../text.py:447
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"En bootdiskkette giver mulighed for at boote ind i dit Linux system uden "
-"afhФngighed af den normale bootindlФser. Dette er brugbart hvis du ikke "
-"Ьnsker at installere lilo pЕ dit system, hvis et andet operativsystem "
-"fjerner lilo, eller lilo ikke virker med din maskinnel konfiguration. En "
-"boot diskette kan desuden blive brugt sammen med Red Hat redningsdisketten, "
-"hvilket gЬr det meget lettere at komme sig efter system fejl.\n"
+"En bootdiskkette giver mulighed for at boote ind i dit Linux system uden afhФngighed af den normale bootindlФser. Dette er brugbart hvis du ikke Ьnsker at installere lilo pЕ dit system, hvis et andet operativsystem fjerner lilo, eller lilo ikke virker med din maskinnel konfiguration. En boot diskette kan desuden blive brugt sammen med Red Hat redningsdisketten, hvilket gЬr det meget lettere at komme sig efter system fejl.\n"
"\n"
"ьnsker du at oprette en boot diskette for dette system?"
@@ -407,12 +298,8 @@ msgid "Installation to begin"
msgstr "Installation"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"En komplet log af din installation vil befinde sig i /tmp/install.log efter "
-"du har genstartet dit system. Du kan gemme denne fil for senere reference."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "En komplet log af din installation vil befinde sig i /tmp/install.log efter du har genstartet dit system. Du kan gemme denne fil for senere reference."
#: ../text.py:606
msgid "Complete"
@@ -422,42 +309,27 @@ msgstr "FФrdig"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"Tillykke, installationen er fФrdig.\n"
"\n"
-"Fjern boot mediet og tryk pЕ retur/enter for at genstarte. For information "
-"om fejlretninger som er tilgФngelig for denne udgave at RH Linux, opsЬg "
-"errataen som er tilgФngelig pЕ http://www.redhat.com.\n"
+"Fjern boot mediet og tryk pЕ retur/enter for at genstarte. For information om fejlretninger som er tilgФngelig for denne udgave at RH Linux, opsЬg errataen som er tilgФngelig pЕ http://www.redhat.com.\n"
"\n"
-"Information om konfigurering af dit system er tilgФngelig i den officielle "
-"Red Hat brugerguide i afsnittende efter installationen."
+"Information om konfigurering af dit system er tilgФngelig i den officielle Red Hat brugerguide i afsnittende efter installationen."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"IndsФt en tom diskette i diskettedrevet. Alle data pЕ denne diskette vil "
-"blive slettet under oprettelsen af boot disketten."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "IndsФt en tom diskette i diskettedrevet. Alle data pЕ denne diskette vil blive slettet under oprettelsen af boot disketten."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Spring over"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"En fejl forudlykkede under oprettelsen af boot disketten. Tjek efter om der "
-"er en formateret diskette i det fЬrste diskettedrev."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "En fejl forudlykkede under oprettelsen af boot disketten. Tjek efter om der er en formateret diskette i det fЬrste diskettedrev."
#: ../text.py:697
msgid "Package Installation"
@@ -520,19 +392,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> imellem elementer | <Space> vФlger | <F12> nФste "
-"skФrm"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> imellem elementer | <Space> vФlger | <F12> nФste skФrm"
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Velkommen"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "Partition"
@@ -552,8 +419,7 @@ msgstr "Swap"
msgid "Filesystem Formatting"
msgstr "Filsystems formatering"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "LILO konfiguration"
@@ -617,8 +483,7 @@ msgstr "InstallИr system"
msgid "Installation Complete"
msgstr "Installationen er fФrdig"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
msgid "SILO Configuration"
msgstr "SILO konfiguration"
@@ -644,8 +509,7 @@ msgstr "Anulleret"
#: ../text.py:1040
msgid "I can't go to the previous step from here. You will have to try again."
-msgstr ""
-"Jeg kan ikke gЕ til forrige trin herfra. Du bliver nЬdt til at prЬve igen."
+msgstr "Jeg kan ikke gЕ til forrige trin herfra. Du bliver nЬdt til at prЬve igen."
#: ../todo.py:363
#, c-format
@@ -729,8 +593,7 @@ msgstr "Genbygger rpm database..."
#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
-msgstr ""
-"Genbygning af rpm databasen fejlede. Du er mЕske lЬbet tЬr for diskplads?"
+msgstr "Genbygning af rpm databasen fejlede. Du er mЕske lЬbet tЬr for diskplads?"
#: ../todo.py:1413
#, c-format
@@ -744,8 +607,7 @@ msgstr "Installerer pakker"
#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
@@ -769,35 +631,35 @@ msgstr ""
msgid "Performing post install configuration..."
msgstr ""
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "Video kort"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Video ram"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
msgid "X server"
msgstr "X tjener"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
msgid "Unable to detect video card"
msgstr "Kunne ikke bestemme videokort"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "SkФrm"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr "Plug and Play skФrm"
-#: ../xf86config.py:246
+#: ../xf86config.py:250
msgid "Horizontal frequency range"
msgstr ""
-#: ../xf86config.py:248
+#: ../xf86config.py:252
msgid "Vertical frequency range"
msgstr ""
@@ -825,8 +687,7 @@ msgstr "Adgangskode"
msgid "Password (confirm)"
msgstr "Adgangskode (bekrФft)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Fuld navn"
@@ -834,15 +695,11 @@ msgstr "Fuld navn"
msgid "Add"
msgstr "TilfЬj"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "RedigИr"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Slet"
@@ -958,8 +815,7 @@ msgstr "GNOME arbejdsstation"
msgid "KDE Workstation"
msgstr "KDE arbejdsstation"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Tjener"
@@ -1003,7 +859,7 @@ msgstr "Variant"
msgid "Test your selection here:"
msgstr "Test dit valg her:"
-#: ../iw/language.py:16 ../loader/lang.c:268
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Hvilket sprog skal benyttes under installationen"
@@ -1043,19 +899,15 @@ msgstr "Opret boot diskette"
msgid "Do not install LILO"
msgstr "InstallИr ikke LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Standard"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Partitionstype"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Boot etikette"
@@ -1063,43 +915,43 @@ msgstr "Boot etikette"
msgid "Emulate 3 Buttons"
msgstr "EmulИr 3 knapper"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "KonfigurИr ved brug af DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Aktiver ved boot"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "IP adresse"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Netmaske"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "NetvФrk"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Broadcast"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Port"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "PrimФr DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "SekundФr DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "Ternary DNS"
@@ -1184,14 +1036,8 @@ msgid "Low Memory"
msgstr "Lav hukommelse"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Da du ikke har maget hukommselse pЕ denne maskine, bliver vi nЬdt til "
-"Ьjeblikkelig at slЕ swapning til. For at gЬre dette bliver vi nЬdt at "
-"skrive den nye patitionstabel pЕ disken. Er dette ok?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Da du ikke har maget hukommselse pЕ denne maskine, bliver vi nЬdt til Ьjeblikkelig at slЕ swapning til. For at gЬre dette bliver vi nЬdt at skrive den nye patitionstabel pЕ disken. Er dette ok?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1202,9 +1048,7 @@ msgstr "Automatisk partitionering"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
#: ../iw/rootpartition.py:205
@@ -1280,9 +1124,7 @@ msgid "Test this configuration"
msgstr "Test denne konfiguration"
#: ../iw/xconfig.py:175
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
msgstr ""
#: ../iw/xconfig.py:183
@@ -1290,8 +1132,7 @@ msgid "Autoprobe results:"
msgstr ""
#: ../iw/xconfig.py:197
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
msgstr ""
#: ../iw/xconfig.py:234
@@ -1303,27 +1144,18 @@ msgid "Skip X Configuration"
msgstr "Spring X konfigurationen over"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
msgstr ""
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du installere bootindlФseren"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr ""
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "AnullИr"
@@ -1332,17 +1164,11 @@ msgid "Edit Boot Label"
msgstr "RedigИr boot etikette"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
msgstr ""
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
msgstr ""
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
@@ -1351,22 +1177,16 @@ msgstr "Disk opsФtning"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
msgstr ""
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "FФrdig"
@@ -1375,11 +1195,7 @@ msgid "Continue"
msgstr "FortsФt"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
msgstr ""
#: ../textw/partitioning.py:200
@@ -1399,10 +1215,7 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
msgstr ""
#: ../loader/urls.c:298 ../textw/userauth.py:23
@@ -1454,17 +1267,11 @@ msgid "This user id already exists. Choose another."
msgstr ""
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
msgstr ""
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
msgstr ""
#: ../textw/userauth.py:160
@@ -1503,8 +1310,7 @@ msgstr ""
msgid "Request server via broadcast"
msgstr ""
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Forkert monterings punkt"
@@ -1558,10 +1364,7 @@ msgid "Too Many Drives"
msgstr ""
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
msgstr ""
#: ../libfdisk/fsedit.c:705
@@ -1569,23 +1372,17 @@ msgid "No Drives Found"
msgstr ""
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
msgstr ""
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
msgstr ""
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
msgstr ""
#: ../libfdisk/fsedit.c:1025
@@ -1609,10 +1406,7 @@ msgid "BSD Disklabel"
msgstr ""
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
msgstr ""
#: ../libfdisk/fsedit.c:1093
@@ -1640,10 +1434,7 @@ msgstr "Slet partition"
msgid "Are you sure you want to delete this partition?"
msgstr ""
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr ""
@@ -1683,26 +1474,20 @@ msgstr ""
msgid "Allowable Drives:"
msgstr ""
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr ""
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
msgstr ""
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr ""
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
@@ -1710,22 +1495,16 @@ msgid "Size Error"
msgstr ""
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
msgstr ""
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr ""
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
@@ -1734,8 +1513,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
@@ -1744,9 +1522,7 @@ msgid "Close"
msgstr ""
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
msgstr ""
#. XXXXX - for now destroy the raid entry since it
@@ -1757,24 +1533,16 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
msgstr ""
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr ""
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1673
@@ -1798,9 +1566,7 @@ msgid "You have not selected a mount point. A mount point is required."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
+msgid "The mount point requested is already in use. Please select a valid mount point."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1901
@@ -1808,9 +1574,7 @@ msgid "Booting From RAID Warning"
msgstr ""
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1912
@@ -1827,9 +1591,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1933
@@ -1837,9 +1599,7 @@ msgid "Not Enough Partitions"
msgstr ""
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1942
@@ -1852,10 +1612,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
msgstr ""
#: ../libfdisk/gnomefsedit.c:2034
@@ -1920,9 +1677,7 @@ msgid "Unallocated Partitions Exist..."
msgstr ""
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
msgstr ""
#: ../libfdisk/gnomefsedit.c:3157
@@ -1974,9 +1729,7 @@ msgid "No Root Partition"
msgstr ""
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
msgstr ""
#: ../libfdisk/newtfsedit.c:1445
@@ -1989,8 +1742,7 @@ msgstr ""
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
@@ -2028,18 +1780,14 @@ msgid "Miscellaneous"
msgstr ""
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
msgstr ""
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr ""
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr ""
@@ -2052,15 +1800,11 @@ msgid "Failed to mount floppy disk."
msgstr ""
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
msgstr ""
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
msgstr ""
#: ../loader/devices.c:211
@@ -2090,15 +1834,15 @@ msgstr ""
msgid "Error on line %d of kickstart file %s."
msgstr ""
-#: ../loader/lang.c:268
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr ""
-#: ../loader/lang.c:528
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr ""
-#: ../loader/lang.c:529
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr ""
@@ -2114,126 +1858,116 @@ msgstr ""
msgid "Hard drive"
msgstr ""
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr ""
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr ""
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr ""
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr ""
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr ""
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
msgstr ""
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr ""
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr ""
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr ""
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr ""
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
msgstr ""
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
msgstr ""
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr ""
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr ""
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr ""
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
msgstr ""
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr ""
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr ""
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr ""
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr ""
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr ""
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr ""
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr ""
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr ""
-#: ../loader/loader.c:1602
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr ""
-#: ../loader/loader.c:1769
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr ""
-#: ../loader/loader.c:1769
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr ""
@@ -2259,9 +1993,7 @@ msgid ""
msgstr ""
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
msgstr ""
#: ../loader/net.c:270
@@ -2326,9 +2058,7 @@ msgid "Network device"
msgstr "NetvФrks enhed"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: ../loader/net.c:699
@@ -2409,22 +2139,12 @@ msgid "You must enter a directory."
msgstr "Du skal indtaste en mappe"
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Hvis du benytte ikke anonym ftp, indtast da konto navnet og adgangskoden du "
-"Ьnsker at bruge nedenfor. Hvis du benytter en ftp proxy indtast de venligst "
-"navnet pЕ denne."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Hvis du benytte ikke anonym ftp, indtast da konto navnet og adgangskoden du Ьnsker at bruge nedenfor. Hvis du benytter en ftp proxy indtast de venligst navnet pЕ denne."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"Hvis du benytter en http proxy tjener (server), indtast da venligst navnet "
-"pЕ denne."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "Hvis du benytter en http proxy tjener (server), indtast da venligst navnet pЕ denne."
#: ../loader/urls.c:295
msgid "Account name:"
diff --git a/po/de.po b/po/de.po
index b05ccc447..12afbe43c 100644
--- a/po/de.po
+++ b/po/de.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Installer 6.1\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-10-04 16:40-0500\n"
"Last-Translator: Bernhard Rosenkraenzer <bero@redhat.de>\n"
"Language-Team: German <de@li.org>\n"
@@ -13,91 +13,66 @@ msgstr ""
"Content-Type: text/plain; charset=ISO8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "Weiter"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "ZurЭck"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Hilfe anzeigen"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Hilfe ausblenden"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "Fertigstellen"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "Online-Hilfe"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "Sprachauswahl"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Red Hat Linux Installationsprogramm"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Red Hat Linux Installationsprogramm"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Red Hat Linux Installationsprogramm"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Red Hat Linux Installationsprogramm"
+
+#: ../installclass.py:248
msgid "You are about to erase any preexisting Linux installations on your system."
msgstr "Sie lЖschen hiermit eine schon existierende Linux-Installation."
#: ../installclass.py:288
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
-msgstr ""
-"Sie lЖschen ALLE DATEN auf Ihrer Festplatte, um Platz fЭr Ihre "
-"Linux-Installation zu schaffen."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
+msgstr "Sie lЖschen ALLE DATEN auf Ihrer Festplatte, um Platz fЭr Ihre Linux-Installation zu schaffen."
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "Welche Sprache mЖchten Sie wДhrend des Installationsvorgangs verwenden?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "OK"
@@ -117,8 +92,7 @@ msgstr "/dev/ttyS2 (COM3 unter DOS)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 unter DOS)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "GerДt"
@@ -128,26 +102,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "An welchem Port ist Ihre Maus angeschlossen? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "OK"
@@ -199,19 +154,13 @@ msgstr "Installationstyp"
msgid "What type of system would you like to install?"
msgstr "Welchen Systemtyp mЖchten Sie installieren?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Fehler"
#: ../text.py:232
msgid "You don't have any Linux partitions. You can't upgrade this system!"
-msgstr "Es sind keine LINUX-Partitionen vorhanden. Sie kЖnnen dieses System nicht "
-"aktualisieren!"
+msgstr "Es sind keine LINUX-Partitionen vorhanden. Sie kЖnnen dieses System nicht aktualisieren!"
#: ../text.py:245
msgid "System to Upgrade"
@@ -226,35 +175,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Zu aktualisierende Pakete konfigurieren"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Die bereits installierten Pakete sowie sДmtliche Pakete, die zur ErfЭllung "
-"von AbhДngigkeiten benЖtigt werden, wurden fЭr die Installation ausgewДhlt. "
-"MЖchten Sie die Pakete, die Sie fЭr die Aktualisierung ausgewДhlt haben, "
-"bearbeiten?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Die bereits installierten Pakete sowie sДmtliche Pakete, die zur ErfЭllung von AbhДngigkeiten benЖtigt werden, wurden fЭr die Installation ausgewДhlt. MЖchten Sie die Pakete, die Sie fЭr die Aktualisierung ausgewДhlt haben, bearbeiten?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Ja"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Nein"
@@ -266,23 +194,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Willkommen bei Red Hat Linux!\n"
"\n"
-"Dieser Installationsvorgang wird im offiziellen Red Hat Linux "
-"Installationshandbuch, das bei Red Hat Software erhДltlich ist, detailliert "
-"beschrieben. Falls Ihnen dieses Handbuch zur VerfЭgung steht, sollten Sie "
-"sich den Abschnitt Эber die Installation durchlesen, bevor Sie fortfahren.\n"
+"Dieser Installationsvorgang wird im offiziellen Red Hat Linux Installationshandbuch, das bei Red Hat Software erhДltlich ist, detailliert beschrieben. Falls Ihnen dieses Handbuch zur VerfЭgung steht, sollten Sie sich den Abschnitt Эber die Installation durchlesen, bevor Sie fortfahren.\n"
"\n"
-"Wenn Sie die offizielle Red Hat Linux Distribution gekauft haben, sollten "
-"Sie Ihre Distribution auf unserer Website (http://www.redhat.com/) "
-"registrieren."
+"Wenn Sie die offizielle Red Hat Linux Distribution gekauft haben, sollten Sie Ihre Distribution auf unserer Website (http://www.redhat.com/) registrieren."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -321,37 +241,20 @@ msgid "Hostname Configuration"
msgstr "Konfiguration des Rechnernamens"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"Beim Rechnernamen handelt es sich um die Bezeichnung Ihres Computers. Wenn "
-"Ihr Computer mit einem Netzwerk verbunden ist, wurde Ihnen der Rechnernamen "
-"mЖglicherweise von Ihrem Netzwerk-Administrator zugewiesen."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "Beim Rechnernamen handelt es sich um die Bezeichnung Ihres Computers. Wenn Ihr Computer mit einem Netzwerk verbunden ist, wurde Ihnen der Rechnernamen mЖglicherweise von Ihrem Netzwerk-Administrator zugewiesen."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Rechnername"
#: ../text.py:447
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"Mit einer individuellen Bootdiskette kЖnnen Sie Ihr LINUX-System starten, "
-"ohne auf den normalen Bootloader angewiesen zu sein. Dies ist nЭtzlich, wenn "
-"Sie LILO nicht auf Ihrem System installieren mЖchten, wenn LILO durch ein "
-"anderes Betriebssystem entfernt wird oder wenn LILO mit Ihrer "
-"Hardware-Konfiguration nicht korrekt funktioniert. Eine individuelle "
-"Bootdiskette kann auch in Verbindung mit der Red Hat Rettungsdiskette "
-"verwendet werden, wodurch die Wiederherstellung des Systems nach "
-"schwerwiegenden Fehlern vereinfacht wird.\n"
+"Mit einer individuellen Bootdiskette kЖnnen Sie Ihr LINUX-System starten, ohne auf den normalen Bootloader angewiesen zu sein. Dies ist nЭtzlich, wenn Sie LILO nicht auf Ihrem System installieren mЖchten, wenn LILO durch ein anderes Betriebssystem entfernt wird oder wenn LILO mit Ihrer Hardware-Konfiguration nicht korrekt funktioniert. Eine individuelle Bootdiskette kann auch in Verbindung mit der Red Hat Rettungsdiskette verwendet werden, wodurch die Wiederherstellung des Systems nach schwerwiegenden Fehlern vereinfacht wird.\n"
"\n"
"MЖchten Sie eine Bootdiskette fЭr Ihr System erstellen?"
@@ -398,13 +301,8 @@ msgid "Installation to begin"
msgstr "Installation beginnt"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Nach dem Neustart des Systems befindet sich im Verzeichnis /tmp/install.log "
-"ein vollstДndiges Protokoll der Installation. Sie sollten diese Datei fЭr "
-"Referenzzwecke dauerhaft speichern."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Nach dem Neustart des Systems befindet sich im Verzeichnis /tmp/install.log ein vollstДndiges Protokoll der Installation. Sie sollten diese Datei fЭr Referenzzwecke dauerhaft speichern."
#: ../text.py:606
msgid "Complete"
@@ -414,46 +312,27 @@ msgstr "Fertig"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"Herzlichen GlЭckwunsch zur erfolgreichen Installation.\n"
"\n"
-"Entnehmen Sie den Boot-DatentrДger, und drЭcken Sie die Eingabetaste, umdas "
-"System neu zu starten. Informationen Эber Bugfixes fЭr diese Version von Red "
-"Hat Linux erhalten Sie unter Errata auf unserer Homepage "
-"(http://www.redhat.com).\n"
+"Entnehmen Sie den Boot-DatentrДger, und drЭcken Sie die Eingabetaste, umdas System neu zu starten. Informationen Эber Bugfixes fЭr diese Version von Red Hat Linux erhalten Sie unter Errata auf unserer Homepage (http://www.redhat.com).\n"
"\n"
-"Wenn Sie sich Эber die weitere Konfiguration Ihres Systems informieren "
-"mЖchten, sollten Sie sich die Kapitel zu Systemkonfiguration und "
-"-administration im offiziellen Red Hat Linux Benutzerhandbuch durchlesen."
+"Wenn Sie sich Эber die weitere Konfiguration Ihres Systems informieren mЖchten, sollten Sie sich die Kapitel zu Systemkonfiguration und -administration im offiziellen Red Hat Linux Benutzerhandbuch durchlesen."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Legen Sie eine leere Diskette in Ihr erstes Diskettenlaufwerk ein. "
-"Beim Erstellen der Bootdiskette werden alle Daten auf dieser Diskette "
-"gelЖscht."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Legen Sie eine leere Diskette in Ihr erstes Diskettenlaufwerk ein. Beim Erstellen der Bootdiskette werden alle Daten auf dieser Diskette gelЖscht."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "эberspringen"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"Fehler beim Erstellen der Bootdiskette. Stellen Sie sicher, daъ sich "
-"imersten Diskettenlaufwerk Ihres Computers eine formatierte Diskette "
-"befindet."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "Fehler beim Erstellen der Bootdiskette. Stellen Sie sicher, daъ sich imersten Diskettenlaufwerk Ihres Computers eine formatierte Diskette befindet."
#: ../text.py:697
msgid "Package Installation"
@@ -516,19 +395,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt+Tab> Zwischen Elementen wechseln | <Leer> AuswДhlen | <F12> "
-"Weiter "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt+Tab> Zwischen Elementen wechseln | <Leer> AuswДhlen | <F12> Weiter "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Willkommen"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "Partition"
@@ -548,8 +422,7 @@ msgstr "Swap"
msgid "Filesystem Formatting"
msgstr "Dateisystem wird formatiert"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "LILO konfigurieren"
@@ -613,8 +486,7 @@ msgstr "System installieren"
msgid "Installation Complete"
msgstr "Installation abgeschlossen"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
msgid "SILO Configuration"
msgstr "SILO konfigurieren"
@@ -642,156 +514,157 @@ msgstr "Abgebrochen"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "Der letzte Schritt kann nicht aufgerufen werden. Sie mЭssen es wieder versuchen."
-#: ../todo.py:359
+#: ../todo.py:363
#, c-format
msgid "Error unmounting %s: %s"
msgstr "Fehler beim Unmounten von %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, c-format
msgid "Error mounting %s: %s"
msgstr "Fehler beim Mounten von %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr "Erstelle"
-#: ../todo.py:522
+#: ../todo.py:526
msgid "Creating RAID devices..."
msgstr "Erstelle RAID-GerДte..."
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
msgid "Formatting"
msgstr "Dateisystem wird formatiert"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, c-format
msgid "Formatting %s filesystem..."
msgstr "Formatiere %s-Dateisystem"
-#: ../todo.py:710
+#: ../todo.py:714
msgid "Creating boot disk..."
msgstr "Bootdiskette erstellen"
-#: ../todo.py:841
+#: ../todo.py:845
msgid "Reading"
msgstr "Lese"
-#: ../todo.py:842
+#: ../todo.py:846
msgid "Reading package information..."
msgstr "Paket-Informationen werden gelesen..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "kein Vorschlag"
-#: ../todo.py:1012
+#: ../todo.py:1016
msgid "Searching"
msgstr "Suche"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr "Suche nach Red Hat Linux-Installationen..."
-#: ../todo.py:1040
+#: ../todo.py:1044
#, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Fehler beim Mounten des ext2-Dateisystems auf %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
msgid "Finding"
msgstr "Suche"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "Suche zu aktualisierende Pakete..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr "Bearbeite"
-#: ../todo.py:1249
+#: ../todo.py:1253
msgid "Preparing to install..."
msgstr "Installation vorbereiten..."
-#: ../todo.py:1343
+#: ../todo.py:1357
msgid "Rebuilding"
msgstr "Neu-Erstellung"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr "RPM-Datenbank wird neu aufgebaut..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr "RPM-Datenbank konnte nicht neu aufgebaut werden. Festplatte voll?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr "Upgrade von %s.\n"
-#: ../todo.py:1401
+#: ../todo.py:1415
#, c-format
msgid "Installing %s.\n"
msgstr "%s wird installiert\n"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
+"\n"
+msgstr ""
+"Sie haben nicht genug Festplattenspeicher, um die ausgewДhlten Pakete zu installieren. Sie brauchen mehr Platz auf den folgenden Dateisystemen:\n"
"\n"
-msgstr "Sie haben nicht genug Festplattenspeicher, um die ausgewДhlten Pakete zu installieren. Sie brauchen mehr Platz auf den folgenden Dateisystemen:\n\n"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Mount Point"
msgstr "Mount-Point:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr "Platz gebraucht"
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "Festplattenplatz"
-#: ../todo.py:1462
+#: ../todo.py:1476
msgid "Post Install"
msgstr "Nach Installation"
-#: ../todo.py:1463
+#: ../todo.py:1477
msgid "Performing post install configuration..."
msgstr "Nach-Installations Konfiguration..."
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "Grafikkarte"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Grafikspeicher"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
msgid "X server"
msgstr "X-Server"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
msgid "Unable to detect video card"
msgstr "Grafikkarte konnte nicht erkannt werden"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Bildschirm"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr "Plug-and-Play-Bildschirm"
-#: ../xf86config.py:246
+#: ../xf86config.py:250
msgid "Horizontal frequency range"
msgstr "Horizontaler Frequenzbereich"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
msgid "Vertical frequency range"
msgstr "Vertikaler Frequenzbereich"
@@ -819,8 +692,7 @@ msgstr "Paъwort"
msgid "Password (confirm)"
msgstr "Paъwort (bestДtigen)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "VollstДndiger Name"
@@ -828,15 +700,11 @@ msgstr "VollstДndiger Name"
msgid "Add"
msgstr "HinzufЭgen"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Bearbeiten"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "LЖschen"
@@ -886,8 +754,7 @@ msgstr "Installation beginnt"
#: ../iw/confirm.py:27
msgid "Click next to begin installation of Red Hat Linux."
-msgstr ""
-"Klicken Sie auf Weiter, um mit der Installation von Red Hat Linux zu beginnen"
+msgstr "Klicken Sie auf Weiter, um mit der Installation von Red Hat Linux zu beginnen"
#: ../iw/congrats.py:11
msgid "Congratulations"
@@ -953,8 +820,7 @@ msgstr "GNOME Workstation"
msgid "KDE Workstation"
msgstr "KDE Workstation"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Server"
@@ -998,10 +864,9 @@ msgstr "Besondere Optionen"
msgid "Test your selection here:"
msgstr "Testen Sie hier Ihre Auswahl:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
-msgstr ""
-"Welche Sprache soll wДhrend des Installationsvorgangs verwendet werden?"
+msgstr "Welche Sprache soll wДhrend des Installationsvorgangs verwendet werden?"
#: ../iw/lilo.py:18
msgid "Lilo Configuration"
@@ -1039,19 +904,15 @@ msgstr "Bootdiskette erstellen"
msgid "Do not install LILO"
msgstr "LILO nicht installieren"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Standard"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Partitionstyp"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Bootkennung"
@@ -1059,43 +920,43 @@ msgstr "Bootkennung"
msgid "Emulate 3 Buttons"
msgstr "Drei Tasten emulieren"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Unter Verwendung von DHCP konfigurieren"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Beim Starten aktivieren"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "IP-Adresse"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Netzmaske"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Netzwerk"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Broadcast"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Gateway"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "Erster DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "Zweiter DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "Dritter DNS"
@@ -1180,14 +1041,8 @@ msgid "Low Memory"
msgstr "Wenig Speicher"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Da Ihr Computer Эber wenig Hauptspeicher verfЭgt, mЭssen Sie den "
-"Swap-Bereich sofort aktivieren. Hierzu muъ jetzt die neue Partitionstabelle "
-"auf die Festplatte geschrieben werden. Sind Sie damit einverstanden?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Da Ihr Computer Эber wenig Hauptspeicher verfЭgt, mЭssen Sie den Swap-Bereich sofort aktivieren. Hierzu muъ jetzt die neue Partitionstabelle auf die Festplatte geschrieben werden. Sind Sie damit einverstanden?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1198,22 +1053,17 @@ msgstr "Automatisch partitionieren"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"Wenn Sie keine automatische Partitionierung vornehmen lassen mЖchten, kЖnnen "
-"Sie Ihre Festplatte auch bei dieser Installationsmethode manuell "
-"partitionieren lassen. Alternativ kЖnnen Sie auch zurЭckgehen und die "
-"benutzerdefinierte Installation auswДhlen."
+"Wenn Sie keine automatische Partitionierung vornehmen lassen mЖchten, kЖnnen Sie Ihre Festplatte auch bei dieser Installationsmethode manuell partitionieren lassen. Alternativ kЖnnen Sie auch zurЭckgehen und die benutzerdefinierte Installation auswДhlen."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Daten lЖschen"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "Manuell partitionieren"
@@ -1269,7 +1119,7 @@ msgstr "Vertikaler Frequenzbereich"
msgid "Test failed"
msgstr "Fehler bei Test"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "X-Konfiguration individuell festlegen"
@@ -1277,64 +1127,43 @@ msgstr "X-Konfiguration individuell festlegen"
msgid "Bits per Pixel"
msgstr "Bits pro Pixel"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Diese Konfiguration testen"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"In den meisten FДllen wird Ihre Grafik-Hardware automatisch erkannt und mit "
-"den optimalen Einstellungen konfiguriert."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "In den meisten FДllen wird Ihre Grafik-Hardware automatisch erkannt und mit den optimalen Einstellungen konfiguriert."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "Ergebnisse der automatischen Erkennung:"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"Ihr Bildschirm konnte nicht automatisch erkannt werden. Bitte wДhlen Sie in "
-"folgender Liste aus:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "Ihr Bildschirm konnte nicht automatisch erkannt werden. Bitte wДhlen Sie in folgender Liste aus:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Grafische Anmeldung verwenden"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "X-Konfiguration Эberspringen"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"Bei einigen Systemen ist es notwendig, spezielle Optionen beim Booten an den "
-"Kernel zu Эbergeben, damit das System einwandfrei funktioniert. Falls "
-"Bootoptionen an den Kernel weitergeleitet werden mЭssen, geben Sie diese "
-"jetzt ein. Wenn dies nicht erforderlich ist oder Sie nicht sicher sind, "
-"geben Sie nichts ein."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "Bei einigen Systemen ist es notwendig, spezielle Optionen beim Booten an den Kernel zu Эbergeben, damit das System einwandfrei funktioniert. Falls Bootoptionen an den Kernel weitergeleitet werden mЭssen, geben Sie diese jetzt ein. Wenn dies nicht erforderlich ist oder Sie nicht sicher sind, geben Sie nichts ein."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Wo soll der Bootloader installiert werden?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "LЖschen"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Abbrechen"
@@ -1343,24 +1172,12 @@ msgid "Edit Boot Label"
msgstr "Bootkennung bearbeiten"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Der von Red Hat verwendete Boot-Manager kann auch andere "
-"Betriebssystemestarten. Geben Sie an, von welchen Partitionen Sie booten "
-"mЖchten undwelche Kennungen Sie diesen zuweisen mЖchten."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Der von Red Hat verwendete Boot-Manager kann auch andere Betriebssystemestarten. Geben Sie an, von welchen Partitionen Sie booten mЖchten undwelche Kennungen Sie diesen zuweisen mЖchten."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"FЭr einige der zur Installation ausgewДhlten Pakete sind Pakete "
-"erforderlich, die Sie nicht ausgewДhlt haben. Wenn Sie OK wДhlen, werden "
-"diese zusДtzlich benЖtigten Pakete installiert."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "FЭr einige der zur Installation ausgewДhlten Pakete sind Pakete erforderlich, die Sie nicht ausgewДhlt haben. Wenn Sie OK wДhlen, werden diese zusДtzlich benЖtigten Pakete installiert."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1368,32 +1185,19 @@ msgstr "Festplatte einrichten"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid ist ein Tool zum Partitionieren und Einrichten von "
-"Mount-Points.Es ist leistungsfДhiger und leichter zu bedienen als fdisk, das "
-"herkЖmmliche Linux-Tool zur Festplattenpartitionierung. Es gibt jedoch "
-"einige FДlle, bei denen die Verwendung von fdisk von Vorteil ist.\n"
+"Disk Druid ist ein Tool zum Partitionieren und Einrichten von Mount-Points.Es ist leistungsfДhiger und leichter zu bedienen als fdisk, das herkЖmmliche Linux-Tool zur Festplattenpartitionierung. Es gibt jedoch einige FДlle, bei denen die Verwendung von fdisk von Vorteil ist.\n"
"\n"
"Welches Tool mЖchten Sie verwenden?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"FЭr die Installation von Red Hat Linux mЭssen Sie mindestens eine Partition "
-"von 150 MB fЭr Linux reservieren. Es empfiehlt sich, daъ Sie diese Partition "
-"auf einerder ersten zwei Festplatten Ihres Systems anlegen, damit Sie Linux "
-"mit LILO booten kЖnnen."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "FЭr die Installation von Red Hat Linux mЭssen Sie mindestens eine Partition von 150 MB fЭr Linux reservieren. Es empfiehlt sich, daъ Sie diese Partition auf einerder ersten zwei Festplatten Ihres Systems anlegen, damit Sie Linux mit LILO booten kЖnnen."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Fertig"
@@ -1402,16 +1206,8 @@ msgid "Continue"
msgstr "Weiter"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Welche Partitionen sollen formatiert werden? Es wird dringend empfohlen, "
-"alle Systempartitionen einschlieъlich /, /usr und /var zu formatieren. Eine "
-"Formatierung von /home und /usr/local ist nicht unbedingt erforderlich, wenn "
-"diese bereits bei einer frЭheren Installation konfiguriert wurden."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Welche Partitionen sollen formatiert werden? Es wird dringend empfohlen, alle Systempartitionen einschlieъlich /, /usr und /var zu formatieren. Eine Formatierung von /home und /usr/local ist nicht unbedingt erforderlich, wenn diese bereits bei einer frЭheren Installation konfiguriert wurden."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1430,15 +1226,8 @@ msgid "Set default PROM boot device"
msgstr "PROM-BootgerДt Voreinstellung setzen"
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"WДhlen Sie ein Root-Paъwort aus. Sie mЭssen es zweimal eingeben, um "
-"sicherzustellen, daъ Sie bei der Eingabe keinen Fehler gemacht haben. "
-"Beachten Sie, daъ das Root-Paъwort einen zentralen Bestandteil der "
-"Systemsicherheit darstellt!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "WДhlen Sie ein Root-Paъwort aus. Sie mЭssen es zweimal eingeben, um sicherzustellen, daъ Sie bei der Eingabe keinen Fehler gemacht haben. Beachten Sie, daъ das Root-Paъwort einen zentralen Bestandteil der Systemsicherheit darstellt!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1462,8 +1251,7 @@ msgstr "Abweichung beim Paъwort"
#: ../textw/userauth.py:46 ../textw/userauth.py:100
msgid "The passwords you entered were different. Please try again."
-msgstr ""
-"Sie haben unterschiedliche PaъwЖrter eingegeben. Wiederholen Sie den Vorgang."
+msgstr "Sie haben unterschiedliche PaъwЖrter eingegeben. Wiederholen Sie den Vorgang."
#: ../textw/userauth.py:71
msgid "Edit User"
@@ -1487,29 +1275,15 @@ msgstr "Benutzer existiert"
#: ../textw/userauth.py:110
msgid "This user id already exists. Choose another."
-msgstr ""
-"Diese Benutzer-ID existiert bereits. WДhlen Sie eine andere Benutzer-ID aus."
+msgstr "Diese Benutzer-ID existiert bereits. WДhlen Sie eine andere Benutzer-ID aus."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"FЭr das Arbeiten mit Ihrem System empfiehlt sich meist die Verwendung eines "
-"normalen Benutzerkontos. Wenn Sie sich nicht als Root angemeldet haben, "
-"verringert sich die Gefahr einer BeschДdigung der Systemkonfiguration."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "FЭr das Arbeiten mit Ihrem System empfiehlt sich meist die Verwendung eines normalen Benutzerkontos. Wenn Sie sich nicht als Root angemeldet haben, verringert sich die Gefahr einer BeschДdigung der Systemkonfiguration."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"Welchen Typ von Benutzerkonto mЖchten Sie fЭr das System einrichten? Sie "
-"sollten fЭr das normale Arbeiten mit dem System Эber mindestens ein "
-"Benutzerkonto ohne Root-Privilegien verfЭgen. Bei Systemen fЭr mehrere "
-"Benutzer kЖnnen Sie eine beliebige Anzahl von Konten einrichten."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "Welchen Typ von Benutzerkonto mЖchten Sie fЭr das System einrichten? Sie sollten fЭr das normale Arbeiten mit dem System Эber mindestens ein Benutzerkonto ohne Root-Privilegien verfЭgen. Bei Systemen fЭr mehrere Benutzer kЖnnen Sie eine beliebige Anzahl von Konten einrichten."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1547,8 +1321,7 @@ msgstr "oder:"
msgid "Request server via broadcast"
msgstr "Server Эber Broadcast anfordern"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "UnzulДssiger Mount-Point"
@@ -1617,47 +1390,26 @@ msgid "Too Many Drives"
msgstr "Zu viele Laufwerke"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Sie verfЭgen Эber mehr Laufwerke, als von diesem Programm unterstЭtzt "
-"werden. Verwenden Sie das Programm fdisk, um die Laufwerke einzurichten. "
-"Bitte benachrichtigen Sie Red Hat Software, daъ Ihnen diese Meldung "
-"angezeigt wurde."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Sie verfЭgen Эber mehr Laufwerke, als von diesem Programm unterstЭtzt werden. Verwenden Sie das Programm fdisk, um die Laufwerke einzurichten. Bitte benachrichtigen Sie Red Hat Software, daъ Ihnen diese Meldung angezeigt wurde."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Keine Laufwerke gefunden"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Ein Fehler ist aufgetreten - es wurden keine gЭltigen GerДte gefunden, um "
-"darauf neue Dateisysteme zu erstellen. Bitte ЭberprЭfen Sie Ihre "
-"Hardware-Konfiguration auf mЖgliche Fehler und falsche Einstellungen."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Ein Fehler ist aufgetreten - es wurden keine gЭltigen GerДte gefunden, um darauf neue Dateisysteme zu erstellen. Bitte ЭberprЭfen Sie Ihre Hardware-Konfiguration auf mЖgliche Fehler und falsche Einstellungen."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Fehler beim Lesen der Partitionstabelle fЭr das BlockgerДt %s. Folgender "
-"Fehler ist aufgetreten:"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Fehler beim Lesen der Partitionstabelle fЭr das BlockgerДt %s. Folgender Fehler ist aufgetreten:"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Die Partitionstabelle auf GerДt %s ist beschДdigt. Um neue Partitionen zu "
-"erstellen, muъ die Tabelle initialisiert werden, was den Verlust SдMTLICHER "
-"DATEN auf diesem Laufwerk bewirkt."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Die Partitionstabelle auf GerДt %s ist beschДdigt. Um neue Partitionen zu erstellen, muъ die Tabelle initialisiert werden, was den Verlust SдMTLICHER DATEN auf diesem Laufwerk bewirkt."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1680,15 +1432,8 @@ msgid "BSD Disklabel"
msgstr "BSD-Kennung"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"Eine Festplatte mit einer BSD-Kennung wurde gefunden. Die Red Hat "
-"Installation unterstЭtzt lediglich BSD-Kennungen im Schreibschutzmodus. Bei "
-"Computern mit BSD-Kennungen mЭssen Sie deshalb eine benutzerdefinierte "
-"Installation durchfЭhren und fdisk (statt Disk Druid) verwenden."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "Eine Festplatte mit einer BSD-Kennung wurde gefunden. Die Red Hat Installation unterstЭtzt lediglich BSD-Kennungen im Schreibschutzmodus. Bei Computern mit BSD-Kennungen mЭssen Sie deshalb eine benutzerdefinierte Installation durchfЭhren und fdisk (statt Disk Druid) verwenden."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1715,10 +1460,7 @@ msgstr "Partition lЖschen"
msgid "Are you sure you want to delete this partition?"
msgstr "Sind Sie sicher, daъ Sie diese Partition lЖschen mЖchten?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Partition bearbeiten"
@@ -1758,58 +1500,38 @@ msgstr "Partitionstyp:"
msgid "Allowable Drives:"
msgstr "VerfЭgbare Laufwerke:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Kein Mount-Point"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Sie haben fЭr diese Partition keinen Mount-Point ausgewДhlt. Sind Sie "
-"sicher, daъ Sie keinen angeben mЖchten?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Sie haben fЭr diese Partition keinen Mount-Point ausgewДhlt. Sind Sie sicher, daъ Sie keinen angeben mЖchten?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Mount-Point-Fehler"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Der angeforderte Mount-Point ist entweder ein unzulДssiger Pfad oder wird "
-"gerade verwendet. WДhlen Sie einen gЭltigen Mount-Point aus."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Der angeforderte Mount-Point ist entweder ein unzulДssiger Pfad oder wird gerade verwendet. WДhlen Sie einen gЭltigen Mount-Point aus."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "Fehlerhafte GrЖъe"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"Die angeforderte GrЖъe ist unzulДssig. Stellen Sie sicher, daъ der Wert "
-"grЖъer als Null (0) ist und im Dezimalformat angegeben wird."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "Die angeforderte GrЖъe ist unzulДssig. Stellen Sie sicher, daъ der Wert grЖъer als Null (0) ist und im Dezimalformat angegeben wird."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Fehlerhafte GrЖъe der Swap-Partition"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Die von Ihnen erstellte Swap-Partition ist zu groъ. Die maximale GrЖъe einer "
-"Swap-Partition betrДgt %ld Megabyte."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Die von Ihnen erstellte Swap-Partition ist zu groъ. Die maximale GrЖъe einer Swap-Partition betrДgt %ld Megabyte."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1817,12 +1539,10 @@ msgstr "Keine RAID-Laufwerkszuordnung"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
-"Sie haben eine RAID-Partition konfiguriert, ohne die Partition einem "
-"einzelnen Laufwerk zuzuordnen.\n"
+"Sie haben eine RAID-Partition konfiguriert, ohne die Partition einem einzelnen Laufwerk zuzuordnen.\n"
"Sind Sie sicher, daъ Sie dies mЖchten?"
#: ../libfdisk/gnomefsedit.c:1114
@@ -1830,13 +1550,8 @@ msgid "Close"
msgstr "Schlieъen"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Sie haben eine RAID-Partition konfiguriert, ohne die Partition einem "
-"einzelnen Laufwerk zuzuordnen. Bitte wДhlen Sie ein Laufwerk fЭr die "
-"Zuordnung dieser Partition aus."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Sie haben eine RAID-Partition konfiguriert, ohne die Partition einem einzelnen Laufwerk zuzuordnen. Bitte wДhlen Sie ein Laufwerk fЭr die Zuordnung dieser Partition aus."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1846,32 +1561,17 @@ msgstr "RAID-Eintrag unvollstДndig"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"Das RAID-GerДt /dev/%s enthДlt nun Partitionen, die nicht zugewiesen wurden. "
-"Das RAID-GerДt /dev/%s wird jetzt wieder in die einzelnen Partitionen "
-"aufgeteilt. Bitte erstellen Sie das RAID-GerДt erneut mit zugewiesenen "
-"Partitionen."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "Das RAID-GerДt /dev/%s enthДlt nun Partitionen, die nicht zugewiesen wurden. Das RAID-GerДt /dev/%s wird jetzt wieder in die einzelnen Partitionen aufgeteilt. Bitte erstellen Sie das RAID-GerДt erneut mit zugewiesenen Partitionen."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Nicht zugewiesene Partitionen"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Die Liste der angeforderten Partitionen enthДlt eine oder mehrere nicht "
-"zugewiesene Partitionen. Die nicht zugewiesenen Partitionen werden unten "
-"zusammen mit dem Grund fЭr die nicht erfolgte Zuweisung angezeigt."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Die Liste der angeforderten Partitionen enthДlt eine oder mehrere nicht zugewiesene Partitionen. Die nicht zugewiesenen Partitionen werden unten zusammen mit dem Grund fЭr die nicht erfolgte Zuweisung angezeigt."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1891,28 +1591,19 @@ msgstr "Partitionen fЭr RAID-Array:"
#: ../libfdisk/gnomefsedit.c:1880
msgid "You have not selected a mount point. A mount point is required."
-msgstr ""
-"Sie haben keinen Mount-Point ausgewДhlt. Dieser ist jedoch erforderlich."
+msgstr "Sie haben keinen Mount-Point ausgewДhlt. Dieser ist jedoch erforderlich."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Der angeforderte Mount-Point wird bereits verwendet. WДhlen Sie einen "
-"gЭltigen Mount-Point aus."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Der angeforderte Mount-Point wird bereits verwendet. WДhlen Sie einen gЭltigen Mount-Point aus."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "Booten von RAID-GerДt - Warnung"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Sie haben dieses RAID-GerДt als Bootpartition gemountet. Bitte stellen Sie "
-"sicher, daъ alle einzelnen Partitionen bootfДhig sind."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Sie haben dieses RAID-GerДt als Bootpartition gemountet. Bitte stellen Sie sicher, daъ alle einzelnen Partitionen bootfДhig sind."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1928,24 +1619,16 @@ msgstr "Verwendetes RAID-GerДt"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"Das RAID-GerДt \"/dev/%s\" wurde bereits als RAID-GerДt konfiguriert. Bitte "
-"wДhlen Sie ein anderes GerДt aus."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "Das RAID-GerДt \"/dev/%s\" wurde bereits als RAID-GerДt konfiguriert. Bitte wДhlen Sie ein anderes GerДt aus."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Nicht genЭgend Partitionen"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
-msgstr ""
-"Sie haben nicht genЭgend Partitionen fЭr den von Ihnen gewДhlten RAID-Typ "
-"ausgewДhlt."
+msgid "You have not configured enough partitions for the RAID type you have selected."
+msgstr "Sie haben nicht genЭgend Partitionen fЭr den von Ihnen gewДhlten RAID-Typ ausgewДhlt."
#: ../libfdisk/gnomefsedit.c:1942
msgid "Illegal /boot RAID Type"
@@ -1957,14 +1640,8 @@ msgstr "Bootpartition (/boot) sind nur auf RAID-1 zulДssig."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"Die Partition %s in der Gruppe der Partitionen fЭr dieses RAID-GerДt wurde "
-"bereits zuvor erstellt. FЭr den Mount-Point wurde /boot gewДhlt. Sind Sie "
-"sicher, daъ das Booten von dieser Partition mЖglich ist?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "Die Partition %s in der Gruppe der Partitionen fЭr dieses RAID-GerДt wurde bereits zuvor erstellt. FЭr den Mount-Point wurde /boot gewДhlt. Sind Sie sicher, daъ das Booten von dieser Partition mЖglich ist?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2028,12 +1705,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "Nicht zugewiesene Partitionen vorhanden..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Sie mЭssen eine Root-Partition (/) einer nativen Linux-Partition (ext2) oder "
-"einer RAID-Partition zuweisen, um mit der Installation fortfahren zu kЖnnen."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Sie mЭssen eine Root-Partition (/) einer nativen Linux-Partition (ext2) oder einer RAID-Partition zuweisen, um mit der Installation fortfahren zu kЖnnen."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2057,7 +1730,9 @@ msgstr "_ZurЭcksetzen"
#: ../libfdisk/gnomefsedit.c:3244
msgid "_Make RAID Device"
-msgstr "_RAID-GerДt\nerstellen"
+msgstr ""
+"_RAID-GerДt\n"
+"erstellen"
#: ../libfdisk/gnomefsedit.c:3253
msgid "Auto Partition"
@@ -2084,12 +1759,8 @@ msgid "No Root Partition"
msgstr "Keine Root-Partition"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Sie mЭssen einer Linux-Partition (ext2) eine Root-Partition (/) zuweisen, um "
-"mit der Installation fortfahren zu kЖnnen."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Sie mЭssen einer Linux-Partition (ext2) eine Root-Partition (/) zuweisen, um mit der Installation fortfahren zu kЖnnen."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2097,19 +1768,15 @@ msgstr "Keine Swap-Partition"
#: ../libfdisk/newtfsedit.c:1446
msgid "You must assign a swap partition for the install to proceed."
-msgstr ""
-"Sie mЭssen eine Swap-Partition festlegen, um mit der Installation fortfahren "
-"zu kЖnnen."
+msgstr "Sie mЭssen eine Swap-Partition festlegen, um mit der Installation fortfahren zu kЖnnen."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"Es sind noch nicht zugewiesene Partitionen vorhanden. Wenn Sie das Programm "
-"jetzt beenden, werden diese Partitionen auf der Festplatte nicht erstellt.\n"
+"Es sind noch nicht zugewiesene Partitionen vorhanden. Wenn Sie das Programm jetzt beenden, werden diese Partitionen auf der Festplatte nicht erstellt.\n"
"\n"
"Sind Sie sicher, daъ Sie das Programm beenden mЖchten?"
@@ -2146,50 +1813,32 @@ msgid "Miscellaneous"
msgstr "Verschiedenes"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Dieses Modul kann durch Eingabe bestimmter Parameter beeinfluъt werden. Wenn "
-"Sie nicht wissen, welche Parameter Sie angeben sollen, kЖnnen Sie diesen "
-"Bildschirm einfach durch Klicken auf OK Эberspringen."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Dieses Modul kann durch Eingabe bestimmter Parameter beeinfluъt werden. Wenn Sie nicht wissen, welche Parameter Sie angeben sollen, kЖnnen Sie diesen Bildschirm einfach durch Klicken auf OK Эberspringen."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "Modulparameter"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "GerДte"
#: ../loader/devices.c:169
msgid "Insert your driver disk and press \"OK\" to continue."
-msgstr ""
-"Legen Sie Ihre Treiberdiskette ein, und klicken Sie auf \"OK\", um "
-"fortzufahren."
+msgstr "Legen Sie Ihre Treiberdiskette ein, und klicken Sie auf \"OK\", um fortzufahren."
#: ../loader/devices.c:179
msgid "Failed to mount floppy disk."
msgstr "Diskette konnte nicht gemountet werden."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"Bei der von Ihnen eingelegten Diskette handelt es sich nicht um eine "
-"zulДssige Treiberdiskette fЭr Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "Bei der von Ihnen eingelegten Diskette handelt es sich nicht um eine zulДssige Treiberdiskette fЭr Red Hat Linux."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Welcher Treiber soll verwendet werden? Wenn der benЖtigte Treiber nicht in "
-"dieser Liste enthalten ist oder Sie Эber eine separate Treiberdiskette "
-"verfЭgen, drЭcken Sie F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Welcher Treiber soll verwendet werden? Wenn der benЖtigte Treiber nicht in dieser Liste enthalten ist oder Sie Эber eine separate Treiberdiskette verfЭgen, drЭcken Sie F2."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2218,15 +1867,15 @@ msgstr "Fehler beim Lesen des Inhalts der Kickstart-Datei %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Fehler in Zeile %d der Kickstart-Datei %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "WДhlen Sie eine Sprache aus"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Tastaturtyp"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "эber welchen Tastaturtyp verfЭgen Sie?"
@@ -2242,142 +1891,116 @@ msgstr "NFS-Image"
msgid "Hard drive"
msgstr "Festplatte"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Willkommen bei Red Hat Linux"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt+Tab> Zwischen Elementen wechseln | <Leer> AuswДhlen | <F12> "
-"Weiter"
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt+Tab> Zwischen Elementen wechseln | <Leer> AuswДhlen | <F12> Weiter"
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Welchen GerДtetyp mЖchten Sie hinzufЭgen?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "Die folgenden GerДte wurden in Ihrem System gefunden:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "GerДt hinzufЭgen"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"FЭr Ihr System wurden keine speziellen GerДtetreiber geladen. Sollen diese "
-"jetzt geladen werden?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "FЭr Ihr System wurden keine speziellen GerДtetreiber geladen. Sollen diese jetzt geladen werden?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "Laden..."
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "Zweite Ramdisk wird geladen..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Fehler beim Laden der Ramdisk"
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Festplatten"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"In Ihrem System sind keine Festplatten vorhanden. MЖchten Sie jetzt weitere "
-"GerДte konfigurieren?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "In Ihrem System sind keine Festplatten vorhanden. MЖchten Sie jetzt weitere GerДte konfigurieren?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"In welcher Partition und in welchem Verzeichnis dieser Partition sind die "
-"RedHat/RPMS- und RedHat/Basis-Verzeichnisse enthalten? Wenn die von Ihnen "
-"verwendete Festplatte hier nicht aufgelistet wird, drЭcken Sie F2, um "
-"weitere GerДte zu konfigurieren."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "In welcher Partition und in welchem Verzeichnis dieser Partition sind die RedHat/RPMS- und RedHat/Basis-Verzeichnisse enthalten? Wenn die von Ihnen verwendete Festplatte hier nicht aufgelistet wird, drЭcken Sie F2, um weitere GerДte zu konfigurieren."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Verzeichnis, in dem sich Red Hat befindet:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Partition auswДhlen"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
-msgstr ""
-"Auf dem GerДt %s befindet sich kein Red Hat Installationsverzeichnisbaum."
+msgstr "Auf dem GerДt %s befindet sich kein Red Hat Installationsverzeichnisbaum."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"In Ihren CD-ROM-Laufwerken konnte keine Red Hat Linux CD-ROM gefunden "
-"werden. Bitte legen Sie die Red Hat CD ein, und klicken Sie auf \"OK\", um "
-"den Vorgang zu wiederholen."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "In Ihren CD-ROM-Laufwerken konnte keine Red Hat Linux CD-ROM gefunden werden. Bitte legen Sie die Red Hat CD ein, und klicken Sie auf \"OK\", um den Vorgang zu wiederholen."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
-msgstr ""
-"Dieses Verzeichnis enthДlt keinen Red Hat Installationsverzeichnisbaum."
+msgstr "Dieses Verzeichnis enthДlt keinen Red Hat Installationsverzeichnisbaum."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Dieses Verzeichnis konnte nicht vom Server gemountet werden"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Zweite Ramdisk konnte nicht abgerufen werden"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "Rettungsmethode"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "Installationsmethode"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Auf welchem DatentrДgertyp ist die Rettungsdiskette enthalten?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
-msgstr ""
-"Auf welchem DatentrДgertyp sind die zu installierenden Pakete enthalten?"
+msgstr "Auf welchem DatentrДgertyp sind die zu installierenden Pakete enthalten?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "ks.cfg konnte nicht auf der Bootdiskette gefunden werden."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC-Karte"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "PC-Karten werden initialisiert..."
@@ -2408,13 +2031,8 @@ msgstr ""
" Red Hat Linux fЭr Ihre Systemarchitektur"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Geben Sie die IP-Konfiguration fЭr diesen Rechner ein. Jeder Eintrag muъ als "
-"IP-Adresse mit durch Punkt getrennte Dezimalzahlen eingegeben werden (z.B. "
-"1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Geben Sie die IP-Konfiguration fЭr diesen Rechner ein. Jeder Eintrag muъ als IP-Adresse mit durch Punkt getrennte Dezimalzahlen eingegeben werden (z.B. 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2430,8 +2048,7 @@ msgstr "Fehlende Informationen"
#: ../loader/net.c:330
msgid "You must enter both a valid IP address and a netmask."
-msgstr ""
-"Sie mЭssen sowohl eine gЭltige IP-Adresse als auch eine Netzmaske eingeben."
+msgstr "Sie mЭssen sowohl eine gЭltige IP-Adresse als auch eine Netzmaske eingeben."
#: ../loader/net.c:338 ../loader/net.c:571
msgid "Dynamic IP"
@@ -2479,12 +2096,8 @@ msgid "Network device"
msgstr "NetzwerkgerДt"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt+Tab> Zwischen Elementen wechseln | <Leer> AuswДhlen | <F12> "
-"Weiter "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt+Tab> Zwischen Elementen wechseln | <Leer> AuswДhlen | <F12> Weiter "
#: ../loader/net.c:699
#, c-format
@@ -2564,22 +2177,12 @@ msgid "You must enter a directory."
msgstr "Sie mЭssen ein Verzeichnis eingeben."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Geben Sie bei Verwendung eines nicht anonymen FTP-Servers nachfolgend den "
-"Kontonamen und das gewЭnschte Paъwort ein. Bei einem FTP-Proxy-Server geben "
-"Sie den Namen des FTP-Proxy-Servers ein."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Geben Sie bei Verwendung eines nicht anonymen FTP-Servers nachfolgend den Kontonamen und das gewЭnschte Paъwort ein. Bei einem FTP-Proxy-Server geben Sie den Namen des FTP-Proxy-Servers ein."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"Geben Sie bei Verwendung eines HTTP-Proxy-Servers den Namen des "
-"HTTP-Proxy-Servers ein."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "Geben Sie bei Verwendung eines HTTP-Proxy-Servers den Namen des HTTP-Proxy-Servers ein."
#: ../loader/urls.c:295
msgid "Account name:"
@@ -2605,32 +2208,14 @@ msgstr "HTTP-Proxy-Port:"
msgid "Loading SCSI driver"
msgstr "SCSI-Treiber wird geladen"
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "Eine Festplatte mit einer beschДdigten Sun-Kennung wurde beim Lesen des "
-#~ "BlockgerДtes %s gefunden. Erstellen Sie mit fdisk eine neue Kennung, und "
-#~ "schreiben Sie sie in dieses GerДt."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "Eine Festplatte mit einer beschДdigten Sun-Kennung wurde beim Lesen des BlockgerДtes %s gefunden. Erstellen Sie mit fdisk eine neue Kennung, und schreiben Sie sie in dieses GerДt."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "BeschДdigte Sun-Kennung"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Sie mЭssen eine Boot-Partition (/boot) einer nativen Linux-Partition (ext2) "
-#~ "oder einer RAID-1-Partition zuweisen, um mit der Installation fortfahren zu "
-#~ "kЖnnen."
-
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Da Sie die Root-Partition (/) einem RAID-GerДt zugewiesen haben, mЭssen Sie "
-#~ "auch eine Boot-Partition (/boot) einer nativen Linux-Partition (ext2) oder "
-#~ "einer RAID-1-Partition zuweisen, um mit der Installation fortfahren zu "
-#~ "kЖnnen."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Sie mЭssen eine Boot-Partition (/boot) einer nativen Linux-Partition (ext2) oder einer RAID-1-Partition zuweisen, um mit der Installation fortfahren zu kЖnnen."
+
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Da Sie die Root-Partition (/) einem RAID-GerДt zugewiesen haben, mЭssen Sie auch eine Boot-Partition (/boot) einer nativen Linux-Partition (ext2) oder einer RAID-1-Partition zuweisen, um mit der Installation fortfahren zu kЖnnen."
diff --git a/po/es.po b/po/es.po
index debff1b23..070811561 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rhinstall 6.0\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-09-07 18:31-06:00\n"
"Last-Translator: JosИ Neif Jury Fabre <pepe@pepe.net.mx>\n"
"Language-Team: Spanish <es@li.org>\n"
@@ -9,91 +9,67 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr ""
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "AtrАs"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Muestra ayuda"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Esconde la ayuda"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "Fin"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "Ayuda en linea"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "SelecciСn del idioma"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Instalador de Red Hat Linux"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Instalador de Red Hat Linux"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Instalador de Red Hat Linux"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Instalador de Red Hat Linux"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr "EstАs a punto de perder informaciСn, ©estАs seguro de continuar?"
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "©Que idioma quieres usar durante la instalaciСn?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr ""
@@ -113,8 +89,7 @@ msgstr "/dev/ttyS2 (COM3 en DOS)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 en DOS)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Dispositivo"
@@ -124,26 +99,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "©en dСnde estА conectado tu mouse?"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr ""
@@ -195,12 +151,7 @@ msgstr "Tipo de instalaciСn"
msgid "What type of system would you like to install?"
msgstr "©que tipo de sistema quieres instalar?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr ""
@@ -221,34 +172,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Escoger los paquetes a actualizar"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Los paquetes que tienes instalados y cualquier otro que sea necesario para "
-"satisfacer las nuevas dependencias han sido marcados para us actualizaciСn "
-"©quieres agregar algo?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Los paquetes que tienes instalados y cualquier otro que sea necesario para satisfacer las nuevas dependencias han sido marcados para us actualizaciСn ©quieres agregar algo?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr ""
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr ""
@@ -260,21 +191,15 @@ msgstr ""
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Bienvenido a Linux de Red Hat\n"
"\n"
-"El proceso de InstalaciСn estА descrito en detalle en la GuМa oficial de "
-"instalaciСn de Red Hat, disponible en Red Hat Software, si tienes acceso a "
-"Иsta guМa deberАs de revisarla antes de continuar.\n"
+"El proceso de InstalaciСn estА descrito en detalle en la GuМa oficial de instalaciСn de Red Hat, disponible en Red Hat Software, si tienes acceso a Иsta guМa deberАs de revisarla antes de continuar.\n"
"\n"
-"Si compraste la versiСn oficial de Red Hat Linux, asegЗrate de tegistrar tu "
-"compra en el sitio de web http://www.redhat.com"
+"Si compraste la versiСn oficial de Red Hat Linux, asegЗrate de tegistrar tu compra en el sitio de web http://www.redhat.com"
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -313,35 +238,21 @@ msgid "Hostname Configuration"
msgstr "Nombre del sistema"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"El nombre del sistema es cСmo se llamarА tu computadora en la red, Иste "
-"nombre puede que sea asignado por el administrador de la red."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "El nombre del sistema es cСmo se llamarА tu computadora en la red, Иste nombre puede que sea asignado por el administrador de la red."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Nombre"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"El disco de arranque que se puede generar desde aquМ sirve como un respaldo "
-"ya que contiene las figuras de las particiones y el montaje de los discos "
-"segЗn tus indicaciones previas, es bueno que lo hagas y si el sistema "
-"arranca sin problemas lo puedes borrar, si lo quieres conservar, lo puedes "
-"usar junto con un segundo disco de rescate para recobrar el sistema de "
-"alguna falla severa\n"
+"El disco de arranque que se puede generar desde aquМ sirve como un respaldo ya que contiene las figuras de las particiones y el montaje de los discos segЗn tus indicaciones previas, es bueno que lo hagas y si el sistema arranca sin problemas lo puedes borrar, si lo quieres conservar, lo puedes usar junto con un segundo disco de rescate para recobrar el sistema de alguna falla severa\n"
"\n"
"©quieres hacer un disco de arranque?"
@@ -388,9 +299,7 @@ msgid "Installation to begin"
msgstr "Inicio de la InstalaciСn"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
msgstr "Una bitАcora del proceso de instalaciСn se grabarА en /tmp/install.log"
#: ../text.py:606
@@ -401,44 +310,29 @@ msgstr "Completo"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"║Felicidades, la instalaciСn estА completa!\n"
"\n"
-"Oprime [Enter] para reiniciar el sistema y no te olvides de quitar el disco "
-"con el que arrancaste la instalaciСn.\n"
+"Oprime [Enter] para reiniciar el sistema y no te olvides de quitar el disco con el que arrancaste la instalaciСn.\n"
"\n"
-"Para informaciСn sobre las actualizaciones a esta versiСn de Linux, consulta "
-"la pАgina de erratas en http://www.redhat.com.\n"
+"Para informaciСn sobre las actualizaciones a esta versiСn de Linux, consulta la pАgina de erratas en http://www.redhat.com.\n"
"\n"
-"La informaciСn de cСmo configurar tu sistema estА en el capМtulo de "
-"post-install de la gМa oficial del usuario de Red Hat."
+"La informaciСn de cСmo configurar tu sistema estА en el capМtulo de post-install de la gМa oficial del usuario de Red Hat."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Inserta un disquette en blanco en el drive de la computadora, toda la "
-"informaciСn contenida en el disco serА eliminada."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Inserta un disquette en blanco en el drive de la computadora, toda la informaciСn contenida en el disco serА eliminada."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Salta"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"OcurriСn un error al hacer el bootdisk, porfavor verifica que tengas un "
-"disco formateado en el primer drive de disquettes."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "OcurriСn un error al hacer el bootdisk, porfavor verifica que tengas un disco formateado en el primer drive de disquettes."
#: ../text.py:697
msgid "Package Installation"
@@ -503,17 +397,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr ""
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Bienvenido"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "ParticiСn"
@@ -536,8 +427,7 @@ msgstr "<Swap>"
msgid "Filesystem Formatting"
msgstr "Formateo del disco"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "ConfiguraciСn del LILO"
@@ -602,8 +492,7 @@ msgstr "Instalacion del sistema"
msgid "Installation Complete"
msgstr "InstalaciСn completa"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "ConfiguraciСn del LILO"
@@ -633,169 +522,168 @@ msgstr "Cancelar"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr ""
-#: ../todo.py:359
+#: ../todo.py:363
#, c-format
msgid "Error unmounting %s: %s"
msgstr ""
-#: ../todo.py:500
+#: ../todo.py:504
#, c-format
msgid "Error mounting %s: %s"
msgstr ""
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "©borro el RAID?"
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Formateo del disco"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, c-format
msgid "Formatting %s filesystem..."
msgstr ""
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Crear disco de arranque"
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Faltante"
-#: ../todo.py:842
+#: ../todo.py:846
msgid "Reading package information..."
msgstr ""
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr ""
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "Advertencia"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr ""
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Faltante"
-#: ../todo.py:1060
+#: ../todo.py:1064
#, fuzzy
msgid "Finding packages to upgrade..."
msgstr "Modifica los paquetes que se actualizarАn"
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr ""
-#: ../todo.py:1249
+#: ../todo.py:1253
msgid "Preparing to install..."
msgstr ""
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Faltante"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr ""
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr ""
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Instalando paquetes"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Punto de montaje:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr ""
-#: ../todo.py:1439
+#: ../todo.py:1453
#, fuzzy
msgid "Disk Space"
msgstr "ConfiguraciСn de la red"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Instalar"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "ConfiguraciСn del LILO"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr ""
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr ""
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Servidor"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
msgid "Unable to detect video card"
msgstr ""
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr ""
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
msgid "Horizontal frequency range"
msgstr ""
-#: ../xf86config.py:248
+#: ../xf86config.py:252
msgid "Vertical frequency range"
msgstr ""
@@ -823,8 +711,7 @@ msgstr "Clave"
msgid "Password (confirm)"
msgstr "Clave (otra vez)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Nombre completo"
@@ -832,15 +719,11 @@ msgstr "Nombre completo"
msgid "Add"
msgstr "Agrega"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Edita"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Borra"
@@ -958,8 +841,7 @@ msgstr "EstaciСn GNOME"
msgid "KDE Workstation"
msgstr "EstaciСn KDE"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Servidor"
@@ -1005,7 +887,7 @@ msgstr "Variante"
msgid "Test your selection here:"
msgstr "SelecciСn del teclado"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "©que idioma quieres usar durante el proceso de instalaciСn?"
@@ -1045,19 +927,15 @@ msgstr "Crear disco de arranque"
msgid "Do not install LILO"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Predeterminado"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Tipo de particiСn"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Etiqueta"
@@ -1066,46 +944,46 @@ msgstr "Etiqueta"
msgid "Emulate 3 Buttons"
msgstr "©simular 3 botones?"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Configura usando DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Activala al arranque"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "DirecciСn IP"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "MАscara de red"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Red"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
#, fuzzy
msgid "Gateway"
msgstr "Rureador:"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
#, fuzzy
msgid "Primary DNS"
msgstr "DNS primario:"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
#, fuzzy
msgid "Secondary DNS"
msgstr "Segundo DNS:"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
#, fuzzy
msgid "Ternary DNS"
msgstr "Tercer DNS:"
@@ -1195,10 +1073,7 @@ msgid "Low Memory"
msgstr ""
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
msgstr ""
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
@@ -1211,17 +1086,15 @@ msgstr "Auto ParticiСn"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
#, fuzzy
msgid "Remove data"
msgstr "Borra todo"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
#, fuzzy
msgid "Manually partition"
msgstr "ParticiСn automАtica"
@@ -1283,7 +1156,7 @@ msgstr ""
msgid "Test failed"
msgstr ""
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
#, fuzzy
msgid "Customize X Configuration"
msgstr "ConfiguraciСn del mouse"
@@ -1292,44 +1165,36 @@ msgstr "ConfiguraciСn del mouse"
msgid "Bits per Pixel"
msgstr ""
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
#, fuzzy
msgid "Test this configuration"
msgstr "ConfiguraciСn del LILO"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
msgstr ""
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr ""
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
msgstr ""
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr ""
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
#, fuzzy
msgid "Skip X Configuration"
msgstr "ConfiguraciСn del LILO"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
msgstr ""
-"Algunos sistemas necesitan transferir opciones especiales al Kernel o nЗcleo "
-"en el momento del arranque para que el sistema funcione correctamente.\n"
+"Algunos sistemas necesitan transferir opciones especiales al Kernel o nЗcleo en el momento del arranque para que el sistema funcione correctamente.\n"
"Por ejemplo mem=128M o ether=10,0x300,eth0 ether=3,0x220,eth1\n"
"Si no estАs seguro, deja este espacio en blanco."
@@ -1337,16 +1202,11 @@ msgstr ""
msgid "Where do you want to install the bootloader?"
msgstr "©En dСnde instalamos el cargador de Linux?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Borrar"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Cancelar"
@@ -1355,24 +1215,12 @@ msgid "Edit Boot Label"
msgstr "Editar"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Lilo se puede usar para ejecutar desde el inicio otros sistemas operativos "
-"solamente tienes que indicar quИ otras particiones quieres poder ejecutar y "
-"quИ nombre le ponemos a cada una de ellas."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Lilo se puede usar para ejecutar desde el inicio otros sistemas operativos solamente tienes que indicar quИ otras particiones quieres poder ejecutar y quИ nombre le ponemos a cada una de ellas."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Algunos paquetes que seleccionaste necesitan de otros para satisfacer sus "
-"dependencias, si pones OK, todos los paquetes necesarios serАn "
-"automАticamente seleccionados."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Algunos paquetes que seleccionaste necesitan de otros para satisfacer sus dependencias, si pones OK, todos los paquetes necesarios serАn automАticamente seleccionados."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
#, fuzzy
@@ -1381,22 +1229,16 @@ msgstr "ConfiguraciСn de la red"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
msgstr ""
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr ""
@@ -1405,16 +1247,8 @@ msgid "Continue"
msgstr ""
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"©Que particiones quieres formatear?, te rcomiendo formatear todas las "
-"particiones del sistema como son /, /usr y /var, no hay necesidad de "
-"formatear /home o /usr/local si ya fueron formateadas en una instalaciСn "
-"anterior."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "©Que particiones quieres formatear?, te rcomiendo formatear todas las particiones del sistema como son /, /usr y /var, no hay necesidad de formatear /home o /usr/local si ya fueron formateadas en una instalaciСn anterior."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1434,14 +1268,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Escoge una contraseЯa para el administrador del sistema, debes de teclearla "
-"2 veces para asegurarte de no cometer un error, recuerda que Иsta clave es "
-"una parte crМtica de la seguridad del sistema."
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Escoge una contraseЯa para el administrador del sistema, debes de teclearla 2 veces para asegurarte de no cometer un error, recuerda que Иsta clave es una parte crМtica de la seguridad del sistema."
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1492,24 +1320,12 @@ msgid "This user id already exists. Choose another."
msgstr "El usuario que quieres yА existe, escoge otro nombre."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"Debes de usar una cuenta de usuario normal para todas tus actividades en el "
-"sistema, no es bueno usar todo el tiempo el sistema como root, porque "
-"arriesgas la seguridad del sistema o a cometer algЗn error grave."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "Debes de usar una cuenta de usuario normal para todas tus actividades en el sistema, no es bueno usar todo el tiempo el sistema como root, porque arriesgas la seguridad del sistema o a cometer algЗn error grave."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"Crea porfavor una cuenta de usuario, de forma que no trabajes en el sistema "
-"como root, si estАs instalando un sistema multi usuario, puedes crear mas de "
-"una sola cuenta de una vez."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "Crea porfavor una cuenta de usuario, de forma que no trabajes en el sistema como root, si estАs instalando un sistema multi usuario, puedes crear mas de una sola cuenta de una vez."
#: ../textw/userauth.py:160
#, fuzzy
@@ -1549,8 +1365,7 @@ msgstr "o usar:"
msgid "Request server via broadcast"
msgstr "Buscar el servidor por broadcast"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Mal punto de montaje"
@@ -1619,42 +1434,26 @@ msgid "Too Many Drives"
msgstr "Demasiados discos duros"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Si te aparece este mensaje, significa que rebasaste el mАximo de discos que "
-"el disk druid soporta, entonces usa el fdisk y notifica a Red Hat que viste "
-"este mensaje."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Si te aparece este mensaje, significa que rebasaste el mАximo de discos que el disk druid soporta, entonces usa el fdisk y notifica a Red Hat que viste este mensaje."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "No encuentro discos duros"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
msgstr "No pude detectar ningЗn disco duro, checa tu hardware."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Ha ocurrido un error en la lectura de la tabla de particiСn para el "
-"dispositivo %s. El error fue:"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Ha ocurrido un error en la lectura de la tabla de particiСn para el dispositivo %s. El error fue:"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"La tabla de particiСn en el dispositivo %s estА daЯada. para crear nuevas "
-"particiones de tendrА que eliminar y se perderА toda la informaciСn."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "La tabla de particiСn en el dispositivo %s estА daЯada. para crear nuevas particiones de tendrА que eliminar y se perderА toda la informaciСn."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1677,10 +1476,7 @@ msgid "BSD Disklabel"
msgstr ""
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
msgstr ""
#: ../libfdisk/fsedit.c:1093
@@ -1708,10 +1504,7 @@ msgstr "Borra particiСn"
msgid "Are you sure you want to delete this partition?"
msgstr "©estАs seguro de borrar la particiСn?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Edita la particiСn"
@@ -1751,58 +1544,38 @@ msgstr "Tipo de particiСn:"
msgid "Allowable Drives:"
msgstr "Discos permisibles:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "No hay punto de montaje"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"No has seleccionado un punto de montaje para Иsta particiСn, ©estАs seguro "
-"de esto?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "No has seleccionado un punto de montaje para Иsta particiСn, ©estАs seguro de esto?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Error en el punto de montaje"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"El punto de montaje es ilegal o estА en uso, porfavor escoge otro que sea "
-"vАlido."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "El punto de montaje es ilegal o estА en uso, porfavor escoge otro que sea vАlido."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "Error en el tamaЯo"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"El tamaЯo es ilegal, asegЗrate que el tamaЯo sea mayor de 0 y que estИ "
-"especificado en notaciСn decimal."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "El tamaЯo es ilegal, asegЗrate que el tamaЯo sea mayor de 0 y que estИ especificado en notaciСn decimal."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "TamaЯo del Swap erroneo"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Quieres crear una particiСn de Swap muy grande, el tamaЯo mАximo es de %ld "
-"Mb."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Quieres crear una particiСn de Swap muy grande, el tamaЯo mАximo es de %ld Mb."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1810,8 +1583,7 @@ msgstr "No hay identificaciСn RAID"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
"Has configurado una particiСn RAID sin asignarla a un dispositivo.\n"
@@ -1822,12 +1594,8 @@ msgid "Close"
msgstr "Cerrar"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Configuraste una particiСn RAID sin asignar a ningЗn dispositivo la misma, "
-"porfavor asМgnala a alguna particiСn."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Configuraste una particiСn RAID sin asignar a ningЗn dispositivo la misma, porfavor asМgnala a alguna particiСn."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1837,30 +1605,19 @@ msgstr "Entrada RAID incompleta"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
msgstr ""
-"El dispositivo RAID /dev/%s contiene alguna particiСn mal asignada, Иste "
-"dispositivo serА desintegrado a sus particiones originales.\n"
+"El dispositivo RAID /dev/%s contiene alguna particiСn mal asignada, Иste dispositivo serА desintegrado a sus particiones originales.\n"
"Porfavor configuralo de nuevo."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Particiones no asignadas"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Hay algunas particiones no asignadas en la lista, tambiИn estА indicada la "
-"razСn de la falla de asignaciСn."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Hay algunas particiones no asignadas en la lista, tambiИn estА indicada la razСn de la falla de asignaciСn."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1884,24 +1641,16 @@ msgstr "No has seleccionado un punto de montaje, eso es necesario."
#: ../libfdisk/gnomefsedit.c:1888
#, fuzzy
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"El punto de montaje es ilegal o estА en uso, porfavor escoge otro que sea "
-"vАlido."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "El punto de montaje es ilegal o estА en uso, porfavor escoge otro que sea vАlido."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "Parece que quieres bootear del RAID"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"EstАs haciendo que la mАquina bootee del RAID, si es asМ, asegЗrate que las "
-"particiones que componen al arreglo sean booteables."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "EstАs haciendo que la mАquina bootee del RAID, si es asМ, asegЗrate que las particiones que componen al arreglo sean booteables."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1918,23 +1667,16 @@ msgstr "Dispositivo en uso"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"El dispositivo /dev/%s yА estА configurado como RAID, porfavor usa otro."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "El dispositivo /dev/%s yА estА configurado como RAID, porfavor usa otro."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "No hay suficientes particiones."
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
-msgstr ""
-"No has configurado suficientes particiones para el tipo de RAID que "
-"pretendes utilizar."
+msgid "You have not configured enough partitions for the RAID type you have selected."
+msgstr "No has configurado suficientes particiones para el tipo de RAID que pretendes utilizar."
#: ../libfdisk/gnomefsedit.c:1942
msgid "Illegal /boot RAID Type"
@@ -1946,10 +1688,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
msgstr ""
#: ../libfdisk/gnomefsedit.c:2034
@@ -2017,12 +1756,8 @@ msgstr "Particiones no asignadas"
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
#, fuzzy
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Tienes que asignar una particiСn RaМz (/) que sea Nativa Linux (ext2) para "
-"poder continuar."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Tienes que asignar una particiСn RaМz (/) que sea Nativa Linux (ext2) para poder continuar."
#: ../libfdisk/gnomefsedit.c:3157
#, fuzzy
@@ -2076,12 +1811,8 @@ msgid "No Root Partition"
msgstr "No hay particiСn RaМz"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Tienes que asignar una particiСn RaМz (/) que sea Nativa Linux (ext2) para "
-"poder continuar."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Tienes que asignar una particiСn RaМz (/) que sea Nativa Linux (ext2) para poder continuar."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2093,13 +1824,11 @@ msgstr "Tienes que asignar una particiСn de Swap"
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"Existen algunas particiones no asignadas todavМa, si terminas ahora no serАn "
-"escritas en el disco.\n"
+"Existen algunas particiones no asignadas todavМa, si terminas ahora no serАn escritas en el disco.\n"
"\n"
"©estАs seguro de que quieres salir?"
@@ -2137,10 +1866,7 @@ msgid "Miscellaneous"
msgstr ""
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
msgstr ""
#: ../loader/devices.c:65
@@ -2148,8 +1874,7 @@ msgstr ""
msgid "Module Parameters"
msgstr "ParАmetros adicionales"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
#, fuzzy
msgid "Devices"
msgstr "Dispositivo"
@@ -2163,15 +1888,11 @@ msgid "Failed to mount floppy disk."
msgstr ""
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
msgstr ""
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
msgstr ""
#: ../loader/devices.c:211
@@ -2203,16 +1924,16 @@ msgstr ""
msgid "Error on line %d of kickstart file %s."
msgstr ""
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr ""
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
#, fuzzy
msgid "Keyboard Type"
msgstr "SelecciСn del teclado"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
#, fuzzy
msgid "What type of keyboard do you have?"
msgstr "©QuИ tipo de CDROM tienes?"
@@ -2229,134 +1950,124 @@ msgstr ""
msgid "Hard drive"
msgstr ""
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
#, fuzzy
msgid "Welcome to Red Hat Linux"
msgstr "Bienvenido a Linux de Red Hat"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr ""
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
#, fuzzy
msgid "What kind of device would you like to add"
msgstr "©que tipo de sistema quieres instalar?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr ""
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
#, fuzzy
msgid "Add Device"
msgstr "Dispositivo"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
msgstr ""
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
#, fuzzy
msgid "Loading"
msgstr "EstaciСn de trabajo"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr ""
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr ""
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
#, fuzzy
msgid "Hard Drives"
msgstr "Demasiados discos duros"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
msgstr ""
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
msgstr ""
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr ""
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
#, fuzzy
msgid "Select Partition"
msgstr "Borra particiСn"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr ""
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
msgstr ""
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr ""
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr ""
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr ""
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr ""
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr ""
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
#, fuzzy
msgid "Installation Method"
msgstr "Tipo de instalaciСn"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr ""
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
#, fuzzy
msgid "What type of media contains the packages to be installed?"
msgstr "©que tipo de sistema quieres instalar?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr ""
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr ""
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
#, fuzzy
msgid "Initializing PC Card Devices..."
msgstr "Inicializando CDROM..."
@@ -2385,9 +2096,7 @@ msgid ""
msgstr ""
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
msgstr ""
#: ../loader/net.c:270
@@ -2460,9 +2169,7 @@ msgid "Network device"
msgstr "ConfiguraciСn de la red"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: ../loader/net.c:699
@@ -2539,16 +2246,11 @@ msgid "You must enter a directory."
msgstr ""
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
msgstr ""
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
msgstr ""
#: ../loader/urls.c:295
@@ -2576,33 +2278,19 @@ msgstr ""
msgid "Loading SCSI driver"
msgstr ""
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "Un disco con un sistema de archivos Sun defectuoso se encontrС en %s, usa el "
-#~ "fdisk para reasignarlo."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "Un disco con un sistema de archivos Sun defectuoso se encontrС en %s, usa el fdisk para reasignarlo."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Sistema de archivos de SUN defectuoso"
#, fuzzy
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Tienes que asignar una particiСn RaМz (/) que sea Nativa Linux (ext2) para "
-#~ "poder continuar."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Tienes que asignar una particiСn RaМz (/) que sea Nativa Linux (ext2) para poder continuar."
#, fuzzy
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Tienes que asignar una particiСn RaМz (/) que sea Nativa Linux (ext2) para "
-#~ "poder continuar."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Tienes que asignar una particiСn RaМz (/) que sea Nativa Linux (ext2) para poder continuar."
#~ msgid "Root Partition Selection"
#~ msgstr "SelecciСn de la particiСn RaМz"
@@ -2628,43 +2316,36 @@ msgstr ""
#~ "\n"
#~ "This means that all of the data on your system will be destroyed.\n"
#~ "\n"
-#~ "If you do not want to lose all of your partitions, select \"Cancel\" now, "
-#~ "and perform a \"Custom\" install.\n"
+#~ "If you do not want to lose all of your partitions, select \"Cancel\" now, and perform a \"Custom\" install.\n"
#~ "\n"
#~ msgstr ""
#~ "TODAS las particiones de tu sistema se destruirАn.\n"
#~ "\n"
#~ "Esto significa que se perderА toda la informaciСn que tienes.\n"
#~ "\n"
-#~ "Si no quieres hacer esto oprime \"Cancelar\" y escoge una instalaciСn "
-#~ "personalizada.\n"
+#~ "Si no quieres hacer esto oprime \"Cancelar\" y escoge una instalaciСn personalizada.\n"
#~ msgid ""
#~ "All of the Linux partitions on your hard drive(s) will be erased.\n"
#~ "\n"
#~ "This means that all of your previous Linux installations will be destroyed.\n"
#~ "\n"
-#~ "If you do not want to lose all of your Linux partitions, select \"Cancel\" "
-#~ "now, and perform a \"Custom\" install."
+#~ "If you do not want to lose all of your Linux partitions, select \"Cancel\" now, and perform a \"Custom\" install."
#~ msgstr ""
#~ "TODAS las particiones de tu sistema se destruirАn.\n"
#~ "\n"
#~ "Esto significa que se perderА toda la informaciСn que tienes.\n"
#~ "\n"
-#~ "Si no quieres hacer esto oprime \"Cancelar\" y escoge una instalaciСn "
-#~ "personalizada."
+#~ "Si no quieres hacer esto oprime \"Cancelar\" y escoge una instalaciСn personalizada."
-#~ msgid ""
-#~ "Existing free space on your drives will be used. No data will be lost.\n"
-#~ msgstr ""
-#~ "Se usarА el espacio libre en el disco duro, no se perderА informaciСn.\n"
+#~ msgid "Existing free space on your drives will be used. No data will be lost.\n"
+#~ msgstr "Se usarА el espacio libre en el disco duro, no se perderА informaciСn.\n"
#~ msgid "There is not enough disk space for this type of installation."
#~ msgstr "No hay suficiente espacio en el disco para este tipo de instalaciСn"
#~ msgid "There is not enough disk space for the chosen partitioning."
-#~ msgstr ""
-#~ "No hay suficiente espacio en el disco para particionar como tu quieres"
+#~ msgstr "No hay suficiente espacio en el disco para particionar como tu quieres"
#~ msgid "Partitions (unallocated shown in RED)"
#~ msgstr "Particiones (No usadas en ROJO)"
@@ -2684,12 +2365,8 @@ msgstr ""
#~ msgid "IO base, IRQ:"
#~ msgstr "Base de IO, IRQ:"
-#~ msgid ""
-#~ "An error occurred reading the partition table for the block device %s. The "
-#~ "error was:"
-#~ msgstr ""
-#~ "Ha ocurrido un error en la lectura de la tabla de particiСn para el "
-#~ "dispositivo de bloque %s. El error fue:"
+#~ msgid "An error occurred reading the partition table for the block device %s. The error was:"
+#~ msgstr "Ha ocurrido un error en la lectura de la tabla de particiСn para el dispositivo de bloque %s. El error fue:"
#~ msgid "RPM install of %s failed: %s"
#~ msgstr "Fallo en la instalaciСn RPM de %s: %s"
@@ -2736,7 +2413,5 @@ msgstr ""
#~ msgid "LAN Manager"
#~ msgstr "LAN Manager"
-#~ msgid ""
-#~ "Would you like to install or configure the SILO bootloader on your system?"
-#~ msgstr ""
-#~ "©Quieres instalar o configurar el cargador de inicio SILO en tu sistema?"
+#~ msgid "Would you like to install or configure the SILO bootloader on your system?"
+#~ msgstr "©Quieres instalar o configurar el cargador de inicio SILO en tu sistema?"
diff --git a/po/fi.po b/po/fi.po
index 56d43232a..e5ed9347e 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
@@ -16,66 +16,60 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr ""
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Takaisin"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr ""
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr ""
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr ""
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr ""
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr ""
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr ""
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Tervetuloa Red Hat Linuxin kДyttДjДksi"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Tervetuloa Red Hat Linuxin kДyttДjДksi"
+
+#: ../gui.py:491
+#, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr ""
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr "Voit menettДД tietoja! Haluatko varmasti tehdД tДmДn?"
#: ../text.py:50
@@ -83,25 +77,7 @@ msgstr "Voit menettДД tietoja! Haluatko varmasti tehdД tДmДn?"
msgid "What language would you like to use during the installation process?"
msgstr "MitkД paketit asennetaan?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr ""
@@ -121,8 +97,7 @@ msgstr ""
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Laite"
@@ -132,26 +107,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr ""
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "Ok"
@@ -212,12 +168,7 @@ msgstr "Asennusvaiheet"
msgid "What type of system would you like to install?"
msgstr "MissД tietovДlineessД asennettavat paketit ovat?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Virhe"
@@ -240,34 +191,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Valitse pДivitettДvДt paketit"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Kaikki aikaisemmin asennetut paketit ja kaikki muut paketit, jotka pitДД "
-"asentaa riippuvuuksien takia, ovat valittu asennettaviksi. Haluatko muokata "
-"pДivitettДvien pakettien listaa?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Kaikki aikaisemmin asennetut paketit ja kaikki muut paketit, jotka pitДД asentaa riippuvuuksien takia, ovat valittu asennettaviksi. Haluatko muokata pДivitettДvien pakettien listaa?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "KyllД"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Ei"
@@ -281,22 +212,15 @@ msgstr "Tervetuloa Red Hat Linuxin kДyttДjДksi"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Tervetuloa Red Hat Linuxin kДyttДjДksi!\n"
"\n"
-"Asennuksen eteneminen on selostettu yksityiskohtaisesti Official Red Hat "
-"Linuxin asennusoppaassa, joka on saatavana Suomen OhjelmistotyЖ OY:ltД. Jos "
-"sinulla on tДmД opas, sinun pitДisi lukea asennusta kДsittelevДt luvut ennen "
-"kuin jatkat.\n"
+"Asennuksen eteneminen on selostettu yksityiskohtaisesti Official Red Hat Linuxin asennusoppaassa, joka on saatavana Suomen OhjelmistotyЖ OY:ltД. Jos sinulla on tДmД opas, sinun pitДisi lukea asennusta kДsittelevДt luvut ennen kuin jatkat.\n"
"\n"
-"Jos olet ostanut Official Red Hat Linuxin, rekisterЖidy kДyttДjДksi "
-"WWW-palvelijamme http://www.redhat.sot.com kautta."
+"Jos olet ostanut Official Red Hat Linuxin, rekisterЖidy kДyttДjДksi WWW-palvelijamme http://www.redhat.sot.com kautta."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -338,33 +262,21 @@ msgid "Hostname Configuration"
msgstr "SCSI-mДДritykset"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
msgstr ""
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Koneen nimi"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"Mukautetulla kДynnistyslevykkeellД voit kДynnistДД jДrjestelmДn ilman "
-"tavanomaisen kДyttЖjДrjestelmДlataajan apua. TДstД on hyЖtyД, jos et halua "
-"asentaa LILO:a jДrjestelmДДsi, toinen kДyttЖjДrjestelmД poistaa LILO:n, tai "
-"LILO ei toimi laitteistossasi. Mukautettua kДynnistyslevykettД voidaan "
-"kДyttДД myЖs Red Hatin vikasiedon kДynnistyslevykkeen kanssa, jolloin "
-"vakavista jДrjestelmДn virhetilanteista on helpompi toipua.\n"
+"Mukautetulla kДynnistyslevykkeellД voit kДynnistДД jДrjestelmДn ilman tavanomaisen kДyttЖjДrjestelmДlataajan apua. TДstД on hyЖtyД, jos et halua asentaa LILO:a jДrjestelmДДsi, toinen kДyttЖjДrjestelmД poistaa LILO:n, tai LILO ei toimi laitteistossasi. Mukautettua kДynnistyslevykettД voidaan kДyttДД myЖs Red Hatin vikasiedon kДynnistyslevykkeen kanssa, jolloin vakavista jДrjestelmДn virhetilanteista on helpompi toipua.\n"
"\n"
"Haluaisitko tehdД kДynnistyslevykkeen jДrjestelmДДsi?"
@@ -414,12 +326,8 @@ msgid "Installation to begin"
msgstr "Asennusvaiheet"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"TДydellinen loki asennuksesta kirjoitetaan tiedostoon /tmp/install.log. "
-"Voit sДilyttДД sen myЖhempiД tarpeita varten."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "TДydellinen loki asennuksesta kirjoitetaan tiedostoon /tmp/install.log. Voit sДilyttДД sen myЖhempiД tarpeita varten."
#: ../text.py:606
msgid "Complete"
@@ -430,37 +338,26 @@ msgstr "Valmis"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"Onnittelut, asennus on valmis.\n"
"\n"
-"Poista levyke asemasta ja paina Enter, kДynnistДДksesi koneen uudelleen. "
-"LЖydДt tietoja korjauksista, jotka ovat saatavana tДhДn versioon, "
-"virhelistasta osoitteesta http://www.redhat.sot.com.\n"
+"Poista levyke asemasta ja paina Enter, kДynnistДДksesi koneen uudelleen. LЖydДt tietoja korjauksista, jotka ovat saatavana tДhДn versioon, virhelistasta osoitteesta http://www.redhat.sot.com.\n"
"\n"
-"JДrjestelmДn konfiguroinnista on tietoja Official Red Hat Linuxin oppaan "
-"luvussa \"Asennuksen jДlkeinen konfigurointi\""
+"JДrjestelmДn konfiguroinnista on tietoja Official Red Hat Linuxin oppaan luvussa \"Asennuksen jДlkeinen konfigurointi\""
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
msgstr ""
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Ohita"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
msgstr ""
#: ../text.py:697
@@ -530,18 +427,14 @@ msgstr ""
#: ../text.py:907
#, fuzzy
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> vaihtaa elementtiД | <Space> valitsee | <F12> seuraava "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> vaihtaa elementtiД | <Space> valitsee | <F12> seuraava "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr ""
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
#, fuzzy
msgid "Partition"
msgstr "Osioi uudelleen"
@@ -565,8 +458,7 @@ msgstr ""
msgid "Filesystem Formatting"
msgstr "Alustan"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
#, fuzzy
msgid "LILO Configuration"
msgstr "SCSI-mДДritykset"
@@ -643,8 +535,7 @@ msgstr "Asenna"
msgid "Installation Complete"
msgstr "Asennuspolku"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "SCSI-mДДritykset"
@@ -675,173 +566,172 @@ msgstr "Peruutettu"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "En voi siirtyД nyt aikaisempaan vaiheeseen. YritД uudelleen."
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "Virhe avattaessa: kickstartin tiedosto %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "Virhe avattaessa: kickstartin tiedosto %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Luon kДynnistyslevykettД..."
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Alustan"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "Luon ext2-tiedostojДrjestelmДn laitteelle /dev/%s..."
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Luon kДynnistyslevykettД..."
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Rakennan uudelleen"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "LДhetДn DHCP-pyynnЖn..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "ei ehdotusta"
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "Kaikki"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Virhe avattaessa: kickstartin tiedosto %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Rakennan uudelleen"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "Etsin pДivitettДviД paketteja..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr ""
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Etsin pДivitettДviД paketteja..."
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Rakennan uudelleen"
-#: ../todo.py:1344
+#: ../todo.py:1358
#, fuzzy
msgid "Rebuilding RPM database..."
msgstr "Muunnan RPM-tietokantaa..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr "RPM-tietokannan rakennus uudelleen epДonnistui. Levytila lopussa?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Asennan"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Ei liitoskohtaa"
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Space Needed"
msgstr "UudelleenkДynnistys pakollinen"
-#: ../todo.py:1439
+#: ../todo.py:1453
#, fuzzy
msgid "Disk Space"
msgstr "Levytila"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Asennus"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "SCSI-mДДritykset"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr ""
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr ""
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Palvelin"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Luon kДynnistyksen ramlevyn..."
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr ""
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
msgid "Horizontal frequency range"
msgstr ""
-#: ../xf86config.py:248
+#: ../xf86config.py:252
msgid "Vertical frequency range"
msgstr ""
@@ -875,8 +765,7 @@ msgstr "Salasana:"
msgid "Password (confirm)"
msgstr "Salasana (sama):"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr ""
@@ -884,15 +773,11 @@ msgstr ""
msgid "Add"
msgstr "LisДД"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Muokkaa"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Poista"
@@ -1021,8 +906,7 @@ msgstr "TyЖasema"
msgid "KDE Workstation"
msgstr "TyЖasema"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
#, fuzzy
msgid "Server"
msgstr "Palvelin"
@@ -1071,7 +955,7 @@ msgstr ""
msgid "Test your selection here:"
msgstr "NДppДimistЖtyyppi"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
#, fuzzy
msgid "What language should be used during the installation process?"
msgstr "MitkД paketit asennetaan?"
@@ -1117,19 +1001,15 @@ msgstr "Tee kДynnistyslevyke"
msgid "Do not install LILO"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Oletus"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Osiotyyppi"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "KДynnistysnimiЖ"
@@ -1137,46 +1017,46 @@ msgstr "KДynnistysnimiЖ"
msgid "Emulate 3 Buttons"
msgstr ""
-#: ../iw/network.py:141
+#: ../iw/network.py:148
#, fuzzy
msgid "Configure using DHCP"
msgstr "MДДrittele aikavyЖhyke"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr ""
-#: ../iw/network.py:155
+#: ../iw/network.py:163
#, fuzzy
msgid "IP Address"
msgstr "IP-osoite:"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
#, fuzzy
msgid "Netmask"
msgstr "Verkon peitto:"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr ""
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr ""
@@ -1272,10 +1152,7 @@ msgid "Low Memory"
msgstr ""
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
msgstr ""
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
@@ -1288,17 +1165,15 @@ msgstr "Muokkaa osiota"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
#, fuzzy
msgid "Remove data"
msgstr "lpd-palvelin"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
#, fuzzy
msgid "Manually partition"
msgstr "Osioi uudelleen"
@@ -1359,7 +1234,7 @@ msgstr ""
msgid "Test failed"
msgstr ""
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
#, fuzzy
msgid "Customize X Configuration"
msgstr "SCSI-mДДritykset"
@@ -1369,62 +1244,46 @@ msgstr "SCSI-mДДritykset"
msgid "Bits per Pixel"
msgstr "BittiД pikselille:"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
#, fuzzy
msgid "Test this configuration"
msgstr "SCSI-mДДritykset"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
msgstr ""
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
#, fuzzy
msgid "Autoprobe results:"
msgstr "Automaattihaku"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
msgstr ""
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr ""
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
#, fuzzy
msgid "Skip X Configuration"
msgstr "SCSI-mДДritykset"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"Joissakin koneissa kernelille pitДД vДlittДД erikoisia parametrejД "
-"kДynnistyksen aikana, jotta laitteisto toimii oikein. Jos tarvitset nДitД "
-"kДynnistysparametrejД, syЖtД ne nyt. Jos et tarvitse niitД tai et ole varma, "
-"jДtД syЖttЖkenttД tyhjДksi."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "Joissakin koneissa kernelille pitДД vДlittДД erikoisia parametrejД kДynnistyksen aikana, jotta laitteisto toimii oikein. Jos tarvitset nДitД kДynnistysparametrejД, syЖtД ne nyt. Jos et tarvitse niitД tai et ole varma, jДtД syЖttЖkenttД tyhjДksi."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Minne haluat asentaa kДyttЖjДrjestelmДn lataajan"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "TyhjennД"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Peruuta"
@@ -1433,23 +1292,12 @@ msgid "Edit Boot Label"
msgstr "Muokkaa kДynnistysnimiЖtД"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Red Hatin kДyttДmД kДyttЖjДrjestelmДn lataaja voi kДynnistДД myЖs muita "
-"kДyttЖjДrjestelmiД. Sinun pitДД kertoa mitД osioita haluat kДynnistДД ja "
-"mitД nimiЖtД haluat kullekin kДyttДД."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Red Hatin kДyttДmД kДyttЖjДrjestelmДn lataaja voi kДynnistДД myЖs muita kДyttЖjДrjestelmiД. Sinun pitДД kertoa mitД osioita haluat kДynnistДД ja mitД nimiЖtД haluat kullekin kДyttДД."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Jotkut asennettaviksi valitsemasi paketit tarvitsevat paketteja, joita et "
-"ole valinnut. Jos valitset Ok, kaikki tarvittavat paketit asennetaan"
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Jotkut asennettaviksi valitsemasi paketit tarvitsevat paketteja, joita et ole valinnut. Jos valitset Ok, kaikki tarvittavat paketit asennetaan"
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1457,31 +1305,20 @@ msgstr "Kiintolevyjen mДДrittely"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid on osiointityЖkalu, jolla voidaan myЖs mДДritellД liitoskohdat. "
-"Se on tehty helpommaksi kДyttДД kuin perinteinen Linuxin fdisk ja se on "
-"monipuolisempi. Joissakin tapauksissa fdisk voi kuitenkin olla parempi.\n"
+"Disk Druid on osiointityЖkalu, jolla voidaan myЖs mДДritellД liitoskohdat. Se on tehty helpommaksi kДyttДД kuin perinteinen Linuxin fdisk ja se on monipuolisempi. Joissakin tapauksissa fdisk voi kuitenkin olla parempi.\n"
"\n"
"Kumpaa osiointiohjelmaa haluaisit kДyttДД?"
#: ../textw/partitioning.py:58
#, fuzzy
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Red Hat Linuxin asennus vaatii vДhintДДn 150 Mt kokoisen osion mДДrittelyД "
-"Linuxille. Suosittelemme tuon osion sijoittamista toiselle kahdesta "
-"ensimmДisestД kiintolevyistД, jotta voi kДynnistДД Linuxin LILO:n avulla."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Red Hat Linuxin asennus vaatii vДhintДДn 150 Mt kokoisen osion mДДrittelyД Linuxille. Suosittelemme tuon osion sijoittamista toiselle kahdesta ensimmДisestД kiintolevyistД, jotta voi kДynnistДД Linuxin LILO:n avulla."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Valmis"
@@ -1490,15 +1327,8 @@ msgid "Continue"
msgstr "Jatka"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"MitkД osiot haluaisit alustaa? Suosittelemme kaikkien jДrjestelmДosioiden "
-"alustusta, mukaanlukien /, /usr ja /var. Jos osiot /home ja /usr/local ovat "
-"edellisen asennuksen jДljiltД, niitД ei tarvitse alustaa."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "MitkД osiot haluaisit alustaa? Suosittelemme kaikkien jДrjestelmДosioiden alustusta, mukaanlukien /, /usr ja /var. Jos osiot /home ja /usr/local ovat edellisen asennuksen jДljiltД, niitД ei tarvitse alustaa."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1519,14 +1349,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Valitse pДДkДyttДjДn salasana. Sinun pitДД syЖttДД se kahdesti, jotta se on "
-"varmasti oikein etkД tehnyt kirjoitusvirhettД. Muista, ettД pДДkДyttДjДn "
-"salasana on kriittinen osa jДrjestelmДn tietoturvaa!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Valitse pДДkДyttДjДn salasana. Sinun pitДД syЖttДД se kahdesti, jotta se on varmasti oikein etkД tehnyt kirjoitusvirhettД. Muista, ettД pДДkДyttДjДn salasana on kriittinen osa jДrjestelmДn tietoturvaa!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1582,17 +1406,11 @@ msgid "This user id already exists. Choose another."
msgstr ""
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
msgstr ""
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
msgstr ""
#: ../textw/userauth.py:160
@@ -1636,8 +1454,7 @@ msgstr ""
msgid "Request server via broadcast"
msgstr ""
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Huono liitoskohta"
@@ -1699,50 +1516,33 @@ msgid ""
msgstr ""
"Liitoskohta %s ei kelpaa.\n"
"\n"
-"JДrjestelmДosioiden pitДД olla Linuxin natiiveja osioita tai NFS:llД "
-"jaettuja."
+"JДrjestelmДosioiden pitДД olla Linuxin natiiveja osioita tai NFS:llД jaettuja."
#: ../libfdisk/fsedit.c:689
msgid "Too Many Drives"
msgstr "Liian monta kiintolevyД"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Sinulla on enemmДn kiintolevyjД kuin tДmД ohjelma pystyy kДsittelemДДn. "
-"KДytД fdisk-ohjelmaa osiointiin ja ilmoita Red Hat Softwarelle, ettД nДit "
-"tДmДn viestin."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Sinulla on enemmДn kiintolevyjД kuin tДmД ohjelma pystyy kДsittelemДДn. KДytД fdisk-ohjelmaa osiointiin ja ilmoita Red Hat Softwarelle, ettД nДit tДmДn viestin."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "LevyjД ei lЖytynyt"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Virhe. En lЖytДnyt laitteita, joille voisi luoda uusia tiedostojДrjestelmiД. "
-"Tarkista laitteistosta johtuvat ongelmat."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Virhe. En lЖytДnyt laitteita, joille voisi luoda uusia tiedostojДrjestelmiД. Tarkista laitteistosta johtuvat ongelmat."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, fuzzy, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
msgstr "Virhe luettaessa osiotaulua lohkolaitteelta %s. Virhe oli:"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Osiotaulu laitteella %s on vioittunut. Jotta uusia osiota voitaisiin luoda, "
-"se pitДД alustaa, jolloin KAIKKI TIEDOT hДviДvДt tДltД levyltД."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Osiotaulu laitteella %s on vioittunut. Jotta uusia osiota voitaisiin luoda, se pitДД alustaa, jolloin KAIKKI TIEDOT hДviДvДt tДltД levyltД."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1766,14 +1566,8 @@ msgid "BSD Disklabel"
msgstr "BSD:n levynimiЖ"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"LevyltД lЖytyi BSD:n levynimiЖ. Red Hatin asennus tukee niitД vain "
-"kirjoitussuojatussa tilassa, joten sinun pitДД valita mukautettua asennus ja "
-"kДyttДД fdisk:iД (Disk Druidin sijasta) koneissa, joissa on BSD:n levynimiЖ."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "LevyltД lЖytyi BSD:n levynimiЖ. Red Hatin asennus tukee niitД vain kirjoitussuojatussa tilassa, joten sinun pitДД valita mukautettua asennus ja kДyttДД fdisk:iД (Disk Druidin sijasta) koneissa, joissa on BSD:n levynimiЖ."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1803,10 +1597,7 @@ msgstr "Poista osio"
msgid "Are you sure you want to delete this partition?"
msgstr "Haluatko varmasti poistaa tДmДn osion?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Muokkaa osiota"
@@ -1849,31 +1640,21 @@ msgstr "Osiotyyppi"
msgid "Allowable Drives:"
msgstr ""
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Ei liitoskohtaa"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Et ole valinnut liitoskohtaa tДlle osiolle. Haluatko varmasti jДttДД sen "
-"mДДrittelemДttД?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Et ole valinnut liitoskohtaa tДlle osiolle. Haluatko varmasti jДttДД sen mДДrittelemДttД?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Liitoskohdan virhe"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Annettu liitoskohta on joko laiton polku tai jo kДytЖssД. Valitse "
-"kunnollinen liitoskohta."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Annettu liitoskohta on joko laiton polku tai jo kДytЖssД. Valitse kunnollinen liitoskohta."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
@@ -1881,27 +1662,17 @@ msgstr "Kokovirhe"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
#, fuzzy
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"Pyydetty koko ei kelpaa. Valitse kooksi suurempi kuin nolla (0) ja syЖtД se "
-"desimaalilukuna."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "Pyydetty koko ei kelpaa. Valitse kooksi suurempi kuin nolla (0) ja syЖtД se desimaalilukuna."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Sivutusosion koko virheellinen"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, fuzzy, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Olet luonut liian suuren sivutusosion. Sivutusosion suurin koko on %d "
-"megatavua."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Olet luonut liian suuren sivutusosion. Sivutusosion suurin koko on %d megatavua."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1910,12 +1681,9 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1108
#, fuzzy
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
-msgstr ""
-"Et ole valinnut liitoskohtaa tДlle osiolle. Haluatko varmasti jДttДД sen "
-"mДДrittelemДttД?"
+msgstr "Et ole valinnut liitoskohtaa tДlle osiolle. Haluatko varmasti jДttДД sen mДДrittelemДttД?"
#: ../libfdisk/gnomefsedit.c:1114
#, fuzzy
@@ -1923,9 +1691,7 @@ msgid "Close"
msgstr "TyhjennД"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
msgstr ""
#. XXXXX - for now destroy the raid entry since it
@@ -1936,27 +1702,17 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
msgstr ""
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Sijoittamattomat osiot"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Pyydettyjen osioiden listassa on sijoittamattomia osioita. Sijoittamattomat "
-"osiot ovat listattuna alla, sekД syy miksi niitД ei ole sijoitettu."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Pyydettyjen osioiden listassa on sijoittamattomia osioita. Sijoittamattomat osiot ovat listattuna alla, sekД syy miksi niitД ei ole sijoitettu."
#: ../libfdisk/gnomefsedit.c:1673
#, fuzzy
@@ -1979,27 +1735,19 @@ msgstr "Alustettavat osiot"
#: ../libfdisk/gnomefsedit.c:1880
#, fuzzy
msgid "You have not selected a mount point. A mount point is required."
-msgstr ""
-"Et ole valinnut liitoskohtaa tДlle osiolle. Haluatko varmasti jДttДД sen "
-"mДДrittelemДttД?"
+msgstr "Et ole valinnut liitoskohtaa tДlle osiolle. Haluatko varmasti jДttДД sen mДДrittelemДttД?"
#: ../libfdisk/gnomefsedit.c:1888
#, fuzzy
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Annettu liitoskohta on joko laiton polku tai jo kДytЖssД. Valitse "
-"kunnollinen liitoskohta."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Annettu liitoskohta on joko laiton polku tai jo kДytЖssД. Valitse kunnollinen liitoskohta."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr ""
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1912
@@ -2017,9 +1765,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1933
@@ -2028,9 +1774,7 @@ msgid "Not Enough Partitions"
msgstr "Ei juuriosiota"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1942
@@ -2043,10 +1787,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
msgstr ""
#: ../libfdisk/gnomefsedit.c:2034
@@ -2117,12 +1858,8 @@ msgstr "Sijoittamattomat osiot"
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
#, fuzzy
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Sinun pitДД mДДritellД juuriosioksi (/) Linuxin natiivi (ext2), jotta "
-"asennus voi jatkua."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Sinun pitДД mДДritellД juuriosioksi (/) Linuxin natiivi (ext2), jotta asennus voi jatkua."
#: ../libfdisk/gnomefsedit.c:3157
#, fuzzy
@@ -2180,12 +1917,8 @@ msgid "No Root Partition"
msgstr "Ei juuriosiota"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Sinun pitДД mДДritellД juuriosioksi (/) Linuxin natiivi (ext2), jotta "
-"asennus voi jatkua."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Sinun pitДД mДДritellД juuriosioksi (/) Linuxin natiivi (ext2), jotta asennus voi jatkua."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2197,8 +1930,7 @@ msgstr "Sinun pitДД mДДritellД sivutusosio, jotta asennus voi jatkua."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
@@ -2240,10 +1972,7 @@ msgid "Miscellaneous"
msgstr "Sekalaiset parametrit"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
msgstr ""
#: ../loader/devices.c:65
@@ -2251,8 +1980,7 @@ msgstr ""
msgid "Module Parameters"
msgstr "Modulin parametrit"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
#, fuzzy
msgid "Devices"
msgstr "Laite"
@@ -2267,15 +1995,11 @@ msgid "Failed to mount floppy disk."
msgstr "En saanut yhteyttД FTP-palvelimeen"
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
msgstr ""
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
msgstr ""
#: ../loader/devices.c:211
@@ -2306,17 +2030,17 @@ msgstr "Virhe luettaessa kickstart-tiedoston %s sisДltЖД: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Virhe rivillД %d kickstart-tiedostossa %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
#, fuzzy
msgid "Choose a Language"
msgstr "Valitse tarkasteltava ryhmД:"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
#, fuzzy
msgid "Keyboard Type"
msgstr "NДppДimistЖtyyppi"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
#, fuzzy
msgid "What type of keyboard do you have?"
msgstr "MikД kirjoitin sinulla on?"
@@ -2334,144 +2058,130 @@ msgstr ""
msgid "Hard drive"
msgstr "Kiintolevyt"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
#, fuzzy
msgid "Welcome to Red Hat Linux"
msgstr "Tervetuloa Red Hat Linuxin kДyttДjДksi"
-#: ../loader/loader.c:126
+#: ../loader/loader.c:129
#, fuzzy
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> vaihtaa elementtiД | <Space> valitsee | <F12> seuraava "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> vaihtaa elementtiД | <Space> valitsee | <F12> seuraava "
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr ""
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
#, fuzzy
msgid "What kind of device would you like to add"
msgstr "MissД tietovДlineessД asennettavat paketit ovat?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
#, fuzzy
msgid "I have found the following devices in your system:"
msgstr ""
"LЖysin seuraavan tyyppisiД SCSI-adaptereita jДrjestelmДstДsi:\n"
"\n"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
#, fuzzy
msgid "Add Device"
msgstr "Laite"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
msgstr ""
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
#, fuzzy
msgid "Loading"
msgstr "TyЖasema"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
#, fuzzy
msgid "Loading second stage ramdisk..."
msgstr "Lataan lisДlevykettД..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
#, fuzzy
msgid "Error loading ramdisk."
msgstr "Luon kДynnistyksen ramlevyn..."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Kiintolevyt"
-#: ../loader/loader.c:594
+#: ../loader/loader.c:597
#, fuzzy
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"Sinulla ei ole sivutusosioita mДДriteltynД. Haluatko jatkaa tai osioida "
-"levysi uudelleen?"
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "Sinulla ei ole sivutusosioita mДДriteltynД. Haluatko jatkaa tai osioida levysi uudelleen?"
-#: ../loader/loader.c:607
+#: ../loader/loader.c:610
#, fuzzy
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"MillД osiolla ja hakemistossa on RedHat/RPMS ja RedHat/base hakemistot?"
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "MillД osiolla ja hakemistossa on RedHat/RPMS ja RedHat/base hakemistot?"
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Hakemisto, jossa Red Hat on:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Valitse osio"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "Laitteessa %s ei vaikuta olevan Red Hatin asennushakemistopuuta."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
msgstr ""
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Hakemistosta ei lЖydy Red Hatin asennushakemistopuuta."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "En voinut liittДД hakemistoa palvelimelta"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr ""
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
#, fuzzy
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Luon kДynnistyksen ramlevyn..."
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr ""
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "AsennusmenetelmД"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr ""
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
#, fuzzy
msgid "What type of media contains the packages to be installed?"
msgstr "MissД tietovДlineessД asennettavat paketit ovat?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "En lЖydД ks.cfg:tД kДynnistyslevykkeeltД."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr ""
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
#, fuzzy
msgid "Initializing PC Card Devices..."
msgstr "Alustetaan CD-ROM..."
@@ -2504,12 +2214,8 @@ msgstr ""
" Red Hat Linux"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"SyЖtД koneen TCP/IP-asetukset. Kukin kohta pitДД syЖttДД IP-osoitteena, "
-"pisteillД eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "SyЖtД koneen TCP/IP-asetukset. Kukin kohta pitДД syЖttДД IP-osoitteena, pisteillД eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2582,11 +2288,8 @@ msgstr "NFS:n mДДrittely"
#: ../loader/net.c:698
#, fuzzy
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> vaihtaa elementtiД | <Space> valitsee | <F12> seuraava "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> vaihtaa elementtiД | <Space> valitsee | <F12> seuraava "
#: ../loader/net.c:699
#, c-format
@@ -2672,18 +2375,11 @@ msgid "You must enter a directory."
msgstr ""
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Jos kДytДt tunnuksellista ftp:tД, syЖtД kДyttДjДtunnus ja salasana, joita "
-"haluat kДyttДД. Jos kДytДt FTP-proxyД, syЖtД proxy-palvelimen nimi."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Jos kДytДt tunnuksellista ftp:tД, syЖtД kДyttДjДtunnus ja salasana, joita haluat kДyttДД. Jos kДytДt FTP-proxyД, syЖtД proxy-palvelimen nimi."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
msgstr ""
#: ../loader/urls.c:295
@@ -2716,21 +2412,12 @@ msgid "Loading SCSI driver"
msgstr "Lataan lisДlevykettД..."
#, fuzzy
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Sinun pitДД mДДritellД juuriosioksi (/) Linuxin natiivi (ext2), jotta "
-#~ "asennus voi jatkua."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Sinun pitДД mДДritellД juuriosioksi (/) Linuxin natiivi (ext2), jotta asennus voi jatkua."
#, fuzzy
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Sinun pitДД mДДritellД juuriosioksi (/) Linuxin natiivi (ext2), jotta "
-#~ "asennus voi jatkua."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Sinun pitДД mДДritellД juuriosioksi (/) Linuxin natiivi (ext2), jotta asennus voi jatkua."
#, fuzzy
#~ msgid "Root Partition Selection"
@@ -2808,27 +2495,11 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "I can't find the device anywhere on your system!"
#~ msgstr "En lЖydД laitetta koneestasi!"
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "Joissakin tapauksissa %s-ajuri vaatii lisДtietoja toimiakseen kunnolla, "
-#~ "mutta se toimii yleensД ilmankin. Haluaisitko antaa ajurille lisДparametrejД "
-#~ "vai antaa ajurin etsiД itse tarvitsemansa tiedot. Joskus haku voi pysДyttДД "
-#~ "koneen, mutta ei aiheuttaa vahinkoa."
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "Joissakin tapauksissa %s-ajuri vaatii lisДtietoja toimiakseen kunnolla, mutta se toimii yleensД ilmankin. Haluaisitko antaa ajurille lisДparametrejД vai antaa ajurin etsiД itse tarvitsemansa tiedot. Joskus haku voi pysДyttДД koneen, mutta ei aiheuttaa vahinkoa."
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "Usein %s-ajuri tarvitsee lisДtietoja laitteistosta. Jos haluat, kokeilen "
-#~ "yleisimpiД parametrejД. TДmД toimitus voi pysДyttДД koneen, mutta ei "
-#~ "aiheuttaa vahinkoa."
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "Usein %s-ajuri tarvitsee lisДtietoja laitteistosta. Jos haluat, kokeilen yleisimpiД parametrejД. TДmД toimitus voi pysДyttДД koneen, mutta ei aiheuttaa vahinkoa."
#~ msgid "Module options:"
#~ msgstr "Modulin parametrit:"
@@ -2890,12 +2561,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgstr "nfs-komento epДtДydellinen"
#, fuzzy
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Levykkeen liittДminen ei onnistunut. SyЖtД Red Hatin lisДlevyke tai valitse "
-#~ "peruuta valitaksesi toisen asennustavan."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Levykkeen liittДminen ei onnistunut. SyЖtД Red Hatin lisДlevyke tai valitse peruuta valitaksesi toisen asennustavan."
#, fuzzy
#~ msgid "Loading PCMCIA Support"
@@ -2904,12 +2571,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "Supplemental Disk"
#~ msgstr "LisДlevyke"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Levykkeen liittДminen ei onnistunut. SyЖtД Red Hatin lisДlevyke tai valitse "
-#~ "peruuta valitaksesi toisen asennustavan."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Levykkeen liittДminen ei onnistunut. SyЖtД Red Hatin lisДlevyke tai valitse peruuta valitaksesi toisen asennustavan."
#, fuzzy
#~ msgid "Loading Supplemental Disk..."
@@ -2920,29 +2583,16 @@ msgstr "Lataan lisДlevykettД..."
#~ msgstr "Levyjen yhteenveto"
#, fuzzy
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "TДmД asennustapa vaatii lisДlevykettД. Poista kДynnistyslevyke asemasta ja "
-#~ "korvaa se Red Hatin lisДlevykkeellД."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "TДmД asennustapa vaatii lisДlevykettД. Poista kДynnistyslevyke asemasta ja korvaa se Red Hatin lisДlevykkeellД."
#, fuzzy
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Levykkeen liittДminen ei onnistunut. SyЖtД Red Hatin lisДlevyke tai valitse "
-#~ "peruuta valitaksesi toisen asennustavan."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Levykkeen liittДminen ei onnistunut. SyЖtД Red Hatin lisДlevyke tai valitse peruuta valitaksesi toisen asennustavan."
#, fuzzy
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "TДmД asennustapa vaatii lisДlevykettД. Poista kДynnistyslevyke asemasta ja "
-#~ "korvaa se Red Hatin lisДlevykkeellД."
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "TДmД asennustapa vaatii lisДlevykettД. Poista kДynnistyslevyke asemasta ja korvaa se Red Hatin lisДlevykkeellД."
#, fuzzy
#~ msgid "hd command"
@@ -2999,14 +2649,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "mount failed: %s"
#~ msgstr "LiittДminen epДonnistui: %s"
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "Osiotaulu laitteella %s on vioittunut. Jotta uusia osioita voitaisiin luoda, "
-#~ "se pitДД alustaa. Voit kДyttДД \"zerombr yes\" riviД kickstartin "
-#~ "tiedostossa, jotta tДmД tehtДisiin automaattisesti."
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "Osiotaulu laitteella %s on vioittunut. Jotta uusia osioita voitaisiin luoda, se pitДД alustaa. Voit kДyttДД \"zerombr yes\" riviД kickstartin tiedostossa, jotta tДmД tehtДisiin automaattisesti."
#~ msgid "Zero Partition Table"
#~ msgstr "TyhjennД osiotaulu"
@@ -3016,8 +2660,7 @@ msgstr "Lataan lisДlevykettД..."
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "huono parametri kickstartin zerombr-komennolle: %s.\n"
-#~ "PitДД olla 'on', '1', tai 'yes' sallimiseksi tai 'off', '0', tai 'no' "
-#~ "estДmiseksi."
+#~ "PitДД olla 'on', '1', tai 'yes' sallimiseksi tai 'off', '0', tai 'no' estДmiseksi."
#~ msgid "Clear Partition Command"
#~ msgstr "Clear Partition -komento"
@@ -3034,12 +2677,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "Option Ignored"
#~ msgstr "ParametriД ei huomiotu"
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "--maxsize parametriД osiolle %s ei huomioitu. Tarkista, ettД se on suurempi "
-#~ "kuin --size parametri."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "--maxsize parametriД osiolle %s ei huomioitu. Tarkista, ettД se on suurempi kuin --size parametri."
#~ msgid "The mount point %s is already in use."
#~ msgstr "Liitoskohta %s on jo kДytЖssД."
@@ -3103,20 +2742,12 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "Scanning hard drives..."
#~ msgstr "Etsin kiintolevyjД..."
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "Koneessa ei ole kiintolevyjД! Unohdit todennДkЖisesti mДДritellД "
-#~ "SCSI-adapterin."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "Koneessa ei ole kiintolevyjД! Unohdit todennДkЖisesti mДДritellД SCSI-adapterin."
#, fuzzy
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "Red Hat Linuxin asennus vaatii vДhintДДn 150 Mt kokoisen osion mДДrittelyД "
-#~ "Linuxille."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "Red Hat Linuxin asennus vaatii vДhintДДn 150 Mt kokoisen osion mДДrittelyД Linuxille."
#~ msgid "Partition Disks"
#~ msgstr "Osioi kiintolevyt"
@@ -3125,21 +2756,13 @@ msgstr "Lataan lisДlevykettД..."
#~ msgstr "UudelleenkДynnistys pakollinen"
#~ msgid ""
-#~ "The kernel is unable to read your new partitioning information, probably "
-#~ "because you modified extended partitions. While this is not critical, you "
-#~ "must reboot your machine before proceeding. Insert the Red Hat boot disk now "
-#~ "and press Return to reboot your system.\n"
+#~ "The kernel is unable to read your new partitioning information, probably because you modified extended partitions. While this is not critical, you must reboot your machine before proceeding. Insert the Red Hat boot disk now and press Return to reboot your system.\n"
#~ "\n"
-#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an "
-#~ "empty SCSI drive can also cause this problem."
+#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an empty SCSI drive can also cause this problem."
#~ msgstr ""
-#~ "Kerneli ei voinut lukea uusia osiointitietoja, todennДkЖisesti siksi, ettД "
-#~ "muutit loogisis osioita. Vaikka tДmД ei ole vakavaa, sinun pitДД kДynnistДД "
-#~ "kone uudelleen ennen kuin voit jatkaa. SyЖtД Red Hatin asennuslevyke ja "
-#~ "paina Return, jolloin kone kДynnistyy uudelleen.\n"
+#~ "Kerneli ei voinut lukea uusia osiointitietoja, todennДkЖisesti siksi, ettД muutit loogisis osioita. Vaikka tДmД ei ole vakavaa, sinun pitДД kДynnistДД kone uudelleen ennen kuin voit jatkaa. SyЖtД Red Hatin asennuslevyke ja paina Return, jolloin kone kДynnistyy uudelleen.\n"
#~ "\n"
-#~ "Jos sinulla on ZIP tai JAZ asema, varmista, ettД asemassa on levy, koska "
-#~ "tyhjД SCSI-asema voi myЖs aiheuttaa tДmДn ongelman."
+#~ "Jos sinulla on ZIP tai JAZ asema, varmista, ettД asemassa on levy, koska tyhjД SCSI-asema voi myЖs aiheuttaa tДmДn ongelman."
#~ msgid "lilo command"
#~ msgstr "lilo-komento"
@@ -3151,28 +2774,16 @@ msgstr "Lataan lisДlevykettД..."
#~ msgstr "PCMCIA-tuki"
#, fuzzy
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "Tarvitsetko PCMCIA-laitteita asennuksen aikana? Vastaa tДhДn kysymykseen ei, "
-#~ "vain jos tarvitset PCMCIA-tukea asennuksen jДlkeen. Et tarvitse asennuksen "
-#~ "aikana PCMCIA-tukea, jos olet asentamassa Red Hat Linuxia kannettavaan, "
-#~ "jossa on sisДДnrakennettu CD-ROM-asema."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "Tarvitsetko PCMCIA-laitteita asennuksen aikana? Vastaa tДhДn kysymykseen ei, vain jos tarvitset PCMCIA-tukea asennuksen jДlkeen. Et tarvitse asennuksen aikana PCMCIA-tukea, jos olet asentamassa Red Hat Linuxia kannettavaan, jossa on sisДДnrakennettu CD-ROM-asema."
#, fuzzy
#~ msgid "PCMCIA Support Disk"
#~ msgstr "PCMCIA-tuki"
#, fuzzy
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "TДmД asennustapa vaatii lisДlevykettД. Poista kДynnistyslevyke asemasta ja "
-#~ "korvaa se Red Hatin lisДlevykkeellД."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "TДmД asennustapa vaatii lisДlevykettД. Poista kДynnistyslevyke asemasta ja korvaa se Red Hatin lisДlevykkeellД."
#~ msgid "Starting PCMCIA services..."
#~ msgstr "KДynnistДn PCMCIA-palveluita...."
@@ -3253,14 +2864,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "Upgrade log"
#~ msgstr "PДivityksen loki"
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "TДydellinen loki pДivityksestД kirjoitetaan tiedostoon /tmp/upgrade.log. "
-#~ "Lue se kДynnistyksen jДlkeen tarkistaaksesi, ettД konfigurointitiedostot "
-#~ "pДivitettiin oikein."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "TДydellinen loki pДivityksestД kirjoitetaan tiedostoon /tmp/upgrade.log. Lue se kДynnistyksen jДlkeen tarkistaaksesi, ettД konfigurointitiedostot pДivitettiin oikein."
#~ msgid "rootpw command"
#~ msgstr "rootpw-komento"
@@ -3277,16 +2882,10 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "Installation Path"
#~ msgstr "Asennuspolku"
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "Haluaisitko asentaa uuden jДrjestelmДn vai pДivittДД Red Hat Linux 2.0:n tai "
-#~ "uudemman?"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "Haluaisitko asentaa uuden jДrjestelmДn vai pДivittДД Red Hat Linux 2.0:n tai uudemman?"
-#~ msgid ""
-#~ "What type of machine are you installing? For maximum flexibility, choose "
-#~ "\"Custom\"."
+#~ msgid "What type of machine are you installing? For maximum flexibility, choose \"Custom\"."
#~ msgstr "MinkД tyyppisen asennuksen haluat? Joustavin on \"Mukautettu\"."
#~ msgid "Converting RPM database..."
@@ -3302,27 +2901,17 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
#~ msgstr ""
#~ "Virhe asennuksen vaiheessa \"%s\".\n"
#~ "\n"
-#~ "Voit yrittДД uudelleen kyseistД vaihetta, palata aikaisempaan asennuksen "
-#~ "vaiheeseen tai valita sopivan vaiheen asennuksesta valikon kautta. "
-#~ "Asennusvaiheiden valintavalikon kДyttЖ ei ole suositeltavaa, jos et tunne "
-#~ "hyvin Red Hat Linuxia. MitД haluaisit tehdД?"
+#~ "Voit yrittДД uudelleen kyseistД vaihetta, palata aikaisempaan asennuksen vaiheeseen tai valita sopivan vaiheen asennuksesta valikon kautta. Asennusvaiheiden valintavalikon kДyttЖ ei ole suositeltavaa, jos et tunne hyvin Red Hat Linuxia. MitД haluaisit tehdД?"
#~ msgid " Continue with install"
#~ msgstr "Jatka asennusta"
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
-#~ msgstr ""
-#~ "MinkД vaiheen haluaisit suorittaa? Vaiheet, joiden kohdalla on *, ovat jo "
-#~ "suoritettu."
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
+#~ msgstr "MinkД vaiheen haluaisit suorittaa? Vaiheet, joiden kohdalla on *, ovat jo suoritettu."
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
#~ msgstr "SyЖtД tyhjД levyke (ensimmДiseen) asemaan /dev/fd0"
@@ -3386,12 +2975,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "No Swap Space"
#~ msgstr "Ei sivutusaluetta"
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "MitД osioita haluaisit kДyttДД sivutukseen? TДmД tuhoaa kaikki osioilla "
-#~ "olevat tiedot."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "MitД osioita haluaisit kДyttДД sivutukseen? TДmД tuhoaa kaikki osioilla olevat tiedot."
#~ msgid "Active Swap Space"
#~ msgstr "KДytЖssД oleva sivutusalue"
@@ -3408,12 +2993,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "Ethernet Probe"
#~ msgstr "Ethernet-kortin haku"
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
-#~ msgstr ""
-#~ "Ethernet-kortin haku ei lЖytДnyt korttia koneestasi. Paina <Enter> "
-#~ "mДДritellДksesi sen itse."
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
+#~ msgstr "Ethernet-kortin haku ei lЖytДnyt korttia koneestasi. Paina <Enter> mДДritellДksesi sen itse."
#~ msgid "Static IP address"
#~ msgstr "KiinteД IP-osoite"
@@ -3430,12 +3011,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "kickstart network command is missing ip address"
#~ msgstr "kickstartin network-komennosta puuttuu IP-osoite"
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
-#~ msgstr ""
-#~ "Miten IP-osoitteet haetaan? Jos verkkosi yllДpitДjД antoi sinulle "
-#~ "IP-osoitteen, valitse kiinteД IP."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
+#~ msgstr "Miten IP-osoitteet haetaan? Jos verkkosi yllДpitДjД antoi sinulle IP-osoitteen, valitse kiinteД IP."
#~ msgid "Sending BOOTP request..."
#~ msgstr "LДhetДn BOOTP-pyynnЖn..."
@@ -3449,23 +3026,11 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "cannot open file: %s"
#~ msgstr "en voi avata tiedostoa: %s"
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
-#~ msgstr ""
-#~ "En voi lЖytДД automaattisesti koneesi nimeД. Paina <Enter> syЖttДДksesi "
-#~ "tiedot kДsin."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
+#~ msgstr "En voi lЖytДД automaattisesti koneesi nimeД. Paina <Enter> syЖttДДksesi tiedot kДsin."
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
-#~ msgstr ""
-#~ "SyЖtД verkkoalueen ja koneen nimi ja kaikkien nimipalvelijoiden "
-#~ "IP-osoitteet. Koneesi nimi pitДisi olla tДydellinen, kuten "
-#~ "mybox.mylab.myco.com. Jos nimipalvelijoita on vain yksi, jДtД muiden kohdat "
-#~ "tyhjiksi."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
+#~ msgstr "SyЖtД verkkoalueen ja koneen nimi ja kaikkien nimipalvelijoiden IP-osoitteet. Koneesi nimi pitДisi olla tДydellinen, kuten mybox.mylab.myco.com. Jos nimipalvelijoita on vain yksi, jДtД muiden kohdat tyhjiksi."
#~ msgid "Host name:"
#~ msgstr "Koneen nimi:"
@@ -3488,11 +3053,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "LAN networking has already been configured. Do you want to:"
#~ msgstr "LДhiverkko on jo mДДritelty. Haluatko:"
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
-#~ msgstr ""
-#~ "Haluatko mДДritellД lДhiverkon (ei modemiyhteys) asennetulle jДrjestelmДlle?"
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
+#~ msgstr "Haluatko mДДritellД lДhiverkon (ei modemiyhteys) asennetulle jДrjestelmДlle?"
#~ msgid "Cannot open components file: %s"
#~ msgstr "En voi avata komponettien tiedostoa: %s"
@@ -3557,8 +3119,7 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "<F1> will give you information on this printer driver."
#~ msgstr "<F1> antaa tietoja tДstД kirjoitinajurista."
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
+#~ msgid "You may now configure the paper size and resolution for this printer."
#~ msgstr "Voit nyt mДДritellД paperikoon ja resoluution tДlle kirjoittimelle."
#~ msgid "Paper Size"
@@ -3584,12 +3145,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "Configure Uniprint Driver"
#~ msgstr "MДДrittele kirjoitin"
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
-#~ msgstr ""
-#~ "Mihin laitteeseen kirjoitin on kytketty (huomaa, ettД /dev/lp0 vastaa "
-#~ "LPT1:stД)?"
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr "Mihin laitteeseen kirjoitin on kytketty (huomaa, ettД /dev/lp0 vastaa LPT1:stД)?"
#~ msgid ""
#~ "Auto-detected ports:\n"
@@ -3619,13 +3176,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "Remote lpd Printer Options"
#~ msgstr "Palvelimen lpd:n kirjoitinparametrit"
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "Jotta voisit kДyttДД palvelimen lpd-tulostusjonoja, sinun pitДД syЖttДД "
-#~ "tulostuspalvelimen nimi ja palvelimen tulostusjonon nimi."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "Jotta voisit kДyttДД palvelimen lpd-tulostusjonoja, sinun pitДД syЖttДД tulostuspalvelimen nimi ja palvelimen tulostusjonon nimi."
#, fuzzy
#~ msgid "Printer Server:"
@@ -3640,16 +3192,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgstr "Vakiotulostimen parametrit"
#, fuzzy
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "LAN manager -kirjoittimelle tulostaaksesi sinun pitДД syЖttДД LAN manager "
-#~ "-koneen nimi (joka ei aina ole sama kuin koneen TCP/IP nimi) ja "
-#~ "mahdollisesti tulostinpalvelimen IP-osoite, kirjoittimen jakonimi sekД "
-#~ "soveltuva kДyttДjДtunnus ja salasana."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "LAN manager -kirjoittimelle tulostaaksesi sinun pitДД syЖttДД LAN manager -koneen nimi (joka ei aina ole sama kuin koneen TCP/IP nimi) ja mahdollisesti tulostinpalvelimen IP-osoite, kirjoittimen jakonimi sekД soveltuva kДyttДjДtunnus ja salasana."
#, fuzzy
#~ msgid "SMB server host:"
@@ -3667,17 +3211,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgstr "Vakiotulostimen parametrit"
#, fuzzy
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "LAN manager -kirjoittimelle tulostaaksesi sinun pitДД syЖttДД LAN manager "
-#~ "-koneen nimi (joka ei aina ole sama kuin koneen TCP/IP nimi) ja "
-#~ "mahdollisesti tulostinpalvelimen IP-osoite, kirjoittimen jakonimi sekД "
-#~ "soveltuva kДyttДjДtunnus ja salasana."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "LAN manager -kirjoittimelle tulostaaksesi sinun pitДД syЖttДД LAN manager -koneen nimi (joka ei aina ole sama kuin koneen TCP/IP nimi) ja mahdollisesti tulostinpalvelimen IP-osoite, kirjoittimen jakonimi sekД soveltuva kДyttДjДtunnus ja salasana."
#~ msgid "Spool directory:"
#~ msgstr "Jonon hakemisto:"
@@ -3685,14 +3220,8 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "Standard Printer Options"
#~ msgstr "Vakiotulostimen parametrit"
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Jokainen tulostusjono (johon tulostustyЖt ohjataan) tarvitsee nimen (usein "
-#~ "lp) ja jonohakemiston. MitД nimeД ja hakemistoa kДytetДДn tДlle "
-#~ "kirjoittimelle?"
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Jokainen tulostusjono (johon tulostustyЖt ohjataan) tarvitsee nimen (usein lp) ja jonohakemiston. MitД nimeД ja hakemistoa kДytetДДn tДlle kirjoittimelle?"
#~ msgid "Would you like to configure a printer?"
#~ msgstr "Haluatko mДДritellД kirjoittimen?"
@@ -3796,9 +3325,7 @@ msgstr "Lataan lisДlevykettД..."
#~ "%s"
#~ msgstr "Virhe avattaessa: kickstartin tiedosto %s: %s"
-#~ msgid ""
-#~ "An error occurred reading the partition table for the block device %s. The "
-#~ "error was:"
+#~ msgid "An error occurred reading the partition table for the block device %s. The error was:"
#~ msgstr "Virhe luettaessa osiotaulua lohkolaitteelta %s. Virhe oli:"
#~ msgid "LAN manager host:"
@@ -3831,8 +3358,7 @@ msgstr "Lataan lisДlevykettД..."
#~ msgid "I cannot log into machine: %s\n"
#~ msgstr "En voi kirjautua koneelle: %s\n"
-#~ msgid ""
-#~ "Would you like to install or configure the SILO bootloader on your system?"
+#~ msgid "Would you like to install or configure the SILO bootloader on your system?"
#~ msgstr "Haluatko asentaa tai konfiguroida SILO:n jДrjestelmДДsi"
#~ msgid "Other"
diff --git a/po/fr.po b/po/fr.po
index 2f5d54a0a..5cf743766 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: install 6.1 \n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-04-13 12:44 \n"
"Last-Translator: Logiciels du Soleil <joel@ldsol.com> \n"
"Language-Team: French <fr@li.org> \n"
@@ -13,92 +13,66 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1 \n"
"Content-Transfer-Encoding: 8-bit \n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "Suivant"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Retour"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Afficher l'aide"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Masquer l'aide"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "Terminer"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "Aide en ligne"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "SИlection de la langue"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Programme d'installation de Red Hat Linux"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
-msgstr ""
-"Vous effacerez ensuite toutes les installations existantes de Linux sur votre systХme."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Programme d'installation de Red Hat Linux"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Programme d'installation de Red Hat Linux"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Programme d'installation de Red Hat Linux"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
+msgstr "Vous effacerez ensuite toutes les installations existantes de Linux sur votre systХme."
#: ../installclass.py:288
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr ""
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
-msgstr ""
-"Quelle langue souhaitez-vous utiliser durant le processus d'installation ?"
+msgstr "Quelle langue souhaitez-vous utiliser durant le processus d'installation ?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "OK"
@@ -118,8 +92,7 @@ msgstr "/dev/ttyS2 (COM3 sous DOS)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 sous DOS)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "PИriphИrique"
@@ -129,26 +102,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "Sur quel port votre souris est-elle connectИe ? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "OK"
@@ -200,20 +154,13 @@ msgstr "Type d'installation"
msgid "What type of system would you like to install?"
msgstr "Quel type d'installation voulez-vous utiliser ?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Erreur"
#: ../text.py:232
msgid "You don't have any Linux partitions. You can't upgrade this system!"
-msgstr ""
-"Vous ne disposez d'aucune partition Linux. Vous ne pouvez pas mettre Ю jour "
-"ce systХme !"
+msgstr "Vous ne disposez d'aucune partition Linux. Vous ne pouvez pas mettre Ю jour ce systХme !"
#: ../text.py:245
msgid "System to Upgrade"
@@ -228,34 +175,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Choix des paquetages Ю mettre Ю jour"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Les paquetages installИs ainsi que tous les autres paquetages nИcessaires Ю "
-"leur fonctionnement ont ИtИ sИlectionnИs pour l'installation. Voulez-vous "
-"personnaliser l'ensemble des paquetages qui seront mis Ю jour ?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Les paquetages installИs ainsi que tous les autres paquetages nИcessaires Ю leur fonctionnement ont ИtИ sИlectionnИs pour l'installation. Voulez-vous personnaliser l'ensemble des paquetages qui seront mis Ю jour ?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Oui"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Non"
@@ -267,23 +194,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Red Hat Linux vous souhaite la bienvenue !\n"
"\n"
-"Cette procИdure d'installation est dИcrite en dИtail dans le Guide "
-"d'installation Red Hat Linux officiel, disponible auprХs de Red Hat "
-"Software. Si vous disposez de ce guide, lisez la section concernant "
-"l'installation avant de poursuivre.\n"
+"Cette procИdure d'installation est dИcrite en dИtail dans le Guide d'installation Red Hat Linux officiel, disponible auprХs de Red Hat Software. Si vous disposez de ce guide, lisez la section concernant l'installation avant de poursuivre.\n"
"\n"
-"Si vous avez achetИ la distribution officielle de Red Hat Linux, pensez Ю "
-"enregistrer votre achat sur notre site Web Ю l'adresse "
-"http://www.redhat.com/."
+"Si vous avez achetИ la distribution officielle de Red Hat Linux, pensez Ю enregistrer votre achat sur notre site Web Ю l'adresse http://www.redhat.com/."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -322,36 +241,20 @@ msgid "Hostname Configuration"
msgstr "Configuration du nom d'hТte"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"Le nom d'hТte est le nom de votre ordinateur. Si votre ordinateur est "
-"connectИ Ю un rИseau, le nom d'hТte est peut-Йtre attribuИ par votre "
-"administrateur rИseau."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "Le nom d'hТte est le nom de votre ordinateur. Si votre ordinateur est connectИ Ю un rИseau, le nom d'hТte est peut-Йtre attribuИ par votre administrateur rИseau."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Nom d'hТte"
#: ../text.py:447
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"Une disquette d'amorГage personnalisИe permet de dИmarrer votre systХme "
-"Linux sans qu'il soit nИcessaire d'utiliser le chargeur de dИmarrage normal. "
-"Elle est utile si vous ne voulez pas installer lilo sur votre systХme, si un "
-"autre systХme d'exploitation a supprimИ lilo, ou lorsque lilo ne fonctionne "
-"pas avec votre configuration matИrielle. Une disquette d'amorГage peut aussi "
-"Йtre utilisИe avec l'image de secours de Red Hat pour faciliter la "
-"rИcupИration des donnИes endommagИes par des erreurs systХme graves.\n"
+"Une disquette d'amorГage personnalisИe permet de dИmarrer votre systХme Linux sans qu'il soit nИcessaire d'utiliser le chargeur de dИmarrage normal. Elle est utile si vous ne voulez pas installer lilo sur votre systХme, si un autre systХme d'exploitation a supprimИ lilo, ou lorsque lilo ne fonctionne pas avec votre configuration matИrielle. Une disquette d'amorГage peut aussi Йtre utilisИe avec l'image de secours de Red Hat pour faciliter la rИcupИration des donnИes endommagИes par des erreurs systХme graves.\n"
"\n"
"Voulez-vous crИer une disquette d'amorГage pour votre systХme ?"
@@ -395,13 +298,8 @@ msgid "Installation to begin"
msgstr "DИbut de l'installation"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Un historique complet de votre installation figurera dans le fichier journal "
-"/tmp/install.log aprХs le redИmarrage de votre systХme. Vous pouvez "
-"conserver ce fichier pour le consulter ultИrieurement."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Un historique complet de votre installation figurera dans le fichier journal /tmp/install.log aprХs le redИmarrage de votre systХme. Vous pouvez conserver ce fichier pour le consulter ultИrieurement."
#: ../text.py:606
msgid "Complete"
@@ -411,45 +309,27 @@ msgstr "TerminИ"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"FИlicitations, l'installation est terminИe.\n"
"\n"
-"Retirez la disquette et appuyez sur EntrИe pour redИmarrer. Pour des "
-"informations sur les corrections disponibles pour cette version de Red Hat "
-"Linux, consultez les Errata Ю l'adresse http://www.redhat.com.\n"
+"Retirez la disquette et appuyez sur EntrИe pour redИmarrer. Pour des informations sur les corrections disponibles pour cette version de Red Hat Linux, consultez les Errata Ю l'adresse http://www.redhat.com.\n"
"\n"
-"Des informations sur la configuration de votre systХme sont disponibles dans "
-"le chapitre \"AprХs l'installation\" du Manuel utilisateur officiel Red Hat "
-"Linux."
+"Des informations sur la configuration de votre systХme sont disponibles dans le chapitre \"AprХs l'installation\" du Manuel utilisateur officiel Red Hat Linux."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"InsИrez une disquette vierge dans le premier lecteur de disquettes. Toutes "
-"les donnИes de cette disquette seront supprimИes lors de la crИation de la "
-"disquette d'amorГage."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "InsИrez une disquette vierge dans le premier lecteur de disquettes. Toutes les donnИes de cette disquette seront supprimИes lors de la crИation de la disquette d'amorГage."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Ignorer"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"Une erreur s'est produite lors de la crИation de la disquette d'amorГage. "
-"Assurez-vous qu'une disquette formatИe se trouve dans le premier lecteur de "
-"disquettes."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "Une erreur s'est produite lors de la crИation de la disquette d'amorГage. Assurez-vous qu'une disquette formatИe se trouve dans le premier lecteur de disquettes."
#: ../text.py:697
msgid "Package Installation"
@@ -512,19 +392,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-"<Tab>/<Alt-Tab> Changer d'ИlИment | <Espace> SИlectionner | <F12> Ecran "
-"suivant"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr "<Tab>/<Alt-Tab> Changer d'ИlИment | <Espace> SИlectionner | <F12> Ecran suivant"
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Bienvenue"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "Partition"
@@ -544,8 +419,7 @@ msgstr "Swap"
msgid "Filesystem Formatting"
msgstr "CrИation du systХme de fichiers"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "Configuration de LILO"
@@ -609,8 +483,7 @@ msgstr "Installation du systХme"
msgid "Installation Complete"
msgstr "Installation terminИe"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
msgid "SILO Configuration"
msgstr "Configuration de SILO"
@@ -638,158 +511,158 @@ msgstr "AnnulИ"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "Impossible de revenir Ю l'Иtape prИcИdente Ю partir d'ici. RИessayez plus tard."
-#: ../todo.py:359
# c-format
+#: ../todo.py:363
+#, c-format
msgid "Error unmounting %s: %s"
msgstr "Erreur unmounting %s : %s"
-#: ../todo.py:500
# c-format
+#: ../todo.py:504
+#, c-format
msgid "Error mounting %s: %s"
msgstr "Erreur mounting %s : %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
msgid "Creating RAID devices..."
msgstr ""
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
msgid "Formatting"
msgstr ""
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, c-format
msgid "Formatting %s filesystem..."
msgstr ""
-#: ../todo.py:710
+#: ../todo.py:714
msgid "Creating boot disk..."
msgstr "CrИation d'une disquette d'amorГage"
-#: ../todo.py:841
+#: ../todo.py:845
msgid "Reading"
msgstr ""
-#: ../todo.py:842
+#: ../todo.py:846
msgid "Reading package information..."
msgstr ""
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr ""
-#: ../todo.py:1012
+#: ../todo.py:1016
msgid "Searching"
msgstr ""
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Erreur mounting systХme de fichiers ext2 %s : %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
msgid "Finding"
msgstr ""
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "Recherche des paquetages Ю mettre Ю jour..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr "Traitement"
-#: ../todo.py:1249
+#: ../todo.py:1253
msgid "Preparing to install..."
msgstr ""
-#: ../todo.py:1343
+#: ../todo.py:1357
msgid "Rebuilding"
msgstr "Reconstruction"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr "Reconstruction de la base de donnИes RPM..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
-msgstr ""
-"иchec de la reconstruction de la base de donnИes RPM. Votre disque est "
-"peut-Йtre plein ?"
+msgstr "иchec de la reconstruction de la base de donnИes RPM. Votre disque est peut-Йtre plein ?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
# c-format
+#: ../todo.py:1415
+#, c-format
msgid "Installing %s.\n"
msgstr ""
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Mount Point"
msgstr "Point de montage"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr "Espace nИcessaire"
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "Espace disque"
-#: ../todo.py:1462
+#: ../todo.py:1476
msgid "Post Install"
msgstr ""
-#: ../todo.py:1463
+#: ../todo.py:1477
msgid "Performing post install configuration..."
msgstr ""
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "Carte vidИo"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "MИmoire vidИo"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
msgid "X server"
msgstr "Serveur X"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
msgid "Unable to detect video card"
msgstr ""
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Ecran"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
msgid "Horizontal frequency range"
msgstr ""
-#: ../xf86config.py:248
+#: ../xf86config.py:252
msgid "Vertical frequency range"
msgstr ""
@@ -817,8 +690,7 @@ msgstr "Mot de passe"
msgid "Password (confirm)"
msgstr "VИrification du mot de passe"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Nom complet"
@@ -826,15 +698,11 @@ msgstr "Nom complet"
msgid "Add"
msgstr "Ajouter"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Modifier"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Supprimer"
@@ -950,8 +818,7 @@ msgstr "Station de travail GNOME"
msgid "KDE Workstation"
msgstr "Station de travail KDE"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Serveur"
@@ -995,7 +862,7 @@ msgstr "Variante"
msgid "Test your selection here:"
msgstr "Testez votre sИlection ici :"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Quelle langue doit Йtre utilisИe durant le processus d'installation ?"
@@ -1035,19 +902,15 @@ msgstr "CrИation d'une disquette d'amorГage"
msgid "Do not install LILO"
msgstr "Ne pas installer LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Par dИfaut"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Type de partition"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Label de boot"
@@ -1055,43 +918,43 @@ msgstr "Label de boot"
msgid "Emulate 3 Buttons"
msgstr "Emulation de souris Ю trois boutons"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Configuration avec DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Activation au dИmarrage"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "Adresse IP"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Masque rИseau"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "RИseau"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Diffusion"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Passerelle"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "DNS primaire"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "DNS secondaire"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "DNS tertiaire"
@@ -1176,15 +1039,8 @@ msgid "Low Memory"
msgstr "MИmoire faible"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Etant donnИ que vous ne disposez pas de beaucoup de mИmoire sur cette "
-"machine, vous devez activer l'espace swap immИdiatement. Pour ce faire, "
-"votre nouvelle table des partitions doit Йtre immИdiatement enregistrИe sur "
-"le disque. OK ?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Etant donnИ que vous ne disposez pas de beaucoup de mИmoire sur cette machine, vous devez activer l'espace swap immИdiatement. Pour ce faire, votre nouvelle table des partitions doit Йtre immИdiatement enregistrИe sur le disque. OK ?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1195,21 +1051,17 @@ msgstr "Partitionnement automatique"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"Si vous ne voulez pas procИder de la sorte, vous pouvez poursuivre cette "
-"installation en exИcutant un partitionnement manuel ou vous pouvez revenir "
-"en arriХre et exИcuter une installation personnalisИe."
+"Si vous ne voulez pas procИder de la sorte, vous pouvez poursuivre cette installation en exИcutant un partitionnement manuel ou vous pouvez revenir en arriХre et exИcuter une installation personnalisИe."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Supprimer les donnИes"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "Partitionnement manuel"
@@ -1265,7 +1117,7 @@ msgstr "FrИquence verticale"
msgid "Test failed"
msgstr "Le test a ИchouИ"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "Personnaliser la configuration X"
@@ -1273,63 +1125,43 @@ msgstr "Personnaliser la configuration X"
msgid "Bits per Pixel"
msgstr "Bits par pixel"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Tester cette configuration"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"Dans la plupart des cas, le systХme peut tester votre matИriel vidИo afin de "
-"dИterminer automatiquement les meilleurs paramХtres pour l'affichage."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "Dans la plupart des cas, le systХme peut tester votre matИriel vidИo afin de dИterminer automatiquement les meilleurs paramХtres pour l'affichage."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "RИsultats de l'autodИtection :"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"Le systХme n'a pas pu dИtecter automatiquement votre Иcran. SИlectionnez-le "
-"dans la liste ci-dessous :"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "Le systХme n'a pas pu dИtecter automatiquement votre Иcran. SИlectionnez-le dans la liste ci-dessous :"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Utiliser la connexion en mode graphique"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "Ignorer la configuration X"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"Certains systХmes ont besoin, lors du dИmarrage, de transmettre des options "
-"spИciales au noyau pour fonctionner correctement. Si vous devez transmettre "
-"des options de dИmarrage au noyau, faites-le maintenant. Si cela n'est pas "
-"nИcessaire ou si vous n'Йtes pas sШr de vous, laissez ce champ vide."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "Certains systХmes ont besoin, lors du dИmarrage, de transmettre des options spИciales au noyau pour fonctionner correctement. Si vous devez transmettre des options de dИmarrage au noyau, faites-le maintenant. Si cela n'est pas nИcessaire ou si vous n'Йtes pas sШr de vous, laissez ce champ vide."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "OЫ voulez-vous installer le chargeur de dИmarrage ?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "RИinitialiser"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Annuler"
@@ -1338,25 +1170,12 @@ msgid "Edit Boot Label"
msgstr "Changer le label de boot"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Le gestionnaire de dИmarrage de Red Hat peut aussi lancer d'autres systХmes "
-"d'exploitation. Vous devez indiquer quelles sont les partitions que vous "
-"souhaitez pouvoir lancer et le label que vous voulez utiliser pour chacune "
-"d'elles."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Le gestionnaire de dИmarrage de Red Hat peut aussi lancer d'autres systХmes d'exploitation. Vous devez indiquer quelles sont les partitions que vous souhaitez pouvoir lancer et le label que vous voulez utiliser pour chacune d'elles."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Certains des paquetages que vous avez choisi d'installer ont besoin de "
-"paquetages que vous n'avez pas sИlectionnИs. Si vous vous contentez de "
-"choisir Ok, tous les paquetages requis seront installИs."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Certains des paquetages que vous avez choisi d'installer ont besoin de paquetages que vous n'avez pas sИlectionnИs. Si vous vous contentez de choisir Ok, tous les paquetages requis seront installИs."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1364,32 +1183,19 @@ msgstr "Configuration disque"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid est un outil de partitionnement et de configuration des points de "
-"montage. Il est conГu pour Йtre plus facile Ю utiliser que fdisk, l'outil de "
-"partitionnement traditionnel de Linux. Il est Иgalement plus puissant. "
-"Cependant, dans certains cas, il est prИfИrable d'utiliser fdisk.\n"
+"Disk Druid est un outil de partitionnement et de configuration des points de montage. Il est conГu pour Йtre plus facile Ю utiliser que fdisk, l'outil de partitionnement traditionnel de Linux. Il est Иgalement plus puissant. Cependant, dans certains cas, il est prИfИrable d'utiliser fdisk.\n"
"\n"
"Quel utilitaire voulez-vous utiliser ?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"L'installation de Red Hat Linux nИcessite une partition de 150 Mo minimum "
-"dИdiИe Ю Linux. Nous vous conseillons de la placer sur l'un des deux "
-"premiers disques durs de votre systХme afin qu'il soit possible de lancer "
-"Linux Ю l'aide de LILO."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "L'installation de Red Hat Linux nИcessite une partition de 150 Mo minimum dИdiИe Ю Linux. Nous vous conseillons de la placer sur l'un des deux premiers disques durs de votre systХme afin qu'il soit possible de lancer Linux Ю l'aide de LILO."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Fait"
@@ -1398,16 +1204,8 @@ msgid "Continue"
msgstr "Continuer"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Quelles partitions voulez-vous formater ? Nous vous conseillons fortement de "
-"formater toutes les partitions systХme, notamment /, /usr et /var. Vous "
-"n'avez pas besoin de formater /home ou /usr/local si elles ont dИjЮ ИtИ "
-"configurИes lors d'une installation prИcИdente."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Quelles partitions voulez-vous formater ? Nous vous conseillons fortement de formater toutes les partitions systХme, notamment /, /usr et /var. Vous n'avez pas besoin de formater /home ou /usr/local si elles ont dИjЮ ИtИ configurИes lors d'une installation prИcИdente."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1426,15 +1224,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Choisissez un mot de passe root. Vous devez le saisir deux fois pour vous "
-"assurer que vous le connaissez et que vous n'avez pas fait d'erreur en le "
-"tapant. Rappelez-vous que le mot de passe root est un ИlИment extrЙmement "
-"important de la sИcuritИ du systХme !"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Choisissez un mot de passe root. Vous devez le saisir deux fois pour vous assurer que vous le connaissez et que vous n'avez pas fait d'erreur en le tapant. Rappelez-vous que le mot de passe root est un ИlИment extrЙmement important de la sИcuritИ du systХme !"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1485,25 +1276,12 @@ msgid "This user id already exists. Choose another."
msgstr "Cet utilisateur existe dИjЮ. Choisissez-en un autre."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"Vous devez utiliser un compte utilisateur normal pour la plupart des "
-"activitИs sur votre systХme. Si vous veillez Ю n'utiliser le compte root "
-"qu'avec prИcaution, vous rИduirez le risque d'une modification involontaire "
-"de la configuration de votre systХme."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "Vous devez utiliser un compte utilisateur normal pour la plupart des activitИs sur votre systХme. Si vous veillez Ю n'utiliser le compte root qu'avec prИcaution, vous rИduirez le risque d'une modification involontaire de la configuration de votre systХme."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"Quel compte utilisateur souhaitez-vous utiliser sur le systХme ? Vous devez "
-"disposer au minimum d'un compte non root pour le travail courant, mais, sur "
-"les systХmes multi-utilisateur, le nombre de comptes est illimitИ."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "Quel compte utilisateur souhaitez-vous utiliser sur le systХme ? Vous devez disposer au minimum d'un compte non root pour le travail courant, mais, sur les systХmes multi-utilisateur, le nombre de comptes est illimitИ."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1541,8 +1319,7 @@ msgstr "ou utiliser :"
msgid "Request server via broadcast"
msgstr "Rechercher un serveur sur le rИseau"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Point de montage erronИ"
@@ -1611,46 +1388,26 @@ msgid "Too Many Drives"
msgstr "Trop de disques"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Vous avez plus de disques que ce programme ne peut en gИrer. Utilisez le "
-"programme fdisk standard pour configurer vos disques et informez Red Hat "
-"Software que vous avez vu ce message."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Vous avez plus de disques que ce programme ne peut en gИrer. Utilisez le programme fdisk standard pour configurer vos disques et informez Red Hat Software que vous avez vu ce message."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Aucun disque n'a ИtИ trouvИ"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Une erreur s'est produite - aucun pИriphИrique valide permettant de crИer de "
-"nouveaux systХmes de fichiers n'a pu Йtre trouvИ. VИrifiez votre matИriel "
-"pour dИterminer la cause de ce problХme."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Une erreur s'est produite - aucun pИriphИrique valide permettant de crИer de nouveaux systХmes de fichiers n'a pu Йtre trouvИ. VИrifiez votre matИriel pour dИterminer la cause de ce problХme."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Une erreur s'est produite lors de la lecture de la table des partitions du "
-"pИriphИrique bloc %s. L'erreur Иtait"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Une erreur s'est produite lors de la lecture de la table des partitions du pИriphИrique bloc %s. L'erreur Иtait"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"La table des partitions du pИriphИrique %s est endommagИe. Elle doit Йtre "
-"initialisИe pour crИer de nouvelles partitions. Cette initialisation "
-"provoquera la perte de TOUTES LES DONNEES de ce disque."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "La table des partitions du pИriphИrique %s est endommagИe. Elle doit Йtre initialisИe pour crИer de nouvelles partitions. Cette initialisation provoquera la perte de TOUTES LES DONNEES de ce disque."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1673,15 +1430,8 @@ msgid "BSD Disklabel"
msgstr "Label de disque BSD"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"Un disque avec un label BSD a ИtИ trouvИ. L'installation Red Hat ne gХre les "
-"labels BSD qu'en lecture seulement, vous devez donc utiliser une "
-"installation personnalisИe et fdisk (au lieu de Disk Druid) pour les "
-"machines ayant des labels BSD."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "Un disque avec un label BSD a ИtИ trouvИ. L'installation Red Hat ne gХre les labels BSD qu'en lecture seulement, vous devez donc utiliser une installation personnalisИe et fdisk (au lieu de Disk Druid) pour les machines ayant des labels BSD."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1708,10 +1458,7 @@ msgstr "Suppression de la partition"
msgid "Are you sure you want to delete this partition?"
msgstr "Etes-vous sШr de vouloir supprimer cette partition ?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Modification de la partition"
@@ -1751,59 +1498,38 @@ msgstr "Type de partition :"
msgid "Allowable Drives:"
msgstr "Disques disponibles :"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Aucun point de montage"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Vous n'avez pas choisi de point de montage pour cette partition. Etes-vous "
-"sШr de vouloir faire cela ?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Vous n'avez pas choisi de point de montage pour cette partition. Etes-vous sШr de vouloir faire cela ?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Erreur de point de montage"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Le point de montage demandИ est un chemin illИgal ou est dИjЮ utilisИ. "
-"Choisissez un point de montage valide."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Le point de montage demandИ est un chemin illИgal ou est dИjЮ utilisИ. Choisissez un point de montage valide."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "Erreur de taille"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"La taille demandИe n'est pas valide. Assurez-vous que la taille est "
-"supИrieure Ю zИro (0) et qu'elle est spИcifiИe avec le format dИcimal (base "
-"10)."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "La taille demandИe n'est pas valide. Assurez-vous que la taille est supИrieure Ю zИro (0) et qu'elle est spИcifiИe avec le format dИcimal (base 10)."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Erreur de taille du fichier swap"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Vous avez crИИ une partition swap trop grande. La taille maximale d'une "
-"partition swap est de %ld Mo."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Vous avez crИИ une partition swap trop grande. La taille maximale d'une partition swap est de %ld Mo."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1811,12 +1537,10 @@ msgstr "Pas de limitation du lecteur RAID"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
-"Vous avez configurИ une partition RAID sans limiter la partition Ю undisque "
-"dur unique.\n"
+"Vous avez configurИ une partition RAID sans limiter la partition Ю undisque dur unique.\n"
" Etes-vous sШr de vouloir faire cela ?"
#: ../libfdisk/gnomefsedit.c:1114
@@ -1824,13 +1548,8 @@ msgid "Close"
msgstr "Fermer"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Vous avez configurИ une partition RAID sans limiter la partition Ю un disque "
-"dur unique. SИlectionnez le disque que vous voulez utiliser pour cette "
-"partition."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Vous avez configurИ une partition RAID sans limiter la partition Ю un disque dur unique. SИlectionnez le disque que vous voulez utiliser pour cette partition."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1840,32 +1559,17 @@ msgstr "EntrИe RAID incomplХte"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"Le pИriphИrique RAID /dev/%s contient maintenant des partitions non "
-"allouИes. Le pИriphИrique RAID /dev/%s va maintenant Йtre dИcomposИ en ses "
-"partitions internes. Recomposez le pИriphИrique RAID avec des partitions "
-"allouИes."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "Le pИriphИrique RAID /dev/%s contient maintenant des partitions non allouИes. Le pИriphИrique RAID /dev/%s va maintenant Йtre dИcomposИ en ses partitions internes. Recomposez le pИriphИrique RAID avec des partitions allouИes."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Partitions non allouИes"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Il y a actuellement une ou des partition(s) non allouИe(s) dans la liste des "
-"partitions demandИes. Les partitions non allouИes sont affichИes ci-dessous "
-"avec la raison de cette non allocation."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Il y a actuellement une ou des partition(s) non allouИe(s) dans la liste des partitions demandИes. Les partitions non allouИes sont affichИes ci-dessous avec la raison de cette non allocation."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1885,29 +1589,19 @@ msgstr "Partitions pour RAID Array :"
#: ../libfdisk/gnomefsedit.c:1880
msgid "You have not selected a mount point. A mount point is required."
-msgstr ""
-"Vous n'avez pas sИlectionnИ de point de montage. La sИlection d'un point de "
-"montage est obligatoire."
+msgstr "Vous n'avez pas sИlectionnИ de point de montage. La sИlection d'un point de montage est obligatoire."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Le point de montage demandИ est dИjЮ utilisИ. Choisissez un point de montage "
-"valide."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Le point de montage demandИ est dИjЮ utilisИ. Choisissez un point de montage valide."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "DИmarrage Ю partir de RAID - avertissement"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Vous avez montИ ce pИriphИrique RAID comme partition de dИmarrage. "
-"Assurez-vous que toutes les partitions qui le constituent sont amorГables."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Vous avez montИ ce pИriphИrique RAID comme partition de dИmarrage. Assurez-vous que toutes les partitions qui le constituent sont amorГables."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1923,24 +1617,16 @@ msgstr "PИriphИrique RAID utilisИ"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"Le pИriphИrique RAID \"/dev/%s\" est dИjЮ configurИ comme pИriphИrique RAID. "
-"SИlectionnez un autre pИriphИrique."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "Le pИriphИrique RAID \"/dev/%s\" est dИjЮ configurИ comme pИriphИrique RAID. SИlectionnez un autre pИriphИrique."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Nombre de partitions insuffisant"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
-msgstr ""
-"Vous n'avez pas configurИ suffisamment de partitions pour le type RAID que "
-"vous avez sИlectionnИ."
+msgid "You have not configured enough partitions for the RAID type you have selected."
+msgstr "Vous n'avez pas configurИ suffisamment de partitions pour le type RAID que vous avez sИlectionnИ."
#: ../libfdisk/gnomefsedit.c:1942
msgid "Illegal /boot RAID Type"
@@ -1948,19 +1634,12 @@ msgstr "Type RAID /boot illИgal"
#: ../libfdisk/gnomefsedit.c:1944
msgid "Boot partitions (/boot) are only allowed on RAID-1."
-msgstr ""
-"Les partitions de dИmarrage (/boot) sont seulement autorisИes sur RAID-1."
+msgstr "Les partitions de dИmarrage (/boot) sont seulement autorisИes sur RAID-1."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"La partition %s existe dИjЮ dans l'ensemble de partitions pour ce "
-"pИriphИrique RAID. Le point de montage dИfini est /boot. Etes-vous sШr que "
-"le systХme peut dИmarrer Ю partir de cette partition ?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "La partition %s existe dИjЮ dans l'ensemble de partitions pour ce pИriphИrique RAID. Le point de montage dИfini est /boot. Etes-vous sШr que le systХme peut dИmarrer Ю partir de cette partition ?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2005,8 +1684,7 @@ msgstr "RИinitialisation de la table des partitions"
#: ../libfdisk/gnomefsedit.c:2359 ../libfdisk/newtfsedit.c:1581
msgid "Reset partition table to original contents? "
-msgstr ""
-"RИinitialisation de la table des partitions avec son contenu initial ? "
+msgstr "RИinitialisation de la table des partitions avec son contenu initial ? "
#: ../libfdisk/gnomefsedit.c:2395 ../libfdisk/gnomefsedit.c:2446
msgid "<Swap>"
@@ -2025,12 +1703,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "Il existe des partitions non allouИes..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Vous devez affecter une partition root (/) Ю une partition Linux Native "
-"(ext2) ou Ю une partition RAID pour que l'installation puisse continuer."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Vous devez affecter une partition root (/) Ю une partition Linux Native (ext2) ou Ю une partition RAID pour que l'installation puisse continuer."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2083,12 +1757,8 @@ msgid "No Root Partition"
msgstr "Pas de partition root"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Vous devez affecter une partition root (/) Ю une partition Linux Native "
-"(ext2) pour que l'installation puisse continuer."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Vous devez affecter une partition root (/) Ю une partition Linux Native (ext2) pour que l'installation puisse continuer."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2096,19 +1766,15 @@ msgstr "Aucune partition swap"
#: ../libfdisk/newtfsedit.c:1446
msgid "You must assign a swap partition for the install to proceed."
-msgstr ""
-"Vous devez affecter une partition swap pour que l'installation puisse "
-"continuer."
+msgstr "Vous devez affecter une partition swap pour que l'installation puisse continuer."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"Il reste des partitions non allouИes. Si vous quittez maintenant, elles ne "
-"seront pas inscrites sur le disque.\n"
+"Il reste des partitions non allouИes. Si vous quittez maintenant, elles ne seront pas inscrites sur le disque.\n"
"\n"
"Etes-vous sШr de vouloir quitter ?"
@@ -2145,49 +1811,32 @@ msgid "Miscellaneous"
msgstr "Divers"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Ce module peut accepter des paramХtres susceptibles d'avoir une incidence "
-"sur son fonctionnement. Si vous ne savez pas quels paramХtres utiliser, "
-"passez simplement Ю l'Иcran suivant en cliquant sur le bouton \"OK\"."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Ce module peut accepter des paramХtres susceptibles d'avoir une incidence sur son fonctionnement. Si vous ne savez pas quels paramХtres utiliser, passez simplement Ю l'Иcran suivant en cliquant sur le bouton \"OK\"."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "ParamХtres du module"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "PИriphИriques"
#: ../loader/devices.c:169
msgid "Insert your driver disk and press \"OK\" to continue."
-msgstr ""
-"InsИrez votre disquette de pilote et cliquez sur \"OK\" pour continuer."
+msgstr "InsИrez votre disquette de pilote et cliquez sur \"OK\" pour continuer."
#: ../loader/devices.c:179
msgid "Failed to mount floppy disk."
msgstr "Impossible de monter la disquette."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"La disquette que vous avez insИrИe n'est pas une disquette de pilote valide "
-"pour cette version de Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "La disquette que vous avez insИrИe n'est pas une disquette de pilote valide pour cette version de Red Hat Linux."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Quel pilote voulez-vous utiliser ? Si le pilote dont vous avez besoin ne "
-"figure pas dans cette liste et si vous disposez d'une disquette de pilote, "
-"appuyez sur F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Quel pilote voulez-vous utiliser ? Si le pilote dont vous avez besoin ne figure pas dans cette liste et si vous disposez d'une disquette de pilote, appuyez sur F2."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2216,15 +1865,15 @@ msgstr "Erreur lors de la lecture du contenu du fichier kickstart %s : %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Erreur Ю la ligne %d du fichier kickstart %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "Choisir une langue"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Type de clavier"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Quel est le type de votre clavier ?"
@@ -2240,143 +1889,116 @@ msgstr "Image NFS"
msgid "Hard drive"
msgstr "Disque dur"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Red Hat Linux vous souhaite la bienvenue"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-"<Tab>/<Alt-Tab> Changer d'ИlИment | <Espace> SИlectionner | <F12> Ecran "
-"suivant"
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr "<Tab>/<Alt-Tab> Changer d'ИlИment | <Espace> SИlectionner | <F12> Ecran suivant"
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Quel type de pИriphИrique voulez-vous ajouter ?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
-msgstr ""
-"Les types de pИriphИriques suivants ont ИtИ dИtectИs sur votre systХme :"
+msgstr "Les types de pИriphИriques suivants ont ИtИ dИtectИs sur votre systХme :"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "Ajouter pИriphИrique"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"Aucun pilote de pИriphИrique spИcial n'est chargИ pour votre systХme. "
-"Voulez-vous en charger plusieurs maintenant ?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "Aucun pilote de pИriphИrique spИcial n'est chargИ pour votre systХme. Voulez-vous en charger plusieurs maintenant ?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "Chargement"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "Chargement du disque virtuel pour la seconde Иtape..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Erreur lors du chargement du disque virtuel"
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Disques durs"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"Aucun disque dur n'a ИtИ dИtectИ sur votre systХme ! Voulez-vous configurer "
-"des pИriphИriques supplИmentaires ?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "Aucun disque dur n'a ИtИ dИtectИ sur votre systХme ! Voulez-vous configurer des pИriphИriques supplИmentaires ?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Quelle partition, et quel rИpertoire sur celle-ci, contient les rИpertoires "
-"RedHat/RPMS et RedHat/base ? Si le lecteur de disque dur que vous utilisez "
-"ne figure pas dans cette liste, appuyez sur F2 pour configurer des "
-"pИriphИriques supplИmentaires."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Quelle partition, et quel rИpertoire sur celle-ci, contient les rИpertoires RedHat/RPMS et RedHat/base ? Si le lecteur de disque dur que vous utilisez ne figure pas dans cette liste, appuyez sur F2 pour configurer des pИriphИriques supplИmentaires."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "RИpertoire contenant Red Hat :"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "SИlection de la partition"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
-msgstr ""
-"Le pИriphИrique %s ne semble pas contenir une arborescence d'installation "
-"Red Hat."
+msgstr "Le pИriphИrique %s ne semble pas contenir une arborescence d'installation Red Hat."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"Le systХme n'a trouvИ aucun CD-ROM Red Hat Linux dans votre/vos lecteur(s) "
-"de CD-ROM. InsИrez le CD-ROM Red Hat dans le lecteur et appuyez sur \"OK\" "
-"pour rИessayer."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "Le systХme n'a trouvИ aucun CD-ROM Red Hat Linux dans votre/vos lecteur(s) de CD-ROM. InsИrez le CD-ROM Red Hat dans le lecteur et appuyez sur \"OK\" pour rИessayer."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
-msgstr ""
-"Ce rИpertoire ne semble pas contenir une arborescence d'installation Red Hat."
+msgstr "Ce rИpertoire ne semble pas contenir une arborescence d'installation Red Hat."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Impossible de monter ce rИpertoire du serveur"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Impossible de rИcupИrer le disque virtuel pour la seconde Иtape"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "MИthode de rИcupИration"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "MИthode d'installation"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Quel type de support contient l'image de secours ?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Quel type de support contient les paquetages Ю installer ?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Impossible de trouver ks.cfg sur la disquette d'amorГage"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "Carte PC"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "Initialisation des cartes PC..."
@@ -2407,13 +2029,8 @@ msgstr ""
" architecture sur ce serveur."
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Entrez la configuration IP de cette machine. Chaque ИlИment doit Йtre entrИ "
-"sous la forme d'une adresse IP en notation dИcimale pointИe (par exemple, "
-"1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Entrez la configuration IP de cette machine. Chaque ИlИment doit Йtre entrИ sous la forme d'une adresse IP en notation dИcimale pointИe (par exemple, 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2477,12 +2094,8 @@ msgid "Network device"
msgstr "PИriphИrique rИseau"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-"<Tab>/<Alt-Tab> Changer d'ИlИment | <Espace> SИlectionner | <F12> Ecran "
-"suivant"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr "<Tab>/<Alt-Tab> Changer d'ИlИment | <Espace> SИlectionner | <F12> Ecran suivant"
#: ../loader/net.c:699
#, c-format
@@ -2562,22 +2175,12 @@ msgid "You must enter a directory."
msgstr "Vous devez entrer un rИpertoire."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Si vous utilisez un ftp non anonyme, entrez ci-dessous le nom du compte et "
-"le mot de passe que vous voulez utiliser. Si vous utilisez un serveur proxy "
-"FTP, entrez le nom du serveur proxy Ю utiliser."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Si vous utilisez un ftp non anonyme, entrez ci-dessous le nom du compte et le mot de passe que vous voulez utiliser. Si vous utilisez un serveur proxy FTP, entrez le nom du serveur proxy Ю utiliser."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"Si vous utilisez un serveur proxy HTTP, entrez le nom du serveur proxy HTTPЮ "
-"utiliser."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "Si vous utilisez un serveur proxy HTTP, entrez le nom du serveur proxy HTTPЮ utiliser."
#: ../loader/urls.c:295
msgid "Account name:"
@@ -2603,32 +2206,14 @@ msgstr "Port du serveur proxy HTTP :"
msgid "Loading SCSI driver"
msgstr "Chargement du pilote SCSI"
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "Un disque avec un label Sun endommagИ a ИtИ trouvИ lors de la lecture du "
-#~ "pИriphИrique bloc %s. Vous devez utiliser fdisk pour crИer et Иcrire un "
-#~ "nouveau label pour ce pИriphИrique."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "Un disque avec un label Sun endommagИ a ИtИ trouvИ lors de la lecture du pИriphИrique bloc %s. Vous devez utiliser fdisk pour crИer et Иcrire un nouveau label pour ce pИriphИrique."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Label de disque Sun endommagИ"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Vous devez affecter une partition de dИmarrage (/boot) Ю une partition Linux "
-#~ "Native (ext2) ou Ю une partition RAID-1 pour que l'installation puisse "
-#~ "continuer."
-
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Etant donnИ que vous avez affectИ la partition root (/) Ю un pИriphИrique "
-#~ "RAID, vous devez Иgalement affecter une partition de dИmarrage (/boot) Ю une "
-#~ "partition Linux Native (ext2) ou Ю une partition RAID-1 pour que "
-#~ "l'installation puisse continuer."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Vous devez affecter une partition de dИmarrage (/boot) Ю une partition Linux Native (ext2) ou Ю une partition RAID-1 pour que l'installation puisse continuer."
+
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Etant donnИ que vous avez affectИ la partition root (/) Ю un pИriphИrique RAID, vous devez Иgalement affecter une partition de dИmarrage (/boot) Ю une partition Linux Native (ext2) ou Ю une partition RAID-1 pour que l'installation puisse continuer."
diff --git a/po/hu.po b/po/hu.po
index 749389c6e..7fb30fc1b 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@
msgid ""
msgstr ""
"Project-Id-Version: install\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-09-22 14:13+0200\n"
"Last-Translator: LАszlС NИmeth <nemeth@qwertynet.hu>\n"
"Language-Team: Hungarian\n"
@@ -11,90 +11,66 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "KЖvetkezУ"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Vissza"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "SЗgС kiМrАsa"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "SЗgС elrejtИse"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "BefejezИs"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "Online sЗgС"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "Nyelv kivАlasztАs"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Red Hat Linux TelepМtУ"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Red Hat Linux TelepМtУ"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Red Hat Linux TelepМtУ"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Red Hat Linux TelepМtУ"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr ""
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "Milyen nyelvet szeretne hasznАlni a telepМtИs alatt?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "OK"
@@ -114,8 +90,7 @@ msgstr "/dev/ttyS2 (COM1 DOS alatt)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM1 DOS alatt)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "EszkЖz"
@@ -125,26 +100,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "Melyik eszkЖzЖn talАlhatС az egere? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "Ok"
@@ -196,12 +152,7 @@ msgstr "A telepМtendУ rendszer tМpusa"
msgid "What type of system would you like to install?"
msgstr "Milyen tМpusЗ rendszert szeretne telepМteni?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Hiba"
@@ -223,34 +174,14 @@ msgid "Customize Packages to Upgrade"
msgstr "VАlassza ki a frissМtendУ csomagokat"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"A telepМtett csomagok, Иs a fЭggУsИgek szerint szЭksИges csomagok "
-"kivАlasztАsra kerЭltek a telepМtИshez. Akarja mСdosМtani a frissМtendУ "
-"csomagok listАjАt?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "A telepМtett csomagok, Иs a fЭggУsИgek szerint szЭksИges csomagok kivАlasztАsra kerЭltek a telepМtИshez. Akarja mСdosМtani a frissМtendУ csomagok listАjАt?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Igen"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Nem"
@@ -262,21 +193,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"эdvЖzЖli a Red Hat Linux!\n"
"\n"
-"A telepМtИs rИszletes leМrАsa megtalАlhatС a Red Hat Software Official Red "
-"Hat Linux Installation Guide cМmШ kЖnyvИben. Ha Жn rendelkezik ezzel a "
-"leМrАssal, akkor olvassa el a telepМtИsrУl szСlС rИszt, mielУtt folytatnА.\n"
+"A telepМtИs rИszletes leМrАsa megtalАlhatС a Red Hat Software Official Red Hat Linux Installation Guide cМmШ kЖnyvИben. Ha Жn rendelkezik ezzel a leМrАssal, akkor olvassa el a telepМtИsrУl szСlС rИszt, mielУtt folytatnА.\n"
"\n"
-"Amennyiben az Official Red Hat Linux csomagot vette meg, mindenkИppen "
-"regisztrАlja vАsАrlАsАt a http://www.redhat.com web cМmen."
+"Amennyiben az Official Red Hat Linux csomagot vette meg, mindenkИppen regisztrАlja vАsАrlАsАt a http://www.redhat.com web cМmen."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -315,35 +240,21 @@ msgid "Hostname Configuration"
msgstr "Host nИv beАllМtАs"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"A host nИv a szАmМtСgИp neve. Ha a szАmМtСgИpe hАlСzatra kapcsolСdik akkor "
-"ezt a hАlСzat rendszergazdАja jelЖlheti ki."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "A host nИv a szАmМtСgИp neve. Ha a szАmМtСgИpe hАlСzatra kapcsolСdik akkor ezt a hАlСzat rendszergazdАja jelЖlheti ki."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Host nИv"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"A boot lemez segМtsИgИvel a normАl boot betЖltУtУl fЭggetlenЭl elindМthatja "
-"a Linux rendszert. Ez akkor hasznos, ha nem akarja telepМteni a lilo-t, vagy "
-"egy mАsik operАciСs rendszer felЭlМrja azt, esetleg a lilo nem mШkЖdik "
-"egyЭtt a hardverrel. A sajАt boot lemez hasznАlhatС a Red Hat rescue "
-"lemezzel is, Мgy sokkal egyszerШbb a sЗlyos rendszerproblИmАk utАni "
-"helyreАllМtАs.\n"
+"A boot lemez segМtsИgИvel a normАl boot betЖltУtУl fЭggetlenЭl elindМthatja a Linux rendszert. Ez akkor hasznos, ha nem akarja telepМteni a lilo-t, vagy egy mАsik operАciСs rendszer felЭlМrja azt, esetleg a lilo nem mШkЖdik egyЭtt a hardverrel. A sajАt boot lemez hasznАlhatС a Red Hat rescue lemezzel is, Мgy sokkal egyszerШbb a sЗlyos rendszerproblИmАk utАni helyreАllМtАs.\n"
"\n"
"Akar boot lemezt kИszМteni a rendszerhez?"
@@ -387,13 +298,8 @@ msgid "Installation to begin"
msgstr "TelepМtИs elkezdИse"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"A telepМtИs teljes jegyzУkЖnyve megtalАlhatС lesz a /tmp/install.log "
-"file-ban a rendszer ЗjraindМtАsa utАn. KИsУbb esetleg szЭksИge lehet erre a "
-"file-ra."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "A telepМtИs teljes jegyzУkЖnyve megtalАlhatС lesz a /tmp/install.log file-ban a rendszer ЗjraindМtАsa utАn. KИsУbb esetleg szЭksИge lehet erre a file-ra."
#: ../text.py:606
msgid "Complete"
@@ -403,43 +309,27 @@ msgstr "KИsz"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"GratulАlunk, a telepМtИs kИsz.\n"
"\n"
-"TАvolМtsa el a bootolАshoz hasznАlt lemezt Иs nyomja meg a Return gombot a "
-"rendszer ЗjraindМtАsАhoz. A Red Hat Linux rendszerhez tartozС "
-"hibajavМtАsokrСl tovАbbi informАciСt talАl a http://www.redhat.com cМmen, az "
-"Errata oldalakon.\n"
+"TАvolМtsa el a bootolАshoz hasznАlt lemezt Иs nyomja meg a Return gombot a rendszer ЗjraindМtАsАhoz. A Red Hat Linux rendszerhez tartozС hibajavМtАsokrСl tovАbbi informАciСt talАl a http://www.redhat.com cМmen, az Errata oldalakon.\n"
"\n"
-"A rendszer beАllМtАsАrСl az Official Red Hat Linux User's Guide cМmШ kЖnyv "
-"\"post install\" fejezetИben olvashat."
+"A rendszer beАllМtАsАrСl az Official Red Hat Linux User's Guide cМmШ kЖnyv \"post install\" fejezetИben olvashat."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Helyezzen be egy Эres floppyt az elsУ floppy meghajtСba. Ezen a lemezen "
-"minden adat el fog veszni a boot lemez lИtrehozАsa sorАn."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Helyezzen be egy Эres floppyt az elsУ floppy meghajtСba. Ezen a lemezen minden adat el fog veszni a boot lemez lИtrehozАsa sorАn."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Kihagy"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"Hiba tЖrtИnt a boot lemez lИtrehozАsa sorАn. KИrem ellenУrizze, hogy az elsУ "
-"floppy meghajtСban formАzott lemez van-e."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "Hiba tЖrtИnt a boot lemez lИtrehozАsa sorАn. KИrem ellenУrizze, hogy az elsУ floppy meghajtСban formАzott lemez van-e."
#: ../text.py:697
msgid "Package Installation"
@@ -502,18 +392,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<AltTab> elemek kЖzЖtt |<Space> kivАlaszt |<F12> kЖvetkezУ kИpernyУ "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<AltTab> elemek kЖzЖtt |<Space> kivАlaszt |<F12> kЖvetkezУ kИpernyУ "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "эdvЖzЖljЭk"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "PartМciС"
@@ -533,8 +419,7 @@ msgstr "Swap"
msgid "Filesystem Formatting"
msgstr "Filerendszer FormАzАs"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "LILO beАllМtАs"
@@ -598,8 +483,7 @@ msgstr "Rendszer telepМtИse"
msgid "Installation Complete"
msgstr "TelepМtИs kИsz"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "LILO beАllМtАs"
@@ -630,174 +514,173 @@ msgid "I can't go to the previous step from here. You will have to try again."
msgstr ""
# , c-format
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "Hiba a %s kickstart file megnyitАsakor: %s"
# , c-format
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "Hiba a %s kickstart file megnyitАsakor: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "RAID eszkЖz tЖrlИse?"
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Filerendszer FormАzАs"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, c-format
msgid "Formatting %s filesystem..."
msgstr ""
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Boot lemez lИtrehozАsa"
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "HАtralИvУ"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "IP informАciС kИrelem kЭldИse..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr ""
-#: ../todo.py:1012
+#: ../todo.py:1016
msgid "Searching"
msgstr ""
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
# , c-format
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Hiba a %s kickstart file megnyitАsakor: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "HАtralИvУ"
-#: ../todo.py:1060
+#: ../todo.py:1064
#, fuzzy
msgid "Finding packages to upgrade..."
msgstr "VАlassza ki a frissМtendУ csomagokat"
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr ""
-#: ../todo.py:1249
+#: ../todo.py:1253
msgid "Preparing to install..."
msgstr ""
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "HАtralИvУ"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr ""
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr ""
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Csomagok telepМtИse"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Mount pont:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr ""
-#: ../todo.py:1439
+#: ../todo.py:1453
#, fuzzy
msgid "Disk Space"
msgstr "Lemez beАllМtАs"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "TelepМtИs"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "A beАllМtАs kiprСbАlАsa"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "VideokАrtya"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Video RAM"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Szerver"
# , c-format
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Nem tudom beolvasni a mАsodik fАzis ramdisk-jИt"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Monitor"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "VМzszintes eltИrМtИsi frekvencia-tartomАny"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "FЭggУleges eltИrМtИsi frekvencia-tartomАny"
@@ -826,8 +709,7 @@ msgstr "JelszС"
msgid "Password (confirm)"
msgstr "JelszС (Зjra)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Teljes nИv"
@@ -835,15 +717,11 @@ msgstr "Teljes nИv"
msgid "Add"
msgstr "HozzАad"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "SzerkesztИs"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "TЖrЖl"
@@ -959,8 +837,7 @@ msgstr "GNOME munkaАllomАs"
msgid "KDE Workstation"
msgstr "KDE munkaАllomАs"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Szerver"
@@ -1004,7 +881,7 @@ msgstr "VariАciС"
msgid "Test your selection here:"
msgstr "Itt prСbАlhatja ki a beАllМtАst:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Milyen nyelvet hasznАljon a telepМtУ?"
@@ -1044,19 +921,15 @@ msgstr "Boot lemez lИtrehozАsa"
msgid "Do not install LILO"
msgstr "Ne telepМtse a LILO-t"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "AlapИrtelmezИs"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "PartМciС-tМpus"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Boot cМmke"
@@ -1064,43 +937,43 @@ msgstr "Boot cМmke"
msgid "Emulate 3 Buttons"
msgstr "3 gomb emulАlАsa"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "BeАllМtАs DHCP-vel"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "BootolАskor aktivАlja"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "IP cМm"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "AlhАlСzati maszk"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "HАlСzat"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Broadcast"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "аtjАrС"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "ElsУdleges DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "MАsodlagos DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "Harmadlagos DNS"
@@ -1185,13 +1058,8 @@ msgid "Low Memory"
msgstr "KevИs a memСria"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Mivel niccs elИg memСria a gИpben, mАr most be kell kapcsolni a swap "
-"terЭletet. Ehhez az Зj partМciСs tАblАt a lemezre kell Мrni. Rendben van?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Mivel niccs elИg memСria a gИpben, mАr most be kell kapcsolni a swap terЭletet. Ehhez az Зj partМciСs tАblАt a lemezre kell Мrni. Rendben van?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1202,20 +1070,17 @@ msgstr "Automatikus ParticionАlАs"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"Ha ezt nem akarja, akkor folytathatja a telepМtИst kИzi particionАlАssal, "
-"vagy visszalИphet, Иs vАlaszthatja a teljesen egyИni telepМtИst."
+"Ha ezt nem akarja, akkor folytathatja a telepМtИst kИzi particionАlАssal, vagy visszalИphet, Иs vАlaszthatja a teljesen egyИni telepМtИst."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Adat eltАvolМtАsa"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "KИzi particionАlАs"
@@ -1276,7 +1141,7 @@ msgstr "FЭggУleges eltИrМtИsi frekvencia-tartomАny"
msgid "Test failed"
msgstr "A teszt nem sikerЭlt"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "Az X egyИni beАllМtАsa"
@@ -1284,62 +1149,43 @@ msgstr "Az X egyИni beАllМtАsa"
msgid "Bits per Pixel"
msgstr "Bit / pixel"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "A beАllМtАs kiprСbАlАsa"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"A legtЖbb esetben a videokАrtya legjobb beАllМtАsait automatikusan meg lehet "
-"hatАrozni."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "A legtЖbb esetben a videokАrtya legjobb beАllМtАsait automatikusan meg lehet hatАrozni."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "Automatikus keresИs eredmИnye:"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"A monitor tМpusАt nem sikerЭlt automatikusan meghatАrozni. VАlasszon az "
-"alАbbi listАbСl:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "A monitor tМpusАt nem sikerЭlt automatikusan meghatАrozni. VАlasszon az alАbbi listАbСl:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Grafikus login hasznАlata"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "X beАllМtАs kihagyАsa"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"NИhАny rendszer esetИben szЭksИges lehet speciАlis opciСk АtadАsa a "
-"kernelnek. Ha szЭksИge van ilyen opciСkra, akkor most adja meg ezeket. Ha "
-"nincs szЭksИge ezekre, vagy nem biztos benne, hagyja Эresen."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "NИhАny rendszer esetИben szЭksИges lehet speciАlis opciСk АtadАsa a kernelnek. Ha szЭksИge van ilyen opciСkra, akkor most adja meg ezeket. Ha nincs szЭksИge ezekre, vagy nem biztos benne, hagyja Эresen."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "HovА akarja telepМteni a boot betЖltУt?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "TЖrЖl"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "MИgsem"
@@ -1348,24 +1194,12 @@ msgid "Edit Boot Label"
msgstr "Boot cМmke szerkesztИse"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"A Red Hat Аltal hasznАlt boot betЖltУ mАs operАciСs rendszerek indМtАsАra is "
-"kИpes. Adja meg, melyik partМciСkrСl akar bootolni, Иs milyen cМmkИt akar "
-"hasznАlni hozzАjuk."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "A Red Hat Аltal hasznАlt boot betЖltУ mАs operАciСs rendszerek indМtАsАra is kИpes. Adja meg, melyik partМciСkrСl akar bootolni, Иs milyen cМmkИt akar hasznАlni hozzАjuk."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"A kivАlasztott csomagok kЖzЭl nИhАnynak szЭksИge van tovАbbi csomagok "
-"telepМtИsИre is, melyeket nem vАlasztott ki. Ha az Ok-t vАlassza, ezek a "
-"csomagok telepМtИsre kerЭlnek."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "A kivАlasztott csomagok kЖzЭl nИhАnynak szЭksИge van tovАbbi csomagok telepМtИsИre is, melyeket nem vАlasztott ki. Ha az Ok-t vАlassza, ezek a csomagok telepМtИsre kerЭlnek."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1373,31 +1207,19 @@ msgstr "Lemez beАllМtАs"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"A Disk Druid egy partМcionАlС Иs mount-pont beАllМtС segИdprogram. "
-"EgyszerШbben hasznАlhatС Иs hatИkonyabb, mint a Linux hagyomАnyos "
-"lemezpartМcionАlС programja, az fdisk. NИhАny esetben mИgis az fdisk "
-"hasznАlata lehet elУnyЖsebb.\n"
+"A Disk Druid egy partМcionАlС Иs mount-pont beАllМtС segИdprogram. EgyszerШbben hasznАlhatС Иs hatИkonyabb, mint a Linux hagyomАnyos lemezpartМcionАlС programja, az fdisk. NИhАny esetben mИgis az fdisk hasznАlata lehet elУnyЖsebb.\n"
"\n"
"Melyik programot szeretnИ hasznАlni?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"A Red Hat Linux telepМtИsИhez legalАbb egy ЖnАllС 150MB-os Linux partМciСra "
-"van szЭksИg. AjАnlatos ezt a partМciСt az elsУ kИt merevlemez valamelyikИn "
-"elhelyezni, Мgy a Linux rendszer LILO-val indМthatС lesz."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "A Red Hat Linux telepМtИsИhez legalАbb egy ЖnАllС 150MB-os Linux partМciСra van szЭksИg. AjАnlatos ezt a partМciСt az elsУ kИt merevlemez valamelyikИn elhelyezni, Мgy a Linux rendszer LILO-val indМthatС lesz."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "KИsz"
@@ -1406,16 +1228,8 @@ msgid "Continue"
msgstr "FolytatАs"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Melyik partМciСkat akarja formАzni? AjАnljuk, hogy valamennyi "
-"rendszerpartМciСt formАzza meg, beleИrtve a /, /usr, Иs /var partМciСkat. "
-"Nem szЭksИges formАzni a /home Иs /usr/local partМciСkat, ha egy elУzУ "
-"telepМtИs sorАn mАr lИtre lettek hozva."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Melyik partМciСkat akarja formАzni? AjАnljuk, hogy valamennyi rendszerpartМciСt formАzza meg, beleИrtve a /, /usr, Иs /var partМciСkat. Nem szЭksИges formАzni a /home Иs /usr/local partМciСkat, ha egy elУzУ telepМtИs sorАn mАr lИtre lettek hozva."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1435,14 +1249,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"VАlasszon egy root jelszСt. A jelszСt kИtszer kell beМrnia a tИvedИsek "
-"elkerЭlИse vИgett. Ne felejtse el, hogy a root jelszС a rendszer "
-"biztonsАgАnak kritikus rИsze!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "VАlasszon egy root jelszСt. A jelszСt kИtszer kell beМrnia a tИvedИsek elkerЭlИse vИgett. Ne felejtse el, hogy a root jelszС a rendszer biztonsАgАnak kritikus rИsze!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1493,24 +1301,12 @@ msgid "This user id already exists. Choose another."
msgstr "Ez a felhasznАlС-azonosМtС mАr lИtezik. VАlasszon mАsikat."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"A rendszeren a legtЖbb feladatot normАl felhasznАlСkИnt elvИgezheti. Ha nem "
-"rendszeresen a root accountot hasznАlja, csЖkkentheti a valСszМnШsИgИt a "
-"rendszer-beАllМtАsok vИletlen megsИrtИsИnek."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "A rendszeren a legtЖbb feladatot normАl felhasznАlСkИnt elvИgezheti. Ha nem rendszeresen a root accountot hasznАlja, csЖkkentheti a valСszМnШsИgИt a rendszer-beАllМtАsok vИletlen megsИrtИsИnek."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"Milyen felhasznАlС account-ot szeretne a rendszeren? A munkАjАhoz legalАbb "
-"egy nem root accountra van szЭksИge, azonban tЖbbfelhasznАlСs rendszereken "
-"tetszЖleges szАmЗ account-ot beАllМthat."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "Milyen felhasznАlС account-ot szeretne a rendszeren? A munkАjАhoz legalАbb egy nem root accountra van szЭksИge, azonban tЖbbfelhasznАlСs rendszereken tetszЖleges szАmЗ account-ot beАllМthat."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1548,8 +1344,7 @@ msgstr "vagy:"
msgid "Request server via broadcast"
msgstr "Szerver kИrИse broadcast-tal"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "HibАs mount-pont"
@@ -1624,44 +1419,28 @@ msgid "Too Many Drives"
msgstr "TЗl sok meghajtС"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"TЖbb meghajtСval rendelkezik, mint amennyit ez a program tАmogat. "
-"KИrem,hasznАlja a hagyomАnyos fdisk programot a meghajtСk beАllМtАsАhoz, Иs "
-"ИrtesМtse a Red Hat Software-t errУl az ЭzenetrУl."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "TЖbb meghajtСval rendelkezik, mint amennyit ez a program tАmogat. KИrem,hasznАlja a hagyomАnyos fdisk programot a meghajtСk beАllМtАsАhoz, Иs ИrtesМtse a Red Hat Software-t errУl az ЭzenetrУl."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Nem talАltam meghajtСkat"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Hiba tЖrtИnt - nincsenek ИrvИnyes eszkЖzЖk, amiken lИtre lehetne hozni Зj "
-"file-rendszereket. EllenУrizze a hardvert a problИma okАnak kiderМtИsИhez."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Hiba tЖrtИnt - nincsenek ИrvИnyes eszkЖzЖk, amiken lИtre lehetne hozni Зj file-rendszereket. EllenУrizze a hardvert a problИma okАnak kiderМtИsИhez."
# , c-format
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
msgstr "Hiba a %s blokk eszkЖz partМciСs tАblАjАnak olvasАsakor. A hiba:"
# , c-format
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"A %s eszkЖz partМciСs tАblАja hibАs. зj partМciСk lИtrehozАsa elУtt "
-"inicializАlnia kell, ami a meghajtСn lИvУ жSSZES ADAT elvesztИsИt jelenti."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "A %s eszkЖz partМciСs tАblАja hibАs. зj partМciСk lИtrehozАsa elУtt inicializАlnia kell, ami a meghajtСn lИvУ жSSZES ADAT elvesztИsИt jelenti."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1684,14 +1463,8 @@ msgid "BSD Disklabel"
msgstr "BSD Disklabel"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"BSD disklabel-t tartalmazС lemezt talАltam. A Red Hat telepМtУ csak olvasni "
-"tudja a BSD disklabel-t, Мgy egy sajАt telepМtУre Иs (a Disk Druid helyett) "
-"az fdisk programra lesz szЭksИge BSD disklabel-t hasznАlС gИpeken."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "BSD disklabel-t tartalmazС lemezt talАltam. A Red Hat telepМtУ csak olvasni tudja a BSD disklabel-t, Мgy egy sajАt telepМtУre Иs (a Disk Druid helyett) az fdisk programra lesz szЭksИge BSD disklabel-t hasznАlС gИpeken."
# , c-format
#: ../libfdisk/fsedit.c:1093
@@ -1719,10 +1492,7 @@ msgstr "PartМciС-tЖrlИs"
msgid "Are you sure you want to delete this partition?"
msgstr "Biztosan tЖrЖlni akarja ezt a partМciСt?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "PartМciС szerkesztИs"
@@ -1762,57 +1532,39 @@ msgstr "PartМciС-tМpus:"
msgid "Allowable Drives:"
msgstr "HasznАlhatС meghajtСk:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Nincs mount-pont"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
msgstr "Nem adott meg mount-pontot a partМciСhoz. Biztosan ezt akarja?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Mount-pont hiba"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"A kИrt mount-pont ИrvИnytelen Зtvonal, vagy mАr hasznАlatban van. VАlasszon "
-"egy ИrvИnyes mount-pontot."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "A kИrt mount-pont ИrvИnytelen Зtvonal, vagy mАr hasznАlatban van. VАlasszon egy ИrvИnyes mount-pontot."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "MИrethiba"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"A kИrt mИret hibАs. GyУzУdjЖn meg, hogy a mИret nagyobb nullАnАl (0), Иs "
-"tМzes szАmrendszerben, egИsz szАmkИnt van megadva."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "A kИrt mИret hibАs. GyУzУdjЖn meg, hogy a mИret nagyobb nullАnАl (0), Иs tМzes szАmrendszerben, egИsz szАmkИnt van megadva."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "SwapmИret-hiba"
# , c-format
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"TЗlsАgosan nagy swap-partМciСt hozott lИtre. A swap-partМciС legnagyobb "
-"mИrete %ld Megabyte."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "TЗlsАgosan nagy swap-partМciСt hozott lИtre. A swap-partМciС legnagyobb mИrete %ld Megabyte."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1820,12 +1572,10 @@ msgstr "Nincs RAID meghajtС hozzАrendelИs"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
-"BeАllМtott egy RAID partМciСt anИlkЭl, hogy a partМciСt egy bizonyos "
-"meghajtСhoz hozzАrendelte volna.\n"
+"BeАllМtott egy RAID partМciСt anИlkЭl, hogy a partМciСt egy bizonyos meghajtСhoz hozzАrendelte volna.\n"
" Biztos, hogy ezt akarja?"
#: ../libfdisk/gnomefsedit.c:1114
@@ -1833,13 +1583,8 @@ msgid "Close"
msgstr "BezАr"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"BeАllМtott egy RAID partМciСt anИlkЭl, hogy a partМciСt egy bizonyos "
-"meghajtСhoz hozzАrendelte volna. VАlasszon egy meghajtСt, amelyhez "
-"hozzАrendeli ezt a partМciСt."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "BeАllМtott egy RAID partМciСt anИlkЭl, hogy a partМciСt egy bizonyos meghajtСhoz hozzАrendelte volna. VАlasszon egy meghajtСt, amelyhez hozzАrendeli ezt a partМciСt."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1849,30 +1594,17 @@ msgstr "RAID meghajtС nem teljes"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"A RAID eszkЖz (/dev/%s) lekЖtetlen partМciСkat is tartalmaz. A /dev/%s RAID "
-"eszkЖz szИt lesz bontva ЖsszetevУ partМciСira. KИrem АllМtsa Жssze a RAID "
-"eszkЖzt lekЖtЖtt partМciСkbСl."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "A RAID eszkЖz (/dev/%s) lekЖtetlen partМciСkat is tartalmaz. A /dev/%s RAID eszkЖz szИt lesz bontva ЖsszetevУ partМciСira. KИrem АllМtsa Жssze a RAID eszkЖzt lekЖtЖtt partМciСkbСl."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "LekЖtetlen partМciСk"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Egy vagy tЖbb lekЖtetlen partМciС van a hasznАlni kМvАnt partМciСk kЖzЖtt. A "
-"lekЖtetlen partМciСk listАja a kЖvetkezУ:"
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Egy vagy tЖbb lekЖtetlen partМciС van a hasznАlni kМvАnt partМciСk kЖzЖtt. A lekЖtetlen partМciСk listАja a kЖvetkezУ:"
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1895,23 +1627,16 @@ msgid "You have not selected a mount point. A mount point is required."
msgstr "Nem adott meg mount-pontot. Mount pontra szЭksИg van."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"A kИrt mount-pont mАr hasznАlatban van. VАlasszon egy ИrvИnyes mount-pontot."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "A kИrt mount-pont mАr hasznАlatban van. VАlasszon egy ИrvИnyes mount-pontot."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "Figyelem, bootolАs RAID-rЖl"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Boot partМciСkИnt mountolta ezt a RAID eszkЖzt. GyУzУdjЖn meg, hogy a RAID "
-"minden rИsz-partМciСja bootolhatС."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Boot partМciСkИnt mountolta ezt a RAID eszkЖzt. GyУzУdjЖn meg, hogy a RAID minden rИsz-partМciСja bootolhatС."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1927,22 +1652,16 @@ msgstr "Alkalmazott RAID eszkЖz"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"A \"/dev/%s\" RAID eszkЖz mАr hasznАlatban van. KИrem vАlasszon mАsikat."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "A \"/dev/%s\" RAID eszkЖz mАr hasznАlatban van. KИrem vАlasszon mАsikat."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Nincs elegendУ partМciС"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
-msgstr ""
-"Nem vАlasztott ki elegendУ szАmЗ partМciСt a kivАlasztott RAID tМpushoz."
+msgid "You have not configured enough partitions for the RAID type you have selected."
+msgstr "Nem vАlasztott ki elegendУ szАmЗ partМciСt a kivАlasztott RAID tМpushoz."
#: ../libfdisk/gnomefsedit.c:1942
msgid "Illegal /boot RAID Type"
@@ -1954,13 +1673,8 @@ msgstr "Boot partМciСt (/boot) csak RAID-1 meghajtСn lehet lИtrehozni."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"A %s partМciС ennek a RAID eszkЖznek egy meglИvУ partМciСja. A mount-pont "
-"/boot. Biztos benne, hogy lehet errУl a partМciСrСl bootolni?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "A %s partМciС ennek a RAID eszkЖznek egy meglИvУ partМciСja. A mount-pont /boot. Biztos benne, hogy lehet errУl a partМciСrСl bootolni?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2024,12 +1738,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "LekЖtetlen partМciСk talАlhatСk..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"A telepМtИs folytatАsАhoz hozzА kell rendelnie egy root (/) partМciСt "
-"valamelyik Linux Native (ext2) vagy RAID partМciСhoz."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "A telepМtИs folytatАsАhoz hozzА kell rendelnie egy root (/) partМciСt valamelyik Linux Native (ext2) vagy RAID partМciСhoz."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2080,12 +1790,8 @@ msgid "No Root Partition"
msgstr "Nincs root-partМciС"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"A telepМtИs folytatАsАhoz hozzА kell rendelnie egy root (/) partМciСt "
-"valamelyik Linux Native (ext2) partМciСhoz."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "A telepМtИs folytatАsАhoz hozzА kell rendelnie egy root (/) partМciСt valamelyik Linux Native (ext2) partМciСhoz."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2097,13 +1803,11 @@ msgstr "A telepМtИs folytatАsАhoz ki kell jelЖlnie egy swap-partМciСt."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"LekЖtetlen partМciСk maradtak a lemezen. Ha most kilИp, ezek nem МrСdnak "
-"lemezre.\n"
+"LekЖtetlen partМciСk maradtak a lemezen. Ha most kilИp, ezek nem МrСdnak lemezre.\n"
"Biztosan ki akar lИpni?"
#: ../libfdisk/newtfsedit.c:1494
@@ -2139,48 +1843,32 @@ msgid "Miscellaneous"
msgstr "EgyИb"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Ehhez a modulhoz a mШkЖdИsИt befolyАsolС paramИtereket adhat meg. Ha nem "
-"tudja milyen paramИtereket kell megadni, ugorja Аt ezt a kИpernyУt az \"OK\" "
-"gomb megnyomАsАval."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Ehhez a modulhoz a mШkЖdИsИt befolyАsolС paramИtereket adhat meg. Ha nem tudja milyen paramИtereket kell megadni, ugorja Аt ezt a kИpernyУt az \"OK\" gomb megnyomАsАval."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "Modul paramИterek"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "EszkЖzЖk"
#: ../loader/devices.c:169
msgid "Insert your driver disk and press \"OK\" to continue."
-msgstr ""
-"Helyezze be a driver lemezt, majd a folytatАshoz nyomja meg az \"OK\"-t."
+msgstr "Helyezze be a driver lemezt, majd a folytatАshoz nyomja meg az \"OK\"-t."
#: ../loader/devices.c:179
msgid "Failed to mount floppy disk."
msgstr "Nem sikerЭlt mount-olni a floppyt."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"A behelyezett floppy nem a megfelelУ driver lemez ehhez a Red Hat Linux "
-"verziСhoz."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "A behelyezett floppy nem a megfelelУ driver lemez ehhez a Red Hat Linux verziСhoz."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Melyik meghajtСt prСbАljam? Ha a szЭksИges meghajtС nem szerepel ezen a "
-"listАn, Иs van kЭlЖn driver lemeze, akkor nyomja meg az F2-t."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Melyik meghajtСt prСbАljam? Ha a szЭksИges meghajtС nem szerepel ezen a listАn, Иs van kЭlЖn driver lemeze, akkor nyomja meg az F2-t."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2212,15 +1900,15 @@ msgstr "Hiba a %s kickstart file tartalmАnak olvasАsakor: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Hiba (%d. sor) a %s kickstart file-ban."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "VАlasszon egy nyelvet"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "BillentyШzet tМpus"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Milyen tМpusЗ billentyШzete van?"
@@ -2236,138 +1924,118 @@ msgstr "NFS image"
msgid "Hard drive"
msgstr "Merevlemezes meghajtС"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "эdvЖzli a Red Hat Linux"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<AltTab> elemek kЖzЖtt |<Space> kivАlaszt |<F12> kЖvetkezУ kИpernyУ "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<AltTab> elemek kЖzЖtt |<Space> kivАlaszt |<F12> kЖvetkezУ kИpernyУ "
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Milyen tМpusЗ eszkЖzt szeretne hozzАadni?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "A kЖvetkezУ eszkЖzЖket talАltam a rendszerben:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "EszkЖz hozzАadАs"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"A rendszerhez nincsenek speciАlis eszkЖzmeghajtСk betЖltve. Akar most "
-"ilyeneket betЖlteni?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "A rendszerhez nincsenek speciАlis eszkЖzmeghajtСk betЖltve. Akar most ilyeneket betЖlteni?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "BetЖltИs"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "MАsodik fАzis ramdisk-jИnek betЖltИse..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Hiba a ramdisk betЖltИsekor."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Merevlemezes meghajtСk"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"зgy nИz ki, nincsen egyetlen merevlemezes meghajtС sem a rendszerben. KМvАn "
-"tovАbbi eszkЖzЖket beАllМtani?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "зgy nИz ki, nincsen egyetlen merevlemezes meghajtС sem a rendszerben. KМvАn tovАbbi eszkЖzЖket beАllМtani?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Melyik partМciСn Иs kЖnyvtАrban vannak a RedHat/RPMS Иs RedHat/base "
-"kЖnyvtАrak? Ha nem lАtja a listАban a hasznАlni kМvАnt meghajtСt nyomja meg "
-"az F2-t tovАbbi eszkЖzЖk beАllМtАsАhoz."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Melyik partМciСn Иs kЖnyvtАrban vannak a RedHat/RPMS Иs RedHat/base kЖnyvtАrak? Ha nem lАtja a listАban a hasznАlni kМvАnt meghajtСt nyomja meg az F2-t tovАbbi eszkЖzЖk beАllМtАsАhoz."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "A Red Hat kЖnyvtАr:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "VАlasszon partМciСt"
# , c-format
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "A(z) %s eszkЖz nem tartalmaz Red Hat telepМtУkИszletet."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"Egyik CDROM meghajtСban sem talАlok Red Hat Linux CDROM-ot. Tegye be a Red "
-"Hat CD-t, Иs nyomja meg az \"OK\"-t a folytatАshoz."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "Egyik CDROM meghajtСban sem talАlok Red Hat Linux CDROM-ot. Tegye be a Red Hat CD-t, Иs nyomja meg az \"OK\"-t a folytatАshoz."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "A kЖnyvtАr nem tartalmaz Red Hat telepМtУ kИszletet"
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Nem tudom mountolni a megadott kЖnyvtАrat a szerverrУl"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
# , c-format
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Nem tudom beolvasni a mАsodik fАzis ramdisk-jИt"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "Rescue mСdszer"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "TelepМtИsi mСdszer"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Milyen tМpusЗ mИdiАn van a rescue image?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Milyen tМpusЗ mИdiАn vannak a telepМtendУ csomagok?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Nem talАlom a ks.cfg file-t a boot floppyn."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC Card"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "PC Card eszkЖzЖk inicializАlАsa..."
@@ -2398,12 +2066,8 @@ msgstr ""
" tartalmazС kЖnyvtАr a szerveren"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Adja meg a szАmМtСgИp IP beАllМtАsait. Minden ИrtИket decimАlisan, pontokkal "
-"elvАlasztva adjon meg (pl. 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Adja meg a szАmМtСgИp IP beАllМtАsait. Minden ИrtИket decimАlisan, pontokkal elvАlasztva adjon meg (pl. 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2468,11 +2132,8 @@ msgid "Network device"
msgstr "HАlСzati eszkЖz"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<AltTab> elemek kЖzЖtt |<Space> kivАlaszt |<F12> kЖvetkezУ kИpernyУ "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<AltTab> elemek kЖzЖtt |<Space> kivАlaszt |<F12> kЖvetkezУ kИpernyУ "
#: ../loader/net.c:699
#, c-format
@@ -2552,20 +2213,12 @@ msgid "You must enter a directory."
msgstr "Meg kell adnia egy konyvtАrat."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Ha nem-anonymous ftp-t hasznАl, adja meg a felhasznАlСnevet Иs a jelszСt. Ha "
-"ftp proxy szervert hasznАl, akkor adja meg a hasznАlni kМvАnt szerver nevИt."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Ha nem-anonymous ftp-t hasznАl, adja meg a felhasznАlСnevet Иs a jelszСt. Ha ftp proxy szervert hasznАl, akkor adja meg a hasznАlni kМvАnt szerver nevИt."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"Ha HTTP proxy szervert hasznАl, akkor adja meg a HTTP proxy szerver nevИt."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "Ha HTTP proxy szervert hasznАl, akkor adja meg a HTTP proxy szerver nevИt."
#: ../loader/urls.c:295
msgid "Account name:"
@@ -2592,30 +2245,14 @@ msgid "Loading SCSI driver"
msgstr "SCSI meghajtС betЖltИse"
# , c-format
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "A %s blokk eszkЖz olvasАsa sorАn hibАs Sun disklabel-t tartalmazС lemezt "
-#~ "talАltam. зj label lИtrehozАsАhoz Иs erre az eszkЖzre МrАsАhoz az fdisk-et "
-#~ "alkalmazza."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "A %s blokk eszkЖz olvasАsa sorАn hibАs Sun disklabel-t tartalmazС lemezt talАltam. зj label lИtrehozАsАhoz Иs erre az eszkЖzre МrАsАhoz az fdisk-et alkalmazza."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "HibАs Sun disklabel"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "A telepМtИs folytatАsАhoz hozzА kell rendelnie egy boot (/boot) partМciСt "
-#~ "valamelyik Linux Native (ext2) vagy RAID-1 partМciСhoz."
-
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Mivel a root (/) partМciСt RAID eszkЖzhЖz rendelte, a telepМtИs "
-#~ "folytatАsАhoz hozzА kell rendelnie egy boot (/boot) partМciСt egy Linux "
-#~ "Native (ext2) vagy RAID-1 partМciСhoz."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "A telepМtИs folytatАsАhoz hozzА kell rendelnie egy boot (/boot) partМciСt valamelyik Linux Native (ext2) vagy RAID-1 partМciСhoz."
+
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Mivel a root (/) partМciСt RAID eszkЖzhЖz rendelte, a telepМtИs folytatАsАhoz hozzА kell rendelnie egy boot (/boot) partМciСt egy Linux Native (ext2) vagy RAID-1 partМciСhoz."
diff --git a/po/id.po b/po/id.po
index fc8ca48f6..15696f7ba 100644
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: ID-rhinstall 1.4\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1998-09-22 13:40+0700\n"
"Last-Translator: Mohammad DAMT <mdamt@ldp.linux.or.id>\n"
"Language-Team: LDP Indonesia <http://ldp.linux.or.id>\n"
@@ -14,91 +14,67 @@ msgstr ""
"Content-Type: text/plain\n"
"Content-Transfer-Encoding: ISO-8859-1\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "Lanjutkan"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Kembali"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Lihat Help"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Sembunyikan help"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "Selesai"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "Help online"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "Pilih Bahasa"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Installer Red Hat Linux"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Installer Red Hat Linux"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Installer Red Hat Linux"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Installer Red Hat Linux"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr "Anda akan kehilangan data Anda! Benar ingin melanjutkan?"
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "Bahasa apa yang ingin dipakai saat proses instalasi?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "OK"
@@ -118,8 +94,7 @@ msgstr "/dev/ttyS2 (COM3 di DOS)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 di DOS)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Perangkat"
@@ -129,26 +104,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "Perangkat apa yang disambung ke mouse? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "Ok"
@@ -200,12 +156,7 @@ msgstr "Tipe Instalasi"
msgid "What type of system would you like to install?"
msgstr "Sistem macam mana yang hendak diinstal ?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Error"
@@ -226,33 +177,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Pilih paket yang hendak diupgrade"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Paket yang teelah diinstal dan paket lain yang juga harus diinstall telah "
-"dipilih. Apakah sekarang Anda ingin memilih paket yang hendak diupgrade ?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Paket yang teelah diinstal dan paket lain yang juga harus diinstall telah dipilih. Apakah sekarang Anda ingin memilih paket yang hendak diupgrade ?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "YA"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Tidak"
@@ -265,21 +197,15 @@ msgstr "Linux Red Hat"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Selamat datang di Linux Red Hat!\n"
"\n"
-"Proses instalasi ini dibahas secara detil di Linux Installation Guide yang "
-"tersedia di Red Hat Software. Bila Anda dapat membaca manual ini, sebaikya "
-"Anda baca dulu sebelum melanjutkan.\n"
+"Proses instalasi ini dibahas secara detil di Linux Installation Guide yang tersedia di Red Hat Software. Bila Anda dapat membaca manual ini, sebaikya Anda baca dulu sebelum melanjutkan.\n"
"\n"
-"Bila Anda telah membeli Red Hat Linux Official, maka segera daftarkan "
-"pembelian Anda di http://www.redhat.com."
+"Bila Anda telah membeli Red Hat Linux Official, maka segera daftarkan pembelian Anda di http://www.redhat.com."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -318,35 +244,21 @@ msgid "Hostname Configuration"
msgstr "Konfigurasi Hostname"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"Nama host adalah nama komputer Anda. Bila komputer Anda dihubungkan ke "
-"jaringan, maka biasanya namanya ditentukan oleh administrator jaringan."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "Nama host adalah nama komputer Anda. Bila komputer Anda dihubungkan ke jaringan, maka biasanya namanya ditentukan oleh administrator jaringan."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Hostname"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"Bootdisk membuat Anda dapat memboot Linux tanpa bergantung dari bootloader "
-"yang ada. Ini sangat berguna bila Anda tidak ingin menginstal LILO, atau "
-"bila ada sistem operasi lain menghapus LILO, atau bila LILO tidak dapat "
-"bekerja dengan baik pada sistem Anda. Bootdisk ini juga digunakan pada "
-"rescue disk Red Hat, sehingga proses pemulihan dari kesalahan sistem menjadi "
-"relatif lebih mudah\n"
+"Bootdisk membuat Anda dapat memboot Linux tanpa bergantung dari bootloader yang ada. Ini sangat berguna bila Anda tidak ingin menginstal LILO, atau bila ada sistem operasi lain menghapus LILO, atau bila LILO tidak dapat bekerja dengan baik pada sistem Anda. Bootdisk ini juga digunakan pada rescue disk Red Hat, sehingga proses pemulihan dari kesalahan sistem menjadi relatif lebih mudah\n"
"\n"
"Apakah Anda ingin membuat bootdisk sekarang?"
@@ -390,12 +302,8 @@ msgid "Installation to begin"
msgstr "Instalasi dimulai"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Log lengkap dari proses instalasi disimpan di /tmp/install.log setelah "
-"sistem diboot. Simpanlah file ini bila perlu."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Log lengkap dari proses instalasi disimpan di /tmp/install.log setelah sistem diboot. Simpanlah file ini bila perlu."
#: ../text.py:606
msgid "Complete"
@@ -405,42 +313,27 @@ msgstr "Selesai"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"Selamat, instalasi selesai.\n"
"\n"
-"Keluarkan disket dari drive dan tekan ENTER untuk reboot. Mengenai hal-hal "
-"perbaikan dari Red Hat Linux ini, silahkan baca Errata di "
-"http://www.redhat.com.\n"
+"Keluarkan disket dari drive dan tekan ENTER untuk reboot. Mengenai hal-hal perbaikan dari Red Hat Linux ini, silahkan baca Errata di http://www.redhat.com.\n"
"\n"
-"Cara-cara konfigurasi sistem tersedia setelah instalasi di the Official Red "
-"Hat Linux User's Guide."
+"Cara-cara konfigurasi sistem tersedia setelah instalasi di the Official Red Hat Linux User's Guide."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Masukkan disket kosong di drive pertama Anda. Data di disket ini akan "
-"dihapus saat membuat boot disk."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Masukkan disket kosong di drive pertama Anda. Data di disket ini akan dihapus saat membuat boot disk."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Lewatkan"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"Error terjadi saat membuat bootdisk. Silahkan diperiksa apakah ada disket "
-"kosong di drive."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "Error terjadi saat membuat bootdisk. Silahkan diperiksa apakah ada disket kosong di drive."
#: ../text.py:697
msgid "Package Installation"
@@ -503,18 +396,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> switch elemen | <Spasi> memilih | <F12> layar selanjutnya"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> switch elemen | <Spasi> memilih | <F12> layar selanjutnya"
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Selamat Datang"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "Partisi"
@@ -534,8 +423,7 @@ msgstr "Swap"
msgid "Filesystem Formatting"
msgstr "Sedang memformat sistem file"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "Konfigurasi LILO"
@@ -599,8 +487,7 @@ msgstr "Install sistem"
msgid "Installation Complete"
msgstr "Instalasi Beres"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "Konfigurasi LILO"
@@ -627,177 +514,174 @@ msgstr "Dibatalkan"
#: ../text.py:1040
msgid "I can't go to the previous step from here. You will have to try again."
-msgstr ""
-"Saya tidak dapat kembali ke tahap sebelumnya. Anda harus mengulangi lagi."
+msgstr "Saya tidak dapat kembali ke tahap sebelumnya. Anda harus mengulangi lagi."
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "tidak bisa menulis ke file %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "tidak bisa menulis ke file %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Membuat bootdisk..."
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Sedang memformat sistem file"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "Sedang membuat filesystem ext2 di /dev/%s"
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Membuat bootdisk..."
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Sisa waktu"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "Mengirimkan permintaan IP..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "tidak tahu"
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "Semuanya"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "tidak bisa menulis ke file %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Sisa waktu"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "Mencari paket yang hendak diupgrade..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr "Mulai diproses"
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Mengecek file yang hendak diinstall"
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Sisa waktu"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr "Membuat database RPM..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr "Gagal dalam pembuatan database RPM. Mungkin spasi disk habis?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Instalasi paket"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-"Sepertinya space hard drive Anda kurang untuk menginstall seluruh paketyang "
-"Anda pilih. Coba tambahkan lagi space di filesystem ini:\n"
+"Sepertinya space hard drive Anda kurang untuk menginstall seluruh paketyang Anda pilih. Coba tambahkan lagi space di filesystem ini:\n"
"\n"
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Lokasi Mount:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr "Spasi yg dibutuhkan"
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "Space disk"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Install"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "Test Konfigurasi ini"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "Card Video"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Video Ram"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Server"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Saya gagal mengambil ramdisk tahap kedua"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Monitor"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "Jangkauan Frekuensi Horizontal"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "Jangkauan Frekuensi Vertikal"
@@ -826,8 +710,7 @@ msgstr "Password"
msgid "Password (confirm)"
msgstr "Password (lagi)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Nama Lengkap"
@@ -835,15 +718,11 @@ msgstr "Nama Lengkap"
msgid "Add"
msgstr "Tambah"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Edit"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Hapus"
@@ -959,8 +838,7 @@ msgstr "Workstation GNOME"
msgid "KDE Workstation"
msgstr "Workstation KDE"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Server"
@@ -1004,7 +882,7 @@ msgstr "Varian"
msgid "Test your selection here:"
msgstr "Coba keyboardnya di sini:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Bahasa apa yang ingin dipakai saat proses instalasi?"
@@ -1044,19 +922,15 @@ msgstr "Buat bootdisk"
msgid "Do not install LILO"
msgstr "Jangan install LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Default"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Tipe partisi"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Label boot"
@@ -1064,43 +938,43 @@ msgstr "Label boot"
msgid "Emulate 3 Buttons"
msgstr "Emulasikan 3 tombol"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Konfigurasikan pakai DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Aktifkan saat boot"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "Alamat IP"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Netmask"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Network"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Broadcast"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Gateway"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "DNS Primer"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "DNS Sekunder"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "DNS Tersier"
@@ -1185,14 +1059,8 @@ msgid "Low Memory"
msgstr "Memory kurang"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Karena sepertinya Anda kurang memiliki memori di mesin ini, Sekarang kita "
-"perlu mengaktifkan swap secepatnya. Tetapi proses ini harus menuliskan "
-"partisi yang baru ke disk secepatnya. Ok ?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Karena sepertinya Anda kurang memiliki memori di mesin ini, Sekarang kita perlu mengaktifkan swap secepatnya. Tetapi proses ini harus menuliskan partisi yang baru ke disk secepatnya. Ok ?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1203,20 +1071,17 @@ msgstr "Partisi otomatis"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"Bila Anda tidak ingin melakukan ini, Anda bisa lanjutkan dgn instalasi "
-"partisi manual, atau bisa kembali ke awal dan lakukan instalasi custom."
+"Bila Anda tidak ingin melakukan ini, Anda bisa lanjutkan dgn instalasi partisi manual, atau bisa kembali ke awal dan lakukan instalasi custom."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Hapus data"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "Partisi manual"
@@ -1277,7 +1142,7 @@ msgstr "Jangkauan Frekuensi Vertikal"
msgid "Test failed"
msgstr "Test Gagal"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "Konfigurasi X Custom"
@@ -1285,60 +1150,43 @@ msgstr "Konfigurasi X Custom"
msgid "Bits per Pixel"
msgstr "Bits per pixel"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Test Konfigurasi ini"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"Biasanya hardware video akan dideteksi otomatis untuk menentukan setting "
-"terbaik untuk sistem Anda."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "Biasanya hardware video akan dideteksi otomatis untuk menentukan setting terbaik untuk sistem Anda."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "Hasil Deteksi:"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
msgstr "Monitor Anda tidak bisa dideteksi, silahkan pilih di daftar:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Gunakan login grafikal"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "Tidak Konfigurasikan X"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"Ada sistem yang harus memberikan option tambahan untuk kernel pada saat boot "
-"agar sistem berfungsi baik. Bila sistem ini juga demikian, ketikkan option "
-"kernelnya sekarang. Bila tidak, maka kosongkan saja."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "Ada sistem yang harus memberikan option tambahan untuk kernel pada saat boot agar sistem berfungsi baik. Bila sistem ini juga demikian, ketikkan option kernelnya sekarang. Bila tidak, maka kosongkan saja."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Dimana hendak diinstallkan bootloadernya?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Hapus"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Batal"
@@ -1347,24 +1195,12 @@ msgid "Edit Boot Label"
msgstr "Ganti label boot"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Boot manager yang digunakan Red Hat dapat juga digunakan untuk sistem "
-"operasi lain. Anda bisa menambahkan partisi yang Anda ingin gunakan untuk "
-"boot dan sertakan juga labelnya untuk masing-masing partisi"
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Boot manager yang digunakan Red Hat dapat juga digunakan untuk sistem operasi lain. Anda bisa menambahkan partisi yang Anda ingin gunakan untuk boot dan sertakan juga labelnya untuk masing-masing partisi"
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Ada beberapa paket yang Anda pilih ternyata memerlukan paket yang lainnya "
-"namun belum Anda pilih. Tekan Ok bila Anda setuju untuk menginstall paket "
-"lain tersebut."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Ada beberapa paket yang Anda pilih ternyata memerlukan paket yang lainnya namun belum Anda pilih. Tekan Ok bila Anda setuju untuk menginstall paket lain tersebut."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1372,32 +1208,19 @@ msgstr "Setup Disk"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid adalah alat untuk mempartisi dan setting mount point. Program ini "
-"dirancang sedemikian rupa untuk memudahkan proses partisi, namun secanggih "
-"program partisi tradisional (misalnya fdisk). Tetapi adakalanya fdisk lebih "
-"enak digunakan daripada Disk Druid.\n"
+"Disk Druid adalah alat untuk mempartisi dan setting mount point. Program ini dirancang sedemikian rupa untuk memudahkan proses partisi, namun secanggih program partisi tradisional (misalnya fdisk). Tetapi adakalanya fdisk lebih enak digunakan daripada Disk Druid.\n"
"\n"
"Program mana yang hendak Anda gunakan?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Untuk menginstal Red Hat Linux, Anda harus paling tidak memiliki satu "
-"partisi dengan ukuran minimal 150 MB untuk Linux. Saya sarankan untuk "
-"membuat partisi tersebut di salah satu dari dua hard disk pertama di sistem "
-"agar Anda dapat langsung memboot ke Linux dengan LILO."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Untuk menginstal Red Hat Linux, Anda harus paling tidak memiliki satu partisi dengan ukuran minimal 150 MB untuk Linux. Saya sarankan untuk membuat partisi tersebut di salah satu dari dua hard disk pertama di sistem agar Anda dapat langsung memboot ke Linux dengan LILO."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Selesai"
@@ -1406,15 +1229,8 @@ msgid "Continue"
msgstr "Lanjutkan"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Partisi mana yang ingin diformat? Saya menyarankan untuk memformat semua "
-"partisi sistem, termasuk /, /usr, dan /var. Partisi /home atau /usr/local "
-"tidak perlu diformat, bila sudah dikonfigurasikan sebelumnya."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Partisi mana yang ingin diformat? Saya menyarankan untuk memformat semua partisi sistem, termasuk /, /usr, dan /var. Partisi /home atau /usr/local tidak perlu diformat, bila sudah dikonfigurasikan sebelumnya."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1434,14 +1250,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Buatlah password root. Anda harus menuliskannya dua kali agar Anda ingat dan "
-"tidak salah ketik. Ingatlah selalu bahwa password root ini sangat penting "
-"dalam keamanan sistem!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Buatlah password root. Anda harus menuliskannya dua kali agar Anda ingat dan tidak salah ketik. Ingatlah selalu bahwa password root ini sangat penting dalam keamanan sistem!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1492,24 +1302,12 @@ msgid "This user id already exists. Choose another."
msgstr "User ini sudah ada. Coba cari nama lain."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"Anda harus gunakan account user biasa untuk menggunakan sistem ini. Jangan "
-"gunakan account root, kalau kebiasaan pakai account root nanti malah bisa "
-"merusak konfigurasi sistem."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "Anda harus gunakan account user biasa untuk menggunakan sistem ini. Jangan gunakan account root, kalau kebiasaan pakai account root nanti malah bisa merusak konfigurasi sistem."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"User account macam mana yang hendak dipasang di sistem? Anda mesti paling "
-"tidak punya satu account yang bukan root, kalau sistem ini nantinya jadi "
-"sistem multi user, bikin banyak aja."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "User account macam mana yang hendak dipasang di sistem? Anda mesti paling tidak punya satu account yang bukan root, kalau sistem ini nantinya jadi sistem multi user, bikin banyak aja."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1547,8 +1345,7 @@ msgstr "atau gunakan:"
msgid "Request server via broadcast"
msgstr "Ambil server pakai broadcast"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Lokasi mount tidak dapat digunakan"
@@ -1617,42 +1414,26 @@ msgid "Too Many Drives"
msgstr "Drive terlalu banyak"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Anda memiliki hard disk lebih dari yang saya bisa bantu. Silahkan gunakan "
-"program fdisk untuk mensetup drive ini, dan beritahukan ke Red Hat Software "
-"bahwa Anda membaca pesan ini sekarang."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Anda memiliki hard disk lebih dari yang saya bisa bantu. Silahkan gunakan program fdisk untuk mensetup drive ini, dan beritahukan ke Red Hat Software bahwa Anda membaca pesan ini sekarang."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Tidak ditemukan drive apa pun"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Ada error - saya tidak bisa menemukan device untuk membuat filesystem. "
-"Segera periksa hardware Anda."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Ada error - saya tidak bisa menemukan device untuk membuat filesystem. Segera periksa hardware Anda."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
msgstr "Ada error sewaktu membaca tabel partisi pada device blok %s, yaitu "
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Tabel partisi di device %s rusak. Untuk membuat partisi baru maka harus "
-"diformat dulu, dengan resiko SEMUA DATA HILANG di drive ini."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Tabel partisi di device %s rusak. Untuk membuat partisi baru maka harus diformat dulu, dengan resiko SEMUA DATA HILANG di drive ini."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1675,15 +1456,8 @@ msgid "BSD Disklabel"
msgstr "Disklabel BSD"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"Sebuah disk dengan disklabel BSD ditemukan. Instalasi Red Hat hanya bisa "
-"mengenal disklabel BSD dalam mode read-only, jadi Anda harus menggunakan "
-"instalasi khusus dan fdisk (jangan Disk Druid) untuk mesin dengan disklabel "
-"BSD."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "Sebuah disk dengan disklabel BSD ditemukan. Instalasi Red Hat hanya bisa mengenal disklabel BSD dalam mode read-only, jadi Anda harus menggunakan instalasi khusus dan fdisk (jangan Disk Druid) untuk mesin dengan disklabel BSD."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1710,10 +1484,7 @@ msgstr "Hapus Partisi"
msgid "Are you sure you want to delete this partition?"
msgstr "Benar ingin menghapus partisi ini?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Edit Partisi"
@@ -1753,27 +1524,20 @@ msgstr "Tipe partisi:"
msgid "Allowable Drives:"
msgstr "Drive yang digunakan:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Lokasi Mount Tidak Ada"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Anda belum memilih lokasi mount untuk partisi ini. Benar ingin melanjutkan?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Anda belum memilih lokasi mount untuk partisi ini. Benar ingin melanjutkan?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Lokasi Mount Salah"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
msgstr "Lokasi mount tidak sah atau sudah digunakan. Silahkan ulangi lagi."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
@@ -1781,24 +1545,16 @@ msgid "Size Error"
msgstr "Ukuran Salah"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"Ukuran partisi salah, ukuran haruslah lebih besar atau sama dengan nol (0), "
-"dan dituliksan dalam format bilangan bulat desimal (basis 10)."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "Ukuran partisi salah, ukuran haruslah lebih besar atau sama dengan nol (0), dan dituliksan dalam format bilangan bulat desimal (basis 10)."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Ukuran Swap Salah"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
msgstr "Partisi swap yang Anda buat terlalu besar (maksimum %ld MB)."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
@@ -1807,8 +1563,7 @@ msgstr "Tidak ada drive RAID"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
"Anda mengkonfigurasikan partisi RAID tanpa melakukan constraining di drive.\n"
@@ -1819,12 +1574,8 @@ msgid "Close"
msgstr "Tutup"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Anda mengkonfigurasikan partisi RAID tanpa melakukan constraining di drive. "
-"Silahkan pilih drive yang hendak di constrain"
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Anda mengkonfigurasikan partisi RAID tanpa melakukan constraining di drive. Silahkan pilih drive yang hendak di constrain"
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1834,27 +1585,16 @@ msgstr "Entry RAID tidak komplit"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"Device raid /dev/%s sekarang berisi partisi yang belum dialokasikan. Device "
-"radi /dev/%s akan didekomposisi menjadi partisi komponennya. silahkan "
-"komposisikan ulang device dgn partisi yang telah dialokasikan."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "Device raid /dev/%s sekarang berisi partisi yang belum dialokasikan. Device radi /dev/%s akan didekomposisi menjadi partisi komponennya. silahkan komposisikan ulang device dgn partisi yang telah dialokasikan."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Partisi belum dialokasikan"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
msgstr "Ada partisi yang belum dialokasikan di daftar berikut."
#: ../libfdisk/gnomefsedit.c:1673
@@ -1878,9 +1618,7 @@ msgid "You have not selected a mount point. A mount point is required."
msgstr "Anda belum memilih lokasi mount untuk partisi ini. Saya perlu ini."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
+msgid "The mount point requested is already in use. Please select a valid mount point."
msgstr "Lokasi mount tidak sah atau sudah digunakan. Silahkan ulangi lagi."
#: ../libfdisk/gnomefsedit.c:1901
@@ -1888,12 +1626,8 @@ msgid "Booting From RAID Warning"
msgstr "Warning boot dari RAID"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Anda menentukan device raid ini sebagai partisi boot. Silahkan periksa "
-"apakah semua komponen partisi bisa diboot."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Anda menentukan device raid ini sebagai partisi boot. Silahkan periksa apakah semua komponen partisi bisa diboot."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1909,23 +1643,16 @@ msgstr "gunakan device RAID"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"Device RAID \"/dev/%s\" sudah dikonfigurasikan sebagai raid. Pilih yang lain "
-"lagi."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "Device RAID \"/dev/%s\" sudah dikonfigurasikan sebagai raid. Pilih yang lain lagi."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Partisi tidak cukup"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
-msgstr ""
-"Anda belum mengkonfigurasikan partisi untuk tipe RAID yang telah Anda pilih."
+msgid "You have not configured enough partitions for the RAID type you have selected."
+msgstr "Anda belum mengkonfigurasikan partisi untuk tipe RAID yang telah Anda pilih."
#: ../libfdisk/gnomefsedit.c:1942
msgid "Illegal /boot RAID Type"
@@ -1937,13 +1664,8 @@ msgstr "Partisi boot (/boot) hanya boleh untuk RAID-1 saja."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"Partisi %s adalah partisi yang sudah ada di device RAID ini. Mount point "
-"diset ke /boot. Apakah benar partisi ini bisa melakukan boot?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "Partisi %s adalah partisi yang sudah ada di device RAID ini. Mount point diset ke /boot. Apakah benar partisi ini bisa melakukan boot?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2007,12 +1729,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "Ada partisi yang belum dialokasikan..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Anda harus membuat partisi root (/) ke partisi Linux Native (ext2) atau "
-"partisi RAID untuk instal."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Anda harus membuat partisi root (/) ke partisi Linux Native (ext2) atau partisi RAID untuk instal."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2063,9 +1781,7 @@ msgid "No Root Partition"
msgstr "Partisi root takada"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
msgstr "Anda harus membuat partisi root (/) ke partisi Linux Native (ext2)."
#: ../libfdisk/newtfsedit.c:1445
@@ -2078,13 +1794,11 @@ msgstr "Anda harus membuat partisi swap."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"Ada partisi yang belum dialokasikan. Bila Anda keluar sekarang maka partisi "
-"tersebut tidak ditulis ke disk.\n"
+"Ada partisi yang belum dialokasikan. Bila Anda keluar sekarang maka partisi tersebut tidak ditulis ke disk.\n"
"\n"
"Benar ingin keluar?"
@@ -2121,20 +1835,14 @@ msgid "Miscellaneous"
msgstr "Lain-lain"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Module ini bisa menggunakan parameter khusus. Bila Anda tidak tahu "
-"parameternya apa, lewati saja layar ini, tekan tombol \"OK\" sekarang."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Module ini bisa menggunakan parameter khusus. Bila Anda tidak tahu parameternya apa, lewati saja layar ini, tekan tombol \"OK\" sekarang."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "Parameter Modul"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "Perangkat"
@@ -2147,20 +1855,12 @@ msgid "Failed to mount floppy disk."
msgstr "Saya gagal memount floppy disk."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"Disket yang Anda masukkan tadi tidak berisi disk driver untuk Linux Red Hat "
-"ini."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "Disket yang Anda masukkan tadi tidak berisi disk driver untuk Linux Red Hat ini."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Driver mana yang hendak dicoba? Bila drivernya tidak ada di daftar, dan Anda "
-"memiliki disk driver lain, silahkan tekan F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Driver mana yang hendak dicoba? Bila drivernya tidak ada di daftar, dan Anda memiliki disk driver lain, silahkan tekan F2."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2189,15 +1889,15 @@ msgstr "Error saat membaca isi file kickstart %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Error pada baris %d di file kickstart %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "Pilih bahasanya:"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Tipe Keyboard"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Keyboard mana yang Anda punya?"
@@ -2213,137 +1913,116 @@ msgstr "Image NFS"
msgid "Hard drive"
msgstr "Hard Disk"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Selamat Datang di Linux Red Hat!"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> switch elemen | <Spasi> memilih | <F12> layar selanjutnya"
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> switch elemen | <Spasi> memilih | <F12> layar selanjutnya"
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Perangkat apa yang hendak dimasukkan ?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "Saya menemukan perangkat berikut ini di sistem:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "Tambah Perangkat"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"Sekarang belum ada device driver yang diload untuk sistem ini. Mau meloadnya "
-"sekarang ?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "Sekarang belum ada device driver yang diload untuk sistem ini. Mau meloadnya sekarang ?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "Sedang Meload"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "Sedang mengambil ramdisk tahap kedua..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Error saat membaca ramdisk."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Hard Disk"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"Sekarang belum ada hard disk di sistem Anda lho! Apakah ingin "
-"mengkonfigurasikan perangkat tambahan lain?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "Sekarang belum ada hard disk di sistem Anda lho! Apakah ingin mengkonfigurasikan perangkat tambahan lain?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Partisi mana dan di direktori mana yang berisi file-file instalasi "
-"RedHat/RPMS dan direktori RedHat/base ? Kalau di disk drive yang ada "
-"RedHatnya tidak kelihatan di sini, silahkan pencet F2 untuk tambah device "
-"lagi."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Partisi mana dan di direktori mana yang berisi file-file instalasi RedHat/RPMS dan direktori RedHat/base ? Kalau di disk drive yang ada RedHatnya tidak kelihatan di sini, silahkan pencet F2 untuk tambah device lagi."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Direktori yang berisi Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Pilih Partisinya"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "Device %s kelihatannya tidak berisi instalasi Red Hat tuh."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"Saya tidak dapat menemukan CDROM Red Hat LInux di drive CD Anda nih. "
-"Silahkan masukkan CDnya dan tekan \"OK\" untuk mengulangi."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "Saya tidak dapat menemukan CDROM Red Hat LInux di drive CD Anda nih. Silahkan masukkan CDnya dan tekan \"OK\" untuk mengulangi."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Direktori ini tidak memiliki tree Red Hat"
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Saya tak dapat memount direktori tersebut dari server"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Saya gagal mengambil ramdisk tahap kedua"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "Metode Rescue"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "Metode Instalasi"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Tipe media yang berisi image rescue itu apa?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Media macam mana yang berisi paket yang hendak diinstal ?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Saya tak dapat menemukan ks.cfg di floppy."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "Card PC"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "Inisialisasi PC Card..."
@@ -2374,12 +2053,8 @@ msgstr ""
" Red Hat Linux"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Sekarang masukkan alamat IP untuk mesin ini. Tiap IP harus dituliskandalam "
-"bentuk notasi desimal bertitik (misalnya, 202.159.123.25)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Sekarang masukkan alamat IP untuk mesin ini. Tiap IP harus dituliskandalam bentuk notasi desimal bertitik (misalnya, 202.159.123.25)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2443,11 +2118,8 @@ msgid "Network device"
msgstr "Device Network"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> switch elemen | <Spasi> memilih | <F12> layar selanjutnya"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> switch elemen | <Spasi> memilih | <F12> layar selanjutnya"
#: ../loader/net.c:699
#, c-format
@@ -2527,21 +2199,12 @@ msgid "You must enter a directory."
msgstr "Masukkan nama direktorinya."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Bila Anda menggunakan ftp non-anonim, segera masukkan nama login dan "
-"passwordnya. Bila Anda menggunakan proxy FTP, maka tuliskan nama serverproxy "
-"FTPnya."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Bila Anda menggunakan ftp non-anonim, segera masukkan nama login dan passwordnya. Bila Anda menggunakan proxy FTP, maka tuliskan nama serverproxy FTPnya."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"Bila Anda menggunakan proxy HTTP, maka tuliskan nama server proxy HTTPnya."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "Bila Anda menggunakan proxy HTTP, maka tuliskan nama server proxy HTTPnya."
#: ../loader/urls.c:295
msgid "Account name:"
@@ -2567,33 +2230,17 @@ msgstr "Port Proxy HTTP:"
msgid "Loading SCSI driver"
msgstr "Meload Driver SCSI..."
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "Ada disk dengan disklabel Sun yang corrupt ditemukan pada saat membaca "
-#~ "device %s. Ada harus menggunakan fdisk untuk membuat dan menuliskan label "
-#~ "baru ke device ini."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "Ada disk dengan disklabel Sun yang corrupt ditemukan pada saat membaca device %s. Ada harus menggunakan fdisk untuk membuat dan menuliskan label baru ke device ini."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Sun disklabel Rusak"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Anda harus membuat partisi root (/) ke partisi Linux Native (ext2) atau "
-#~ "partisi RAID-1 untuk install."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Anda harus membuat partisi root (/) ke partisi Linux Native (ext2) atau partisi RAID-1 untuk install."
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Karena Anda sudah alokasikan partisi root (/) ke device RAID, maka Anda "
-#~ "harus pula alokasikan partisi boot (/boot) ke partisi Linux native (ext2) "
-#~ "atau ke partisi RAID-1."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Karena Anda sudah alokasikan partisi root (/) ke device RAID, maka Anda harus pula alokasikan partisi boot (/boot) ke partisi Linux native (ext2) atau ke partisi RAID-1."
#~ msgid "Use fdisk to format drives"
#~ msgstr "Gunakan fdisk untuk memformat"
@@ -2670,27 +2317,11 @@ msgstr "Meload Driver SCSI..."
#~ msgid "I can't find the device anywhere on your system!"
#~ msgstr "Maaf, saya tidak menemukan device tersebut di sistem ini!"
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "Kadang kala, driver %s harus diberikan argumen tambahan agar bisa dikenali. "
-#~ "Nah apakah sekarang Anda ingin menuliskan argumen tersebut, atau biarkan "
-#~ "driver itu mendeteksi sendiri ? Bila gagal, biasanya pendeteksian akan "
-#~ "menyebabkan mesin menjadi hang, tetapi tidak akan sampai merusak hardwarenya."
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "Kadang kala, driver %s harus diberikan argumen tambahan agar bisa dikenali. Nah apakah sekarang Anda ingin menuliskan argumen tersebut, atau biarkan driver itu mendeteksi sendiri ? Bila gagal, biasanya pendeteksian akan menyebabkan mesin menjadi hang, tetapi tidak akan sampai merusak hardwarenya."
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "Sering kali, driver %s membutuhkan argumen tambahan agar bisa dikenali. Anda "
-#~ "bisa menuliskan argumen tersebut. Proses ini bisa menyebabkan sistem menjadi "
-#~ "hang, namun seharusnya tidak merusak hardwarenya."
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "Sering kali, driver %s membutuhkan argumen tambahan agar bisa dikenali. Anda bisa menuliskan argumen tersebut. Proses ini bisa menyebabkan sistem menjadi hang, namun seharusnya tidak merusak hardwarenya."
#~ msgid "Module options:"
#~ msgstr "Pilihan Modul:"
@@ -2752,12 +2383,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "PCMCIA Disk"
#~ msgstr "Disk PCMCIA"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Saya gagal saat memount disketnya. Tolong masukkan saja disk PCMCIA Red "
-#~ "Hat,atau tekan Batal untuk memilih proses instalasi yang lain."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Saya gagal saat memount disketnya. Tolong masukkan saja disk PCMCIA Red Hat,atau tekan Batal untuk memilih proses instalasi yang lain."
#~ msgid "Loading PCMCIA Support"
#~ msgstr "Mengambil instalasi PCMCIA"
@@ -2765,12 +2392,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "Supplemental Disk"
#~ msgstr "Disket Supplemen"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Gagal dalam memount floppy. Silahkan masukkan disket Red Hat Supplemen atau "
-#~ "pilih Batal untuk memilih proses instalasi lain."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Gagal dalam memount floppy. Silahkan masukkan disket Red Hat Supplemen atau pilih Batal untuk memilih proses instalasi lain."
#~ msgid "Loading Supplemental Disk..."
#~ msgstr "Sedang meload disket supplemen..."
@@ -2778,27 +2401,14 @@ msgstr "Meload Driver SCSI..."
#~ msgid "Driver Disk"
#~ msgstr "Disket Driver"
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "Metode instalasi ini membutuhkan disket driver. Silahkan ganti disket yang "
-#~ "ada di drive dengan Disket Module Red Hat."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "Metode instalasi ini membutuhkan disket driver. Silahkan ganti disket yang ada di drive dengan Disket Module Red Hat."
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Saya gagal saat memount disketnya. Tolong masukkan saja disket Module Red "
-#~ "Hat,atau tekan Batal untuk memilih proses instalasi yang lain."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Saya gagal saat memount disketnya. Tolong masukkan saja disket Module Red Hat,atau tekan Batal untuk memilih proses instalasi yang lain."
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "Metode instalasi ini membutuhkan disket yang lain lagi. Silahkan ganti "
-#~ "disket yang ada di drive dengan Disket Red Hat Supplemen."
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "Metode instalasi ini membutuhkan disket yang lain lagi. Silahkan ganti disket yang ada di drive dengan Disket Red Hat Supplemen."
#~ msgid "hd command"
#~ msgstr "perintah hd"
@@ -2851,14 +2461,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "mount failed: %s"
#~ msgstr "mount gagal: %s"
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "Tabel partisi pada device %s rusak. Untuk membuat partisi baru, ini harus "
-#~ "diinisialisai dulu. Anda boleh memberikan argumen \"zerombr yes\" di file "
-#~ "kickstart agar hal ini dilakukan secara otomatis"
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "Tabel partisi pada device %s rusak. Untuk membuat partisi baru, ini harus diinisialisai dulu. Anda boleh memberikan argumen \"zerombr yes\" di file kickstart agar hal ini dilakukan secara otomatis"
#~ msgid "Zero Partition Table"
#~ msgstr "Tidak ada Tabel Partisi"
@@ -2868,8 +2472,7 @@ msgstr "Meload Driver SCSI..."
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "Perintah zerombr kickstart %s salah\n"
-#~ "Seharusnya 'on', '1', atau 'yes' untuk mengaktifkan, atau 'off', '0', atau "
-#~ "'no' untuk menonaktifkan."
+#~ "Seharusnya 'on', '1', atau 'yes' untuk mengaktifkan, atau 'off', '0', atau 'no' untuk menonaktifkan."
#~ msgid "Clear Partition Command"
#~ msgstr "Hapus Perintah Partisi"
@@ -2886,12 +2489,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "Option Ignored"
#~ msgstr "Option diabaikan"
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "Pilihan --maxsize untuk partisi %s diabaikan. Cek sendiri apakah sudah lebih "
-#~ "dari --size atau belum."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "Pilihan --maxsize untuk partisi %s diabaikan. Cek sendiri apakah sudah lebih dari --size atau belum."
#~ msgid "The mount point %s is already in use."
#~ msgstr "Lokasi mount %s sudah terpakai."
@@ -2902,12 +2501,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "The partition %s could not be allocated."
#~ msgstr "Partisi %s tidak dapat dialokasikan."
-#~ msgid ""
-#~ "There are partitions that can be resized nondestructively to make room for "
-#~ "your Red Hat Linux installation. Do you want to resize these partitions now?"
-#~ msgstr ""
-#~ "Ada partisi yang dapat dirubah ukurannya tanpa menghapus isi datanya. Apakah "
-#~ "Anda hendak melakukan perubahan ukuran partisi ini ?"
+#~ msgid "There are partitions that can be resized nondestructively to make room for your Red Hat Linux installation. Do you want to resize these partitions now?"
+#~ msgstr "Ada partisi yang dapat dirubah ukurannya tanpa menghapus isi datanya. Apakah Anda hendak melakukan perubahan ukuran partisi ini ?"
#~ msgid "Success"
#~ msgstr "Sukses"
@@ -2972,19 +2567,11 @@ msgstr "Meload Driver SCSI..."
#~ msgid "Scanning hard drives..."
#~ msgstr "Mencari hard disk..."
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "Anda tidak memiliki hard disk ya? Atau mungkin lupa mengkonfigurasi "
-#~ "kontroler SCSI."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "Anda tidak memiliki hard disk ya? Atau mungkin lupa mengkonfigurasi kontroler SCSI."
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "Untuk menginstall Red Hat Linux, Anda paling tidak memiliki satu partisi "
-#~ "berukuran 150 MB khusus untuk Linux."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "Untuk menginstall Red Hat Linux, Anda paling tidak memiliki satu partisi berukuran 150 MB khusus untuk Linux."
#~ msgid "Partition Disks"
#~ msgstr "Disk Partisi"
@@ -2993,21 +2580,13 @@ msgstr "Meload Driver SCSI..."
#~ msgstr "Harus direboot"
#~ msgid ""
-#~ "The kernel is unable to read your new partitioning information, probably "
-#~ "because you modified extended partitions. While this is not critical, you "
-#~ "must reboot your machine before proceeding. Insert the Red Hat boot disk now "
-#~ "and press Return to reboot your system.\n"
+#~ "The kernel is unable to read your new partitioning information, probably because you modified extended partitions. While this is not critical, you must reboot your machine before proceeding. Insert the Red Hat boot disk now and press Return to reboot your system.\n"
#~ "\n"
-#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an "
-#~ "empty SCSI drive can also cause this problem."
+#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an empty SCSI drive can also cause this problem."
#~ msgstr ""
-#~ "Kernel tidak dapat membaca partisi, mungkin ini disebabkan karena Anda telah "
-#~ "memodifikasi partisi extended. Tapi hal ini tidak begitu penting, Anda harus "
-#~ "memboot sistem sebelum melanjutkan. Sekarang masukkan boot disk dari Red Hat "
-#~ "dan tekan ENTER untuk mulai reboot.\n"
+#~ "Kernel tidak dapat membaca partisi, mungkin ini disebabkan karena Anda telah memodifikasi partisi extended. Tapi hal ini tidak begitu penting, Anda harus memboot sistem sebelum melanjutkan. Sekarang masukkan boot disk dari Red Hat dan tekan ENTER untuk mulai reboot.\n"
#~ "\n"
-#~ "Bila Anda menggunakan ZIP atau JAZ drive, masukkan dulu disknya ke dalam "
-#~ "drive."
+#~ "Bila Anda menggunakan ZIP atau JAZ drive, masukkan dulu disknya ke dalam drive."
#~ msgid "lilo command"
#~ msgstr "perintah lilo"
@@ -3018,26 +2597,14 @@ msgstr "Meload Driver SCSI..."
#~ msgid "PCMCIA Support"
#~ msgstr "Dukungan PCMCIA"
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "Apakah Anda harus menggunakan perangkat PCMCIA saat instalasi? Jawab tidak "
-#~ "bila Anda hanya butuh PCMCIA setelah install. Anda tidak perlu menggunakan "
-#~ "PCMCIA bila Anda sekarang menginstall Red Hat Linux pada laptop dengan "
-#~ "built-in CDROM."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "Apakah Anda harus menggunakan perangkat PCMCIA saat instalasi? Jawab tidak bila Anda hanya butuh PCMCIA setelah install. Anda tidak perlu menggunakan PCMCIA bila Anda sekarang menginstall Red Hat Linux pada laptop dengan built-in CDROM."
#~ msgid "PCMCIA Support Disk"
#~ msgstr "Disket untuk PCMCIA"
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "Untuk menggunakan PCMCIA, maka ganti disket boot pada drive sekarang dengan "
-#~ "disket PCMCIA Red Hat."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "Untuk menggunakan PCMCIA, maka ganti disket boot pada drive sekarang dengan disket PCMCIA Red Hat."
#~ msgid "Starting PCMCIA services..."
#~ msgstr "Mulai menggunakan PCMCIA..."
@@ -3116,14 +2683,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "Upgrade log"
#~ msgstr "Log upgrade"
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "Log lengkap dari proses upgrade disimpan di /tmp/install.log setelah sistem "
-#~ "diboot. Bacalah file ini untuk memastikan proses upgrade berjalan dengan "
-#~ "baik."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "Log lengkap dari proses upgrade disimpan di /tmp/install.log setelah sistem diboot. Bacalah file ini untuk memastikan proses upgrade berjalan dengan baik."
#~ msgid "rootpw command"
#~ msgstr "perintah rootpw"
@@ -3140,19 +2701,11 @@ msgstr "Meload Driver SCSI..."
#~ msgid "Installation Path"
#~ msgstr "Path instalasi"
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "Apakah Anda ingin menginstall sistem baru ataukah upgrade sistem ? Untuk "
-#~ "upgrade, Anda harus sudah memiliki Red Hat 2.0 ke atas pada sistem Anda"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "Apakah Anda ingin menginstall sistem baru ataukah upgrade sistem ? Untuk upgrade, Anda harus sudah memiliki Red Hat 2.0 ke atas pada sistem Anda"
-#~ msgid ""
-#~ "What type of machine are you installing? For maximum flexibility, choose "
-#~ "\"Custom\"."
-#~ msgstr ""
-#~ "Mesin tipe apa yang hendak Anda instal? Untuk lebih enaknya, lebih baik "
-#~ "pilih \"Bebas\"."
+#~ msgid "What type of machine are you installing? For maximum flexibility, choose \"Custom\"."
+#~ msgstr "Mesin tipe apa yang hendak Anda instal? Untuk lebih enaknya, lebih baik pilih \"Bebas\"."
#~ msgid "Converting RPM database..."
#~ msgstr "Mengkonversi database RPM..."
@@ -3166,27 +2719,17 @@ msgstr "Meload Driver SCSI..."
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
#~ msgstr ""
#~ "Ada error pada tahap \"%s\" di proses instalasi ini.\n"
#~ "\n"
-#~ "Anda boleh mengulangi tahap ini, kembali ke tahap awal instalasi, atau "
-#~ "melihat menu instalasi agar Anda bisa berpindah ke tahap yang Anda inginkan. "
-#~ "Namun saya tidak menganjurkan Anda menggunakan menu, kecuali Anda sudah "
-#~ "sangat familiar dengan Red Hat Linux. Nah sekarang bagaimana?"
+#~ "Anda boleh mengulangi tahap ini, kembali ke tahap awal instalasi, atau melihat menu instalasi agar Anda bisa berpindah ke tahap yang Anda inginkan. Namun saya tidak menganjurkan Anda menggunakan menu, kecuali Anda sudah sangat familiar dengan Red Hat Linux. Nah sekarang bagaimana?"
#~ msgid " Continue with install"
#~ msgstr " Lanjutkan instalasi"
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
-#~ msgstr ""
-#~ "Tahap mana yang ingin Anda jalankan? Tahap yang sudah selesai dilakukan "
-#~ "ditandai dengan *."
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
+#~ msgstr "Tahap mana yang ingin Anda jalankan? Tahap yang sudah selesai dilakukan ditandai dengan *."
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
#~ msgstr "Masukkan disket kosong di drive /dev/fd0"
@@ -3203,9 +2746,7 @@ msgstr "Meload Driver SCSI..."
#~ msgid "Kernel"
#~ msgstr "Kernel"
-#~ msgid ""
-#~ "Please insert your boot disk in your first disk drive if it's not already "
-#~ "present."
+#~ msgid "Please insert your boot disk in your first disk drive if it's not already present."
#~ msgstr "Masukkan dulu boot disknya ke drive ya."
#~ msgid "Copying kernel from floppy..."
@@ -3256,12 +2797,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "No Swap Space"
#~ msgstr "Tidak ada area swap"
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "Partisi mana yang Anda hendak gunakan sebagai area swap? Hati-hati karena "
-#~ "proses ini akan menghapus/menimpa apa pun yang ada di partisi ini."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "Partisi mana yang Anda hendak gunakan sebagai area swap? Hati-hati karena proses ini akan menghapus/menimpa apa pun yang ada di partisi ini."
#~ msgid "Active Swap Space"
#~ msgstr "Area swap aktif"
@@ -3278,12 +2815,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "Ethernet Probe"
#~ msgstr "Pencarian Ethernet"
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
-#~ msgstr ""
-#~ "Saya tidak menemukan satu ethernet card pun di sistem Anda. Silahkantekan "
-#~ "<ENTER> untuk mengkonfigurasi secara manual."
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
+#~ msgstr "Saya tidak menemukan satu ethernet card pun di sistem Anda. Silahkantekan <ENTER> untuk mengkonfigurasi secara manual."
#~ msgid "Static IP address"
#~ msgstr "Alamat IP statis"
@@ -3300,12 +2833,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "kickstart network command is missing ip address"
#~ msgstr "perintah kickstart membutuhkan alamat IP"
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
-#~ msgstr ""
-#~ "Bagaimana cara IP Anda diset ? Bila system administrator Andamemberikan "
-#~ "alamat IP tertentu, maka pilihlah IP statis."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
+#~ msgstr "Bagaimana cara IP Anda diset ? Bila system administrator Andamemberikan alamat IP tertentu, maka pilihlah IP statis."
#~ msgid "Sending BOOTP request..."
#~ msgstr "Mengirimkan permintaan BOOTP..."
@@ -3319,23 +2848,11 @@ msgstr "Meload Driver SCSI..."
#~ msgid "cannot open file: %s"
#~ msgstr "saya tidak dapat membuka file: %s"
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
-#~ msgstr ""
-#~ "Saya tidak dapat mencari nama host mesin ini. Silahkan tekan <ENTER> untuk "
-#~ "menuliskan nama host mesin ini."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
+#~ msgstr "Saya tidak dapat mencari nama host mesin ini. Silahkan tekan <ENTER> untuk menuliskan nama host mesin ini."
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
-#~ msgstr ""
-#~ "Silahkan tuliskan nama domain, nama host, dan alamat IP dari nameserver "
-#~ "Anda. Nama host haruslah dalam bentuk FQDN (Fully qualified host name), "
-#~ "misalnya sipalui.linux.or.id. Bila Anda tidak memiliki nameserver, maka "
-#~ "jangan tuliskan (kosongkan saja)."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
+#~ msgstr "Silahkan tuliskan nama domain, nama host, dan alamat IP dari nameserver Anda. Nama host haruslah dalam bentuk FQDN (Fully qualified host name), misalnya sipalui.linux.or.id. Bila Anda tidak memiliki nameserver, maka jangan tuliskan (kosongkan saja)."
#~ msgid "Host name:"
#~ msgstr "Nama host:"
@@ -3358,11 +2875,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "LAN networking has already been configured. Do you want to:"
#~ msgstr "Jaringan LAN telah dikonfigurasi. Apakah Anda ingin:"
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
-#~ msgstr ""
-#~ "Apakah Anda ingin mengkonfigurasikan LAN (bukan dialup) untuk sistem ini?"
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
+#~ msgstr "Apakah Anda ingin mengkonfigurasikan LAN (bukan dialup) untuk sistem ini?"
#~ msgid "Cannot open components file: %s"
#~ msgstr "Saya tidak bisa membuka file komponen: %s"
@@ -3397,13 +2911,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "GNOME"
#~ msgstr "GNOME"
-#~ msgid ""
-#~ "Would you like to have the GNOME desktop installed? It provides an easy to "
-#~ "use interface, including a drag and drop capability and an integrated help "
-#~ "system."
-#~ msgstr ""
-#~ "Apakah Anda hendak menginstall GNOME? GNOME menyediakan interface yang mudah "
-#~ "digunakan, termasuk fasilitas drag and drop dan help yang sudah terintegrasi."
+#~ msgid "Would you like to have the GNOME desktop installed? It provides an easy to use interface, including a drag and drop capability and an integrated help system."
+#~ msgstr "Apakah Anda hendak menginstall GNOME? GNOME menyediakan interface yang mudah digunakan, termasuk fasilitas drag and drop dan help yang sudah terintegrasi."
#~ msgid "Choose components to install:"
#~ msgstr "Pilihlah komponen yang hendak diinstall:"
@@ -3441,10 +2950,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "<F1> will give you information on this printer driver."
#~ msgstr "Tekan <F1> untuk melihat info driver printer ini."
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
-#~ msgstr ""
-#~ "Sekarang silahkan konfigurasikan ukuran kertas dan resolusi printer."
+#~ msgid "You may now configure the paper size and resolution for this printer."
+#~ msgstr "Sekarang silahkan konfigurasikan ukuran kertas dan resolusi printer."
#~ msgid "Paper Size"
#~ msgstr "Ukuran Kertas"
@@ -3467,9 +2974,7 @@ msgstr "Meload Driver SCSI..."
#~ msgid "Configure Uniprint Driver"
#~ msgstr "Konfigurasikan Driver Uniprint"
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
#~ msgstr "Ke mana printer Anda tersambung ? (/dev/lp0 adalah LPT1:)"
#~ msgid ""
@@ -3500,13 +3005,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "Remote lpd Printer Options"
#~ msgstr "Option printer lpd remote"
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "Anda harus menuliskan nama host printer server dan nama queuenya bila ingin "
-#~ "menggunakan print queue lpd di mesin remote."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "Anda harus menuliskan nama host printer server dan nama queuenya bila ingin menggunakan print queue lpd di mesin remote."
#~ msgid "Printer Server:"
#~ msgstr "Server Printer:"
@@ -3517,16 +3017,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "NetWare Printer Options"
#~ msgstr "Setting Printer Netware"
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "Agar bisa mencetak pada printer NetWare, maka tuliskan nama server printer "
-#~ "Netware (biasanya tidak sama namanya dengan nama hostname TCP/IPnya) beserta "
-#~ "dgn nama antrian cetaknya untuk printer tersebut, juga kalau perlu "
-#~ "sertakanjuga nama user dan passwordnya."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "Agar bisa mencetak pada printer NetWare, maka tuliskan nama server printer Netware (biasanya tidak sama namanya dengan nama hostname TCP/IPnya) beserta dgn nama antrian cetaknya untuk printer tersebut, juga kalau perlu sertakanjuga nama user dan passwordnya."
#~ msgid "SMB server host:"
#~ msgstr "Nama server SMB:"
@@ -3543,17 +3035,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "SMB/Windows 95/NT Printer Options"
#~ msgstr "Setting Printer SMB/Windows 95/NT"
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "Agar bisa mencetak pada printer SMB, maka tuliskan nama server printer "
-#~ "Netware (biasanya tidak sama namanya dengan nama hostname TCP/IPnya) beserta "
-#~ "dengan alamat IP server, plus nama share printer tersebut, juga sertakan "
-#~ "juga nama user, passwordnya, dan workgroupnya."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "Agar bisa mencetak pada printer SMB, maka tuliskan nama server printer Netware (biasanya tidak sama namanya dengan nama hostname TCP/IPnya) beserta dengan alamat IP server, plus nama share printer tersebut, juga sertakan juga nama user, passwordnya, dan workgroupnya."
#~ msgid "Spool directory:"
#~ msgstr "Direktori spool:"
@@ -3561,14 +3044,8 @@ msgstr "Meload Driver SCSI..."
#~ msgid "Standard Printer Options"
#~ msgstr "Setting Printer Standar"
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Tiap antrian print (tempat job print ditempatkan) harus memiliki nama "
-#~ "(biasanya bernama lp) dan direktori spoolnya. Tuliskan nama dan direktori "
-#~ "yang hendak digunakan untuk antrian ini"
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Tiap antrian print (tempat job print ditempatkan) harus memiliki nama (biasanya bernama lp) dan direktori spoolnya. Tuliskan nama dan direktori yang hendak digunakan untuk antrian ini"
#~ msgid "Would you like to configure a printer?"
#~ msgstr "Apakah ingin mengkonfigurasi printer sekarang?"
@@ -3688,12 +3165,8 @@ msgstr "Meload Driver SCSI..."
#~ "Terjadi kesalahan saat mentransfer file %s:\n"
#~ "%s"
-#~ msgid ""
-#~ "An error occurred reading the partition table for the block device %s. The "
-#~ "error was:"
-#~ msgstr ""
-#~ "Ada error sewaktu membaca tabel partisi pada device blok %s, Errornya "
-#~ "yaitu: "
+#~ msgid "An error occurred reading the partition table for the block device %s. The error was:"
+#~ msgstr "Ada error sewaktu membaca tabel partisi pada device blok %s, Errornya yaitu: "
#~ msgid "LAN manager host:"
#~ msgstr "Host LAN manager:"
@@ -3725,6 +3198,5 @@ msgstr "Meload Driver SCSI..."
#~ msgid "I cannot log into machine: %s\n"
#~ msgstr "saya tidak dapat masuk ke mesin: %s\n"
-#~ msgid ""
-#~ "Would you like to install or configure the SILO bootloader on your system?"
+#~ msgid "Would you like to install or configure the SILO bootloader on your system?"
#~ msgstr "Anda ingin install/konfigurasi bootloader SILO di sistem ini?"
diff --git a/po/is.po b/po/is.po
index 38847b3f6..757f763e2 100644
--- a/po/is.po
+++ b/po/is.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: install 1.33\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-09-22 10:09+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
@@ -14,90 +14,66 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "NФsta"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Til baka"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "SЩna hjАlp"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Fela hjАlp"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "LjЗka"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "InnbyggП hjАlp"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "VeljiП tungumАl"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Red Hat Linux uppsetningarforritiП"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Red Hat Linux uppsetningarforritiП"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Red Hat Linux uppsetningarforritiП"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Red Hat Linux uppsetningarforritiП"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr ""
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "HvaПa tungumАl viltu nota meПan А uppsetningu stendur?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "м lagi"
@@ -117,8 +93,7 @@ msgstr "/dev/ttyS2 (COM3 М DOS)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 М DOS)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "TФki"
@@ -128,26 +103,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "ViП hvaПa tФki er mЗsin tengd? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "м lagi"
@@ -199,12 +155,7 @@ msgstr "Tegund uppsetningar"
msgid "What type of system would you like to install?"
msgstr "Hverskonar kerfi viltu setja upp?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Villa"
@@ -225,34 +176,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Velja pakka sem skal uppfФra"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Pakkarnir sem Чegar eru А vИlinni og aПrir pakkar sem Чeir eru hАПir til aП "
-"uppfylla skilyrПi Чeirra hafa veriП valdir til uppsetningar. Viltu skoПa "
-"listann og kanski breyta honum?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Pakkarnir sem Чegar eru А vИlinni og aПrir pakkar sem Чeir eru hАПir til aП uppfylla skilyrПi Чeirra hafa veriП valdir til uppsetningar. Viltu skoПa listann og kanski breyta honum?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "JА"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Nei"
@@ -264,21 +195,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Velkomin(n) М Red Hat Linux!\n"
"\n"
-"Uppsetningin er ЗtskЩrП М smАatriПum М 'Red Hat Linux Installation Guide' "
-"bСkinni sem er fАanleg frА Red Hat Software. Ef ЧЗ hefur aПgang aП Чessari "
-"bСk Фttir ЧЗ aП lesa um uppsetninguna АПur en ЧЗ heldur Аfram.\n"
+"Uppsetningin er ЗtskЩrП М smАatriПum М 'Red Hat Linux Installation Guide' bСkinni sem er fАanleg frА Red Hat Software. Ef ЧЗ hefur aПgang aП Чessari bСk Фttir ЧЗ aП lesa um uppsetninguna АПur en ЧЗ heldur Аfram.\n"
"\n"
-"Ef ЧЗ hefur keypt opinbera Red Hat Linux mundu ЧА aП skrА eintakiП Чitt А "
-"vefsМПunni okkar А http://www.redhat.com."
+"Ef ЧЗ hefur keypt opinbera Red Hat Linux mundu ЧА aП skrА eintakiП Чitt А vefsМПunni okkar А http://www.redhat.com."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -317,35 +242,21 @@ msgid "Hostname Configuration"
msgstr "Stillingar vИlarheitis"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"VИlarheiti er heiti vИlarinnar А neti. Ef tЖlvan ЧМn er nettengd er heitinu "
-"ЗthlutaП af netstjСra ЧМnum."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "VИlarheiti er heiti vИlarinnar А neti. Ef tЖlvan ЧМn er nettengd er heitinu ЗthlutaП af netstjСra ЧМnum."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "VИlarheiti"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"SИrsmМПaПur rФsidisklingur gerir ЧИr kleyft aП rФsa Linux Аn Чess aП nota "
-"rФsistjСra eins og LILO. чetta kemur aП gagni ef ЧЗ vilt ekki setja upp LILO "
-"А vИlinni eПa ef annaП stЩrikerfi hefur fjarlФgt LILO eПa LILO virkar ekki "
-"meП vИlbЗnaПarstillingum ЧМnum. RФsidiskling mА einnig nota meП Red Hat "
-"'rescue' disklingnum svo hФgt sИ aП bjarga vИlinni ef alvarleg vandamАl koma "
-"upp.\n"
+"SИrsmМПaПur rФsidisklingur gerir ЧИr kleyft aП rФsa Linux Аn Чess aП nota rФsistjСra eins og LILO. чetta kemur aП gagni ef ЧЗ vilt ekki setja upp LILO А vИlinni eПa ef annaП stЩrikerfi hefur fjarlФgt LILO eПa LILO virkar ekki meП vИlbЗnaПarstillingum ЧМnum. RФsidiskling mА einnig nota meП Red Hat 'rescue' disklingnum svo hФgt sИ aП bjarga vИlinni ef alvarleg vandamАl koma upp.\n"
"\n"
"Viltu bЗa til rФsidiskling fyrir vИlina ЧМna?"
@@ -389,12 +300,8 @@ msgid "Installation to begin"
msgstr "Uppsetning aП hefjast"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Eftir aП uppsetningunni lЩkur verПur til annАll sem heitir /tmp/install.log. "
-"Honum Фttir ЧЗ aП halda til haga."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Eftir aП uppsetningunni lЩkur verПur til annАll sem heitir /tmp/install.log. Honum Фttir ЧЗ aП halda til haga."
#: ../text.py:606
msgid "Complete"
@@ -404,43 +311,27 @@ msgstr "LokiП"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"Til hamingju, uppsetningu er lokiП.\n"
"\n"
-"Taktu disklinginn eПa geisladiskinn sem ЧЗ rФstir upp af Зr drifinu og slАПu "
-"А Enter-hnappinn til aП rФsa upp Linux. а http://www.redhat.com mА finna "
-"viПbФtur og/eПa lagfФringar А gЖllum sem gФtu veriП til staПar М Чessari "
-"ЗtgАfu af Red Hat Linux.\n"
+"Taktu disklinginn eПa geisladiskinn sem ЧЗ rФstir upp af Зr drifinu og slАПu А Enter-hnappinn til aП rФsa upp Linux. а http://www.redhat.com mА finna viПbФtur og/eПa lagfФringar А gЖllum sem gФtu veriП til staПar М Чessari ЗtgАfu af Red Hat Linux.\n"
"\n"
-"Frekari upplЩsingar um hvernig А aП stilla vИlina eftir uppsetninguna er aП "
-"finna М viПeigandi kafla М Official Red Hat Linux User's Guide bСkinni."
+"Frekari upplЩsingar um hvernig А aП stilla vИlina eftir uppsetninguna er aП finna М viПeigandi kafla М Official Red Hat Linux User's Guide bСkinni."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Settu tСman diskling М fyrsta disklingadrifiП. жllum gЖgnum А disklingnum "
-"verПur eytt Чegar rФsidisklingurinn er ЗtbЗinn."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Settu tСman diskling М fyrsta disklingadrifiП. жllum gЖgnum А disklingnum verПur eytt Чegar rФsidisklingurinn er ЗtbЗinn."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Sleppa"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"Villa kom upp Чegar reynt var aП bЗa til rФsidisklinginn. Vinsamlegast "
-"gakktu Зr skugga um aП forsniПinn disklingur sИ М fyrsta disklingadrifinu."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "Villa kom upp Чegar reynt var aП bЗa til rФsidisklinginn. Vinsamlegast gakktu Зr skugga um aП forsniПinn disklingur sИ М fyrsta disklingadrifinu."
#: ../text.py:697
msgid "Package Installation"
@@ -503,18 +394,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> milli atriПa | <BilslА> velur | <F12> nФsti skjАr "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> milli atriПa | <BilslА> velur | <F12> nФsti skjАr "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Velkomin(n)"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "DisksneiП"
@@ -535,8 +422,7 @@ msgstr "Diskminni"
msgid "Filesystem Formatting"
msgstr "ForsnМПa skrАakerfi"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "Stillingar LILO"
@@ -600,8 +486,7 @@ msgstr "Setja upp kerfiП"
msgid "Installation Complete"
msgstr "Uppsetningu lokiП"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "Stillingar LILO"
@@ -631,171 +516,170 @@ msgstr "HФtta viП"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr ""
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "Villa viП opnun: hraПuppsetningarskrА %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "Villa viП opnun: hraПuppsetningarskrА %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "EyПa RAID tФki?"
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "ForsnМПa skrАakerfi"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, c-format
msgid "Formatting %s filesystem..."
msgstr ""
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "BЗa til rФsidiskling"
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Eftir"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "Sendi beiПni um IP stillingar..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr ""
-#: ../todo.py:1012
+#: ../todo.py:1016
msgid "Searching"
msgstr ""
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Villa viП opnun: hraПuppsetningarskrА %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Eftir"
-#: ../todo.py:1060
+#: ../todo.py:1064
#, fuzzy
msgid "Finding packages to upgrade..."
msgstr "Velja pakka sem А aП uppfФra"
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr ""
-#: ../todo.py:1249
+#: ../todo.py:1253
msgid "Preparing to install..."
msgstr ""
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Eftir"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr ""
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr ""
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Set inn pakka"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Tengipunktur:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr ""
-#: ../todo.py:1439
+#: ../todo.py:1453
#, fuzzy
msgid "Disk Space"
msgstr "Stillingar diska"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Setja upp"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "PrСfa Чessar stillingar"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "SkjАkort"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "SkjАminni"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "чjСnn"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Get ekki sСtt RAM-disk seinna Чreps"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "SkjАr"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "LАrИtt tМПnisviП"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "LСПrИtt tМПnisviП"
@@ -824,8 +708,7 @@ msgstr "LykilorП"
msgid "Password (confirm)"
msgstr "LykilorП (aftur)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Fullt nafn"
@@ -833,15 +716,11 @@ msgstr "Fullt nafn"
msgid "Add"
msgstr "BФta viП"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Breyta"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "EyПa"
@@ -957,8 +836,7 @@ msgstr "GNOME vinnustЖП"
msgid "KDE Workstation"
msgstr "KDE vinnustЖП"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "чjСnn"
@@ -1002,7 +880,7 @@ msgstr "AfbrigПi"
msgid "Test your selection here:"
msgstr "PrСfaПu valiП hИr:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "HvaПa tungumАl viltu nota meПan А uppsetningu stendur?"
@@ -1042,19 +920,15 @@ msgstr "BЗa til rФsidiskling"
msgid "Do not install LILO"
msgstr "Ekki setja upp LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "SjАlfgefiП"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Tegund sneiПar"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "RФsimerki"
@@ -1062,43 +936,43 @@ msgstr "RФsimerki"
msgid "Emulate 3 Buttons"
msgstr "Herma eftir Чrem hnЖppum"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Stilla meП DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Virkja viП rФsingu"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "IP vistfang"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "NetmЖskvi"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Net"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Uppkall"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "GАtt"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "AПalnafnaЧjСnn"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "Annar nafnaЧjСnn"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "чriПji nafnaЧjСnn"
@@ -1183,14 +1057,8 @@ msgid "Low Memory"
msgstr "Of lМtiП minni"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"чar sem ЧЗ ert ekki nФgjanlegt vinnsluminni М vИlinni verПum viП aП setja "
-"diskminni М gang strax. Svo ЧaП sИ hФgt verПur aП vista disksneiПatЖfluna А "
-"diskinn nЗna. Er ЧaП М lagi?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "чar sem ЧЗ ert ekki nФgjanlegt vinnsluminni М vИlinni verПum viП aП setja diskminni М gang strax. Svo ЧaП sИ hФgt verПur aП vista disksneiПatЖfluna А diskinn nЗna. Er ЧaП М lagi?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1201,21 +1069,17 @@ msgstr "SjАlfvirk disksneiПing"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"Ef ЧЗ vilt ekki gera Чetta getur ЧЗ haldiП uppsetningu Аfram meП ЧvМ aП "
-"sneiПa niПur diskinn sjАlf(ur) eПa fara til baka og setja upp sИrsniПiП "
-"kerfi."
+"Ef ЧЗ vilt ekki gera Чetta getur ЧЗ haldiП uppsetningu Аfram meП ЧvМ aП sneiПa niПur diskinn sjАlf(ur) eПa fara til baka og setja upp sИrsniПiП kerfi."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "FjarlФgja gЖgn"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "SneiПa handvirkt"
@@ -1276,7 +1140,7 @@ msgstr "LСПrИtt tМПnisviП"
msgid "Test failed"
msgstr "PrСfun mistСkst"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "SИrsnМПa X stillingar"
@@ -1284,62 +1148,43 @@ msgstr "SИrsnМПa X stillingar"
msgid "Bits per Pixel"
msgstr "Bitar А myndeiningu"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "PrСfa Чessar stillingar"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"м flestum tilfellum er hФgt aП leita sjАlfvirkt eftir bestu stillingunum "
-"fyrir skjАinn Чinn."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "м flestum tilfellum er hФgt aП leita sjАlfvirkt eftir bestu stillingunum fyrir skjАinn Чinn."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "NiПurstaПa leitar:"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"Ekki tСkst aП finna skjАinn Чinn sjАlfvirkt. Vinsamlegast veldu hann Зr "
-"listanum:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "Ekki tСkst aП finna skjАinn Чinn sjАlfvirkt. Vinsamlegast veldu hann Зr listanum:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Nota grafМska innstimplun"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "Sleppa aП stilla X"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"а sumum vИlum er nauПsynlegt aП gefa kjarnanum sИrstЖk viПfЖng viП rФsingu "
-"svo vИlin virki rИtt. Ef vИlin ЧМn er ein af Чessum vИlum slАПu ЧА inn "
-"viПfЖngin nЗna. Ef ЧЗ ert ekki viss hafПu Чetta autt."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "а sumum vИlum er nauПsynlegt aП gefa kjarnanum sИrstЖk viПfЖng viП rФsingu svo vИlin virki rИtt. Ef vИlin ЧМn er ein af Чessum vИlum slАПu ЧА inn viПfЖngin nЗna. Ef ЧЗ ert ekki viss hafПu Чetta autt."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Hvar viltu setja upp rФsistjСrann?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Hreinsa"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "HФtta viП"
@@ -1348,24 +1193,12 @@ msgid "Edit Boot Label"
msgstr "Breyta rФsimerki"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"RФsistjСrinn sem fylgir Red Hat getur einnig rФst upp Жnnur stЩrikerfi. чЗ "
-"Чarft aП aП merkja viП ЧФr sneiПar sem ЧЗ vilt geta rФst upp af og hvaПa "
-"heiti ЧФr eiga aП fА."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "RФsistjСrinn sem fylgir Red Hat getur einnig rФst upp Жnnur stЩrikerfi. чЗ Чarft aП aП merkja viП ЧФr sneiПar sem ЧЗ vilt geta rФst upp af og hvaПa heiti ЧФr eiga aП fА."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Sumir pakkanna sem ЧЗ valdir til uppsetningar Чarfnast annara pakka sem ЧЗ "
-"valdir ekki. Ef ЧЗ velur 'м lagi' mun Жllum Чessum pЖkkum sem uppА vantar "
-"verПa bФtt viП."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Sumir pakkanna sem ЧЗ valdir til uppsetningar Чarfnast annara pakka sem ЧЗ valdir ekki. Ef ЧЗ velur 'м lagi' mun Жllum Чessum pЖkkum sem uppА vantar verПa bФtt viП."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1373,32 +1206,19 @@ msgstr "Stillingar diska"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Diska DrЗМdinn er tСl til Чess aП sneiПa niПur diska og stilla upp "
-"tengipunktum. чaП er hannaП til Чess aП vera einfaldara М notkun en hiП "
-"hefПbundna Linux fdisk Аsamt ЧvМ aП vera Жflugra. Samt eru tilfelli Чar sem "
-"betra er aП nota fdisk.\n"
+"Diska DrЗМdinn er tСl til Чess aП sneiПa niПur diska og stilla upp tengipunktum. чaП er hannaП til Чess aП vera einfaldara М notkun en hiП hefПbundna Linux fdisk Аsamt ЧvМ aП vera Жflugra. Samt eru tilfelli Чar sem betra er aП nota fdisk.\n"
"\n"
"Hvort tСliП viltu nota?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Til aП setja upp Red Hat Linux Чarftu aП hafa aП minnsta kosti eina "
-"disksneiП frАtekna fyrir Linux sem er minnst 150 MB. ViП mФlum meП aП hafa "
-"hana А ЖПrum af fyrstu tveim hЖrПu diskunum М vИlinni svo ЧaП sИ hФgt aП "
-"rФsa Linux meП LILO."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Til aП setja upp Red Hat Linux Чarftu aП hafa aП minnsta kosti eina disksneiП frАtekna fyrir Linux sem er minnst 150 MB. ViП mФlum meП aП hafa hana А ЖПrum af fyrstu tveim hЖrПu diskunum М vИlinni svo ЧaП sИ hФgt aП rФsa Linux meП LILO."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "BЗiП"
@@ -1407,16 +1227,8 @@ msgid "Continue"
msgstr "Halda Аfram"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"HvaПa disksneiПar viltu forsnМПa? ViП mФlum eindregiП meП aП forsnМПa allar "
-"kerfissneiПarnar, Чar meП taliП /, /usr og /var. чaП er alveg СЧarft aП "
-"forsnМПa /home eПa /usr/local disksneiПarnar ef ЧФr hafa veriП settar upp М "
-"fyrri uppsetningum."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "HvaПa disksneiПar viltu forsnМПa? ViП mФlum eindregiП meП aП forsnМПa allar kerfissneiПarnar, Чar meП taliП /, /usr og /var. чaП er alveg СЧarft aП forsnМПa /home eПa /usr/local disksneiПarnar ef ЧФr hafa veriП settar upp М fyrri uppsetningum."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1436,14 +1248,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Veldu rСtarlykilorП. чЗ verПur aП slА ЧaП inn tvisvar til aП tryggja aП ЧЗ "
-"vitir Жrugglega hvaП ЧaП er og ЧЗ hafir ekki slegiП ЧaП rangt inn. Mundu aП "
-"rСtarlykilorПiП er mjЖg mikilvФgur ЧАttur М Жryggi vИlarinnar!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Veldu rСtarlykilorП. чЗ verПur aП slА ЧaП inn tvisvar til aП tryggja aП ЧЗ vitir Жrugglega hvaП ЧaП er og ЧЗ hafir ekki slegiП ЧaП rangt inn. Mundu aП rСtarlykilorПiП er mjЖg mikilvФgur ЧАttur М Жryggi vИlarinnar!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1494,24 +1300,12 @@ msgid "This user id already exists. Choose another."
msgstr "чetta auПkennisnЗmer er Чegar М notkun. Veldu annaП."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"чЗ Фttir alltaf aП nota aПgang venjulegs notanda Чegar ЧЗ ert aП vinna А "
-"vИlinni. MeП ЧvМ aП nota rСtaraПganginn sem minnst minnkar ЧЗ hФttuna А aП "
-"valda skemmdum А grunnstillingum vИlarinnar."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "чЗ Фttir alltaf aП nota aПgang venjulegs notanda Чegar ЧЗ ert aП vinna А vИlinni. MeП ЧvМ aП nota rСtaraПganginn sem minnst minnkar ЧЗ hФttuna А aП valda skemmdum А grunnstillingum vИlarinnar."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"HvaПa notandi viltu vera А Чessari vИl? чЗ Фttir aП hafa aП minnsta kosti "
-"einn notandaaПgang, sem er ekki rСt fyrir dagleg stЖrf. FjЖlnotandavИlar "
-"geta haft СtakmarkaПan fjЖlda notenda."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "HvaПa notandi viltu vera А Чessari vИl? чЗ Фttir aП hafa aП minnsta kosti einn notandaaПgang, sem er ekki rСt fyrir dagleg stЖrf. FjЖlnotandavИlar geta haft СtakmarkaПan fjЖlda notenda."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1549,8 +1343,7 @@ msgstr "eПa nota:"
msgid "Request server via broadcast"
msgstr "Kalla eftir ЧjСni"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "сleyfilegur tengipunktur"
@@ -1619,44 +1412,26 @@ msgid "Too Many Drives"
msgstr "Of mЖrg drif"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"чЗ hefur fleiri drif en Чetta forrit styПur. Vinsamlegast notaПu staПlaПa "
-"fdisk forritiП til aП setja upp drifin ЧМn og lАttu Red Hat Software vita aП "
-"Чetta hafi komiП upp hjА ЧИr"
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "чЗ hefur fleiri drif en Чetta forrit styПur. Vinsamlegast notaПu staПlaПa fdisk forritiП til aП setja upp drifin ЧМn og lАttu Red Hat Software vita aП Чetta hafi komiП upp hjА ЧИr"
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Engin drif fundust"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"чaП kom upp villa. Engin tФki fundust sem unnt er aП bЗa til nЩ skrАakerfi "
-"А. Vinsamlegast skoПaПu vИlbЗnaПinn og athugaПu hverju sФtir."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "чaП kom upp villa. Engin tФki fundust sem unnt er aП bЗa til nЩ skrАakerfi А. Vinsamlegast skoПaПu vИlbЗnaПinn og athugaПu hverju sФtir."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Villa kom upp viП lestur disksneiПatЖflunnar А blokkatФki %s. Villan var"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Villa kom upp viП lestur disksneiПatЖflunnar А blokkatФki %s. Villan var"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"DisksneiПataflan А tФki %s er skemmd. Til Чess aП hФgt sИ aП bЗa til nЩjar "
-"disksneiПar Чarf aП frumstilla hana, sem veldur ЧvМ aП жLL GжGN А disknum "
-"tapast."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "DisksneiПataflan А tФki %s er skemmd. Til Чess aП hФgt sИ aП bЗa til nЩjar disksneiПar Чarf aП frumstilla hana, sem veldur ЧvМ aП жLL GжGN А disknum tapast."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1679,14 +1454,8 @@ msgid "BSD Disklabel"
msgstr "BSD diskmerki"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"Diskur meП BSD diskmerki hefur fundist. Red Hat uppsetningarforritiП styПur "
-"einungis BSD diskmerki М ritvЖrПum ham svo ЧЗ verПur aП velja 'SИrsniПna' "
-"uppsetningu og fdisk (ekki Diska DrЗМdann)."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "Diskur meП BSD diskmerki hefur fundist. Red Hat uppsetningarforritiП styПur einungis BSD diskmerki М ritvЖrПum ham svo ЧЗ verПur aП velja 'SИrsniПna' uppsetningu og fdisk (ekki Diska DrЗМdann)."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1713,10 +1482,7 @@ msgstr "EyПa disksneiП"
msgid "Are you sure you want to delete this partition?"
msgstr "Ertu viss um aП ЧЗ viljir eyПa Чessari disksneiП?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Breyta disksneiП"
@@ -1756,58 +1522,38 @@ msgstr "Tegund disksneiПar:"
msgid "Allowable Drives:"
msgstr "Leyfileg drif:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Enginn tengipunktur"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"чЗ hefur ekki valiП tengipunkt fyrir Чessa disksneiП. Ertu viss um aП ЧЗ "
-"viljir gera Чetta?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "чЗ hefur ekki valiП tengipunkt fyrir Чessa disksneiП. Ertu viss um aП ЧЗ viljir gera Чetta?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Villa М tengipunkti"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Tengipunkturinn sem ЧЗ valdir er annaП hvort Сleyfilegur eПa Чegar М notkun. "
-"Vinsamlegast veldu lЖglegan tengipunkt."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Tengipunkturinn sem ЧЗ valdir er annaП hvort Сleyfilegur eПa Чegar М notkun. Vinsamlegast veldu lЖglegan tengipunkt."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "Villa М stФrП"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"StФrПin sem ЧЗ valdir er Сleyfileg. Gakktu Зr skugga um aП stФrПin sИ stФrri "
-"nЗll (0), og sИ talin fram М tugakerfistЖlu (base 10)."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "StФrПin sem ЧЗ valdir er Сleyfileg. Gakktu Зr skugga um aП stФrПin sИ stФrri nЗll (0), og sИ talin fram М tugakerfistЖlu (base 10)."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Villa М diskminnisstФrП"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"чЗ hefur bЗiП til diskminnissneiП sem er of stСr. HАmarks stФrП "
-"diskminnissneiПar er %ld MegabФti."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "чЗ hefur bЗiП til diskminnissneiП sem er of stСr. HАmarks stФrП diskminnissneiПar er %ld MegabФti."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1815,8 +1561,7 @@ msgstr "Engin RAID binding"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
"чЗ hefur sett upp RAID disksneiП Аn Чess aП binda hana viП eitt drif.\n"
@@ -1827,9 +1572,7 @@ msgid "Close"
msgstr "Loka"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
msgstr ""
"чЗ hefur sett upp RAID disksneiП Аn Чess aП binda hana viП eitt drif.\n"
"Vinsamlegast veldu disk til aП binda hana viП."
@@ -1842,31 +1585,17 @@ msgstr "RAID fФrsla ekki klАruП"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"Raid tФkiП /dev/%s inniheldur nЗna disksneiПar sem eru СfrАteknar. Raid "
-"tФkiП /dev/%s verПur nЗ hlutaП upp М upprunalegu disksneiПarnar. Vinsamlega "
-"settu ЧaП saman aftur meП frАteknum disksneiПum."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "Raid tФkiП /dev/%s inniheldur nЗna disksneiПar sem eru СfrАteknar. Raid tФkiП /dev/%s verПur nЗ hlutaП upp М upprunalegu disksneiПarnar. Vinsamlega settu ЧaП saman aftur meП frАteknum disksneiПum."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "SneiПar sem ekki fannst plАss fyrir"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"м listanum yfir umbeПnar disksneiПar eru nЗ sneiПar sem eru СfrАteknar. "
-"сfrАteknu sneiПarnar eru taldar upp fyrir neПan Аsamt АstФПunni fyrir ЧvМ aП "
-"ЧФr voru ekki teknar frА."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "м listanum yfir umbeПnar disksneiПar eru nЗ sneiПar sem eru СfrАteknar. сfrАteknu sneiПarnar eru taldar upp fyrir neПan Аsamt АstФПunni fyrir ЧvМ aП ЧФr voru ekki teknar frА."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1889,24 +1618,16 @@ msgid "You have not selected a mount point. A mount point is required."
msgstr "чЗ hefur ekki valiП tengipunkt. Tengipunktur er nauПsynlegur"
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Tengipunkturinn sem ЧЗ valdir er Чegar М notkun. Vinsamlegast veldu lЖglegan "
-"tengipunkt."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Tengipunkturinn sem ЧЗ valdir er Чegar М notkun. Vinsamlegast veldu lЖglegan tengipunkt."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "RФsa af RAID viПvЖrun"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"чЗ hefur gert Чetta raid tФki aП rФsanlegri disksneiП. Vinsamlegast gakktu "
-"Зr skugga um aП allar sneiПar sem er М tФkinu sИu rФsanlegar."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "чЗ hefur gert Чetta raid tФki aП rФsanlegri disksneiП. Vinsamlegast gakktu Зr skugga um aП allar sneiПar sem er М tФkinu sИu rФsanlegar."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1922,24 +1643,16 @@ msgstr "Raid tФki Чegar М notkun"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"Raid tФkiП \"/dev/%s\" er Чegar uppsett sem raid tФki. Vinsamlega veldu "
-"annaП."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "Raid tФkiП \"/dev/%s\" er Чegar uppsett sem raid tФki. Vinsamlega veldu annaП."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Ekki nСgu margar disksneiПar"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
-msgstr ""
-"чЗ hefur ekki bЗiП til nСgu margar disksneiПar fyrir RAID tegundina sem ЧЗ "
-"valdir."
+msgid "You have not configured enough partitions for the RAID type you have selected."
+msgstr "чЗ hefur ekki bЗiП til nСgu margar disksneiПar fyrir RAID tegundina sem ЧЗ valdir."
#: ../libfdisk/gnomefsedit.c:1942
msgid "Illegal /boot RAID Type"
@@ -1951,14 +1664,8 @@ msgstr "RФsisneiПar (/boot) mega einungis nota RAID-1"
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"DisksneiПin %s er disksneiП sem Чegar er notuП М Чessu RAID tФki. "
-"Tengipunktur Чess er /boot. Ertu viss um aП ЧaП sИ hФgt aП rФsa frА Чessari "
-"disksneiП?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "DisksneiПin %s er disksneiП sem Чegar er notuП М Чessu RAID tФki. Tengipunktur Чess er /boot. Ertu viss um aП ЧaП sИ hФgt aП rФsa frА Чessari disksneiП?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2022,12 +1729,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "SneiПar sem ekki fannst plАss fyrir..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"чЗ verПur aП setja rСtarsneiПina (/) А Linux (ext2) disksneiП eПa А RAID "
-"disksneiП svo uppsetningin geti haldiП Аfram."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "чЗ verПur aП setja rСtarsneiПina (/) А Linux (ext2) disksneiП eПa А RAID disksneiП svo uppsetningin geti haldiП Аfram."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2079,12 +1782,8 @@ msgid "No Root Partition"
msgstr "Engin rСtarsneiП"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"чЗ verПur aП skilgreina rСtarsneiП (/) А Linux disksneiП (ext2) svo "
-"uppsetningin geti haldiП Аfram"
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "чЗ verПur aП skilgreina rСtarsneiП (/) А Linux disksneiП (ext2) svo uppsetningin geti haldiП Аfram"
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2092,18 +1791,15 @@ msgstr "Engin diskminnissneiП"
#: ../libfdisk/newtfsedit.c:1446
msgid "You must assign a swap partition for the install to proceed."
-msgstr ""
-"чЗ verПur aП skilgreina diskminnissneiП svo uppsetningin geti haldiП Аfram."
+msgstr "чЗ verПur aП skilgreina diskminnissneiП svo uppsetningin geti haldiП Аfram."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"чaП eru enn СfrАteknar disksneiПar eftir. Ef ЧЗ hФttir nЗna verПa ЧФr ekki "
-"vistaПar А diskinn.\n"
+"чaП eru enn СfrАteknar disksneiПar eftir. Ef ЧЗ hФttir nЗna verПa ЧФr ekki vistaПar А diskinn.\n"
"\n"
"Ertu viss um aП ЧЗ viljir hФtta?"
@@ -2140,48 +1836,32 @@ msgid "Miscellaneous"
msgstr "щmislegt"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"чessi kjarnarekill getur tekiП viП viПfЖngum sem hafa Аhrif А hvernig hann "
-"vinnur. Ef ЧЗ veist ekki hvaПa viПfЖng А aП nota getur ЧЗ sleppt Чessum skjА "
-"meП ЧvМ aП velja \"м lagi\" hnappinn."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "чessi kjarnarekill getur tekiП viП viПfЖngum sem hafa Аhrif А hvernig hann vinnur. Ef ЧЗ veist ekki hvaПa viПfЖng А aП nota getur ЧЗ sleppt Чessum skjА meП ЧvМ aП velja \"м lagi\" hnappinn."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "ViПfЖng kjarnarekla"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "TФki"
#: ../loader/devices.c:169
msgid "Insert your driver disk and press \"OK\" to continue."
-msgstr ""
-"Settu rekladisklinginn М drifiП og veldu \"м lagi\" til aП halda Аfram."
+msgstr "Settu rekladisklinginn М drifiП og veldu \"м lagi\" til aП halda Аfram."
#: ../loader/devices.c:179
msgid "Failed to mount floppy disk."
msgstr "Gat ekki tengt disklinginn."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"Disklingurinn sem ЧЗ settir М drifiП er ekki gildur rekladisklingur fyrir "
-"Чessa ЗtgАfu af Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "Disklingurinn sem ЧЗ settir М drifiП er ekki gildur rekladisklingur fyrir Чessa ЗtgАfu af Red Hat Linux."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"HvaПa rekil viltu reyna?. Ef rekillinn sem ЧЗ Чarft er ekki А Чessum lista "
-"og ЧЗ ert meП sИrstakann rekladiskling veldu ЧА F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "HvaПa rekil viltu reyna?. Ef rekillinn sem ЧЗ Чarft er ekki А Чessum lista og ЧЗ ert meП sИrstakann rekladiskling veldu ЧА F2."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2210,15 +1890,15 @@ msgstr "Villa viП lestur hraПuppsetningarskrАar %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Villa М lМnu %d М hraПuppsetningarskrА %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "Veldu tungumАl"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Stillingar lyklaborПs"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Hvernig lyklaborП ertu meП?"
@@ -2234,137 +1914,116 @@ msgstr "NFS svФПi"
msgid "Hard drive"
msgstr "HarПir diskar"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Velkomin(n) М Red Hat Linux"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> milli atriПa | <BilslА> velur | <F12> nФsti skjАr "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> milli atriПa | <BilslА> velur | <F12> nФsti skjАr "
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Hverskonar tФki viltu bФta viП"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "Eftirfarandi tФki hafa fundist М vИlinni Чinni:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "BФta viП tФki"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"чaП eru engir sИrstakir tФkjareklar М notkun fyrir vИlina ЧМna. Viltu lesa "
-"einhverja inn nЗna?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "чaП eru engir sИrstakir tФkjareklar М notkun fyrir vИlina ЧМna. Viltu lesa einhverja inn nЗna?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "Les inn"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "Les inn auka RAM-disklinginn..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Villa viП lestur RAM-disklings."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "HarПir diskar"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"чЗ virПist ekki vera meП neina harПa diska М vИlinni! Viltu stilla Жnnur "
-"tФki?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "чЗ virПist ekki vera meП neina harПa diska М vИlinni! Viltu stilla Жnnur tФki?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"HvaПa disksneiП og mappa А Чeirri sneiП inniheldur RedHat/RPMS og "
-"RedHat/base mЖppurnar ? Ef ЧЗ sИrП ekki harПa diskinn sem ЧЗ ert aП nota М "
-"listanum Щttu ЧА А F2 til aП bФta viП tФkjum."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "HvaПa disksneiП og mappa А Чeirri sneiП inniheldur RedHat/RPMS og RedHat/base mЖppurnar ? Ef ЧЗ sИrП ekki harПa diskinn sem ЧЗ ert aП nota М listanum Щttu ЧА А F2 til aП bФta viП tФkjum."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Mappa sem inniheldur Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Veldu disksneiП"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "TФki %s virПist ekki innihalda Red Hat dreifingu."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"Red Hat Linux geisladiskurinn fannst ekki М neinu tiltФku geisladrifi. "
-"Vinsamlegast settu Red Hat geisladiskinn М viПeigandi drif og veldu \"м "
-"lagi\" til aП reyna aftur."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "Red Hat Linux geisladiskurinn fannst ekki М neinu tiltФku geisladrifi. Vinsamlegast settu Red Hat geisladiskinn М viПeigandi drif og veldu \"м lagi\" til aП reyna aftur."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "чetta skrАakerfi virПist ekki innihalda Red Hat uppsetningartrИ."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Ekki tСkst aП tengja Чetta skrАakerfi frА ЧjСninum"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Get ekki sСtt RAM-disk seinna Чreps"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "GerП neyПardisklings"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "Tegund uppsetningar"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "а hverskonar miПli er neyПardisklingurinn?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Hverskonar kerfi viltu setja upp?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Gat ekki fundiП ks.cfg А rФsidisklingnum."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC kort"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "Frumstilli tФkin М PC kortum..."
@@ -2395,12 +2054,8 @@ msgstr ""
" Red Hat Linux fyrir vИlina ЧМna"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"SlАПu inn IP uppsetningu Чessarar vИlar. Hver fФrsla А aП vera IP-tala rituП "
-"sem tЖlur meП punkt А milli (dФmi 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "SlАПu inn IP uppsetningu Чessarar vИlar. Hver fФrsla А aП vera IP-tala rituП sem tЖlur meП punkt А milli (dФmi 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2464,11 +2119,8 @@ msgid "Network device"
msgstr "Netkort"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> milli atriПa | <BilslА> velur | <F12> nФsti skjАr "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> milli atriПa | <BilslА> velur | <F12> nФsti skjАr "
# c-format
#: ../loader/net.c:699
@@ -2549,18 +2201,11 @@ msgid "You must enter a directory."
msgstr "чЗ verПur aП nefna mЖppu."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Ef ЧЗ ert ekki aП nota nafnlaust FTP slАПu ЧА inn notandaheiti og lykilorП "
-"aП neПan. If ЧЗ vilt nota FTP sel, slАПu ЧА inn nafniП А FTP selinu."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Ef ЧЗ ert ekki aП nota nafnlaust FTP slАПu ЧА inn notandaheiti og lykilorП aП neПan. If ЧЗ vilt nota FTP sel, slАПu ЧА inn nafniП А FTP selinu."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
msgstr "Ef ЧЗ vilt nota vefsel Чarftu aП gefa upp heiti Чess hИr."
#: ../loader/urls.c:295
@@ -2587,29 +2232,14 @@ msgstr "GАtt HTTP sels:"
msgid "Loading SCSI driver"
msgstr "Les inn SCSI rekil"
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "Diskur meП skemmt Sun diskmerki hefur fundist viП lestur tФkis %s. чЗ verПur "
-#~ "aП bЗa til og skrifa А diskinn nЩtt merki meП fdisk."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "Diskur meП skemmt Sun diskmerki hefur fundist viП lestur tФkis %s. чЗ verПur aП bЗa til og skrifa А diskinn nЩtt merki meП fdisk."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Skemmt Sun diskmerki"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "чЗ verПur aП setja rФsisneiПina (/boot) А Linux (ext2) disksneiП eПa А "
-#~ "RAID-1 disksneiП svo uppsetningin geti haldiП Аfram."
-
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "чar sem ЧЗ hefur sett rСtarsneiПina (/) А RAID tФki verПur ЧЗ aП setja "
-#~ "rФsisneiПina (/boot) А Linux disksneiП (ext2) eПa А RAID-1 disksneiП svo "
-#~ "uppsetningin geti haldiП Аfram."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "чЗ verПur aП setja rФsisneiПina (/boot) А Linux (ext2) disksneiП eПa А RAID-1 disksneiП svo uppsetningin geti haldiП Аfram."
+
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "чar sem ЧЗ hefur sett rСtarsneiПina (/) А RAID tФki verПur ЧЗ aП setja rФsisneiПina (/boot) А Linux disksneiП (ext2) eПa А RAID-1 disksneiП svo uppsetningin geti haldiП Аfram."
diff --git a/po/it.po b/po/it.po
index 73bbca02a..d43782ee0 100644
--- a/po/it.po
+++ b/po/it.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-04-08 18:15+1\n"
"Last-Translator: Federico Musto <federico@redhat.it>\n"
"Language-Team: ITALIAN <it@li.org>\n"
@@ -13,91 +13,67 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8959-1\n"
"Content-Transfer-Encoding: ascii\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "Next"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Indietro"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Mostra l'Help"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Nascondi Help"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "Fine"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "Help online"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "Scelta della lingua"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Red Hat Linux Installer"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Red Hat Linux Installer"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Red Hat Linux Installer"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Red Hat Linux Installer"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr "State per perdere TUTTI I DATI!. Volete continuare?"
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "Quale lingua desiderate utilizzare durante l'installazione ?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "OK"
@@ -117,8 +93,7 @@ msgstr "/dev/ttyS2 (COM3 sotto DOS)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 sotto DOS)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Device"
@@ -128,26 +103,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "Su quale porta e' collegato il mouse ? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "Ok"
@@ -199,12 +155,7 @@ msgstr "Tipo di installazione"
msgid "What type of system would you like to install?"
msgstr "Quale tipo di sistema desiderate installare ?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Errore"
@@ -225,33 +176,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Scelta dei pacchetti da installare"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"I pacchetti che avete selezionato, e quelli necessari per soddisfare le "
-"dipendenze sono stati selezionati. Volete modificare qualcosa ?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "I pacchetti che avete selezionato, e quelli necessari per soddisfare le dipendenze sono stati selezionati. Volete modificare qualcosa ?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Si"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "No"
@@ -263,21 +195,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Benvenuti in Red Hat Linux !\n"
"\n"
-"Il processo di installazione e' spiegato in dettaglio nella guida ufficiale "
-"Red Hat fornita dalla Red Hat Software Italia. Vi consigliamo di leggere il "
-"manuale prima di continuare.\n"
+"Il processo di installazione e' spiegato in dettaglio nella guida ufficiale Red Hat fornita dalla Red Hat Software Italia. Vi consigliamo di leggere il manuale prima di continuare.\n"
"\n"
-"Se avete comprato la versione ufficiale di Red Hat Linux, registratevi via "
-"web http://www.redhat.it. Grazie per aver scelto Red Hat Linux !"
+"Se avete comprato la versione ufficiale di Red Hat Linux, registratevi via web http://www.redhat.it. Grazie per aver scelto Red Hat Linux !"
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -316,36 +242,24 @@ msgid "Hostname Configuration"
msgstr "Configurazione Hostname"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
msgstr ""
"L'hostname e' il nome del computer. Se il vostro computer e' connesso ad\n"
"una rete, l'hostname viene normalmente assegnato dall'amministratore\n"
"della rete."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Hostname"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"Un custom bootdisk vi permette di caricare il vostro sistema Red Hat Linux "
-"senza dipendere dal normale bootloader. Questo e' utile se non volete "
-"installare LILO, o se un altro sistema operativo o il vostro hardware non vi "
-"permette di usare LILO. Un custom bootdisk puo' essere usato anche come "
-"immagine del disco Red Hat rescue, permettendo di ripristinare piu' "
-"facilmente un server danneggiato.\n"
+"Un custom bootdisk vi permette di caricare il vostro sistema Red Hat Linux senza dipendere dal normale bootloader. Questo e' utile se non volete installare LILO, o se un altro sistema operativo o il vostro hardware non vi permette di usare LILO. Un custom bootdisk puo' essere usato anche come immagine del disco Red Hat rescue, permettendo di ripristinare piu' facilmente un server danneggiato.\n"
"\n"
"Volete creare un bootdisk per il vostro sistema ?"
@@ -389,13 +303,8 @@ msgid "Installation to begin"
msgstr "Passi dell'installazione"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Un file di log della vostra installazione verra' memorizzato in "
-"/tmp/install.log. Potete consultare questo file per controllare la vostra "
-"installazione."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Un file di log della vostra installazione verra' memorizzato in /tmp/install.log. Potete consultare questo file per controllare la vostra installazione."
#: ../text.py:606
msgid "Complete"
@@ -405,44 +314,27 @@ msgstr "Completo"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"Congratulazioni, l'installazione e' completa.\n"
"\n"
-"Rimuovete il supporto e premete return per il reboot. Per maggiori "
-"informazioni su questa release di Red Hat Linux, consultate l'Errata sul "
-"sito http://www.redhat.it.\n"
+"Rimuovete il supporto e premete return per il reboot. Per maggiori informazioni su questa release di Red Hat Linux, consultate l'Errata sul sito http://www.redhat.it.\n"
"\n"
-"Le informazioni sulla configurazione sono disponibili nel capitolo "
-"post-installazione nella guida ufficiale di Red Hat Linux per l'utente, "
-"versione italiana."
+"Le informazioni sulla configurazione sono disponibili nel capitolo post-installazione nella guida ufficiale di Red Hat Linux per l'utente, versione italiana."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Inserite un dischetto vuoto ma gia' formattato nel primo floppy. Tutti i "
-"dati presenti sul dischetto vengono cancellati durante la creazione del "
-"disco di boot."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Inserite un dischetto vuoto ma gia' formattato nel primo floppy. Tutti i dati presenti sul dischetto vengono cancellati durante la creazione del disco di boot."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Salta"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"Errore durante la creazione del disco di boot. Assicuratevi di aver inserito "
-"un disco gia' formattato nel primo floppy."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "Errore durante la creazione del disco di boot. Assicuratevi di aver inserito un disco gia' formattato nel primo floppy."
#: ../text.py:697
msgid "Package Installation"
@@ -505,18 +397,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> tra elementi | <Spazio> seleziona | <F12> successivo "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> tra elementi | <Spazio> seleziona | <F12> successivo "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Benvenuti"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "Partizione"
@@ -536,8 +424,7 @@ msgstr "Swap"
msgid "Filesystem Formatting"
msgstr "Formattazione del Filesystem"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "Configurazione di LILO"
@@ -601,8 +488,7 @@ msgstr "Installazione del sistema"
msgid "Installation Complete"
msgstr "Installazione completa"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "Configurazione di LILO"
@@ -631,175 +517,172 @@ msgstr "Cancellato"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "Non posso andare al punto precedente da qui. Potete provare ancora."
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "Errore di scrittura del file %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "Errore di scrittura del file %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Creazione del bootdisk..."
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Formattazione del Filesystem"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "Creazione di un filesystem ext2 su /dev/%s ..."
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Creazione del bootdisk..."
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Rimanente"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "Invio di una richiesta per le informazioni IP ..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "nessun suggerimento"
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "Tutto"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Errore di scrittura del file %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Rimanente"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "Ricerca pacchetti da aggiornare..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr "Processing"
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Verifica dei file da installare..."
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Rimanente"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr "Ricostruzione del database RPM ..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
-msgstr ""
-"Ricostruzione del database RPM fallita. Avete abbastanza spazio sul disco ?"
+msgstr "Ricostruzione del database RPM fallita. Avete abbastanza spazio sul disco ?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Installazione dei pacchetti"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-"Non c'e' abbastanza spazio sul disco per installare i pacchetti che avete "
-"selezionato. Avete bisogno di piu' spazio in questo filesystem:\n"
+"Non c'e' abbastanza spazio sul disco per installare i pacchetti che avete selezionato. Avete bisogno di piu' spazio in questo filesystem:\n"
"\n"
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Mount Point"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr "Spazio necessario"
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "Spazio su disco"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Installazione"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "Test della configurazione"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "Scheda video"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Ram video"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Server"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Impossibile trovare il secondo livello ramdisk"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Monitor"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "Intervallo di frequenze orrizontali"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "Intervallo di frequenze verticali"
@@ -828,8 +711,7 @@ msgstr "Password:"
msgid "Password (confirm)"
msgstr "Password (di nuovo)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Nome completo"
@@ -837,15 +719,11 @@ msgstr "Nome completo"
msgid "Add"
msgstr "Aggiungi"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Modifica"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Cancella"
@@ -961,8 +839,7 @@ msgstr "Workstation GNOME"
msgid "KDE Workstation"
msgstr "Workstation KDE"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Server"
@@ -1006,7 +883,7 @@ msgstr "Variante"
msgid "Test your selection here:"
msgstr "Tipo di tastiera:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Che lingua desiderate usare durante l'installazione ?"
@@ -1046,19 +923,15 @@ msgstr "Creazione del boot disk"
msgid "Do not install LILO"
msgstr "Non installare LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Default"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Tipo partizione"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Boot label"
@@ -1066,43 +939,43 @@ msgstr "Boot label"
msgid "Emulate 3 Buttons"
msgstr "Emulazione 3 pulsanti ?"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Configurazione tramite DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Attivazione al boot"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "Indirizzo IP"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Netmask"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Rete"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Broadcast"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Gateway"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "DNS primario"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "DNS secondario"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "DNS terziario"
@@ -1187,15 +1060,8 @@ msgid "Low Memory"
msgstr "Poca memoria"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Non avete abbastanza memoria su questa macchina. E' necessario attivare "
-"l'area di swap immediatamente. Per fare questo e' necessario creare una una "
-"partizione nella tabella delle partizioni che avete configurato. Volete "
-"procedere ?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Non avete abbastanza memoria su questa macchina. E' necessario attivare l'area di swap immediatamente. Per fare questo e' necessario creare una una partizione nella tabella delle partizioni che avete configurato. Volete procedere ?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1206,21 +1072,17 @@ msgstr "Partizionamento automatico"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"Se non volete attivare questa operazione, potete continuare l'installazione "
-"partizionando manualmente, oppure potete tornare indietro per scegliere una "
-"installazione personalizzata."
+"Se non volete attivare questa operazione, potete continuare l'installazione partizionando manualmente, oppure potete tornare indietro per scegliere una installazione personalizzata."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Cancellazione dati"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "Partizionamento manuale"
@@ -1281,7 +1143,7 @@ msgstr "Intervallo di frequenze verticali"
msgid "Test failed"
msgstr "Test fallito"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "Configurazione personalizzata di X"
@@ -1289,62 +1151,43 @@ msgstr "Configurazione personalizzata di X"
msgid "Bits per Pixel"
msgstr "Bit per pixel"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Test della configurazione"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"Nella maggior parte dei casi l'hardware video puo' essere rilevato "
-"automaticamente per determinare la miglior configurazione del sistema."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "Nella maggior parte dei casi l'hardware video puo' essere rilevato automaticamente per determinare la miglior configurazione del sistema."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "Rilevazione automatica:"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"Non e' possibile rilevare automaticamente il monitor. Scegliete il modello "
-"del vostro monitor."
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "Non e' possibile rilevare automaticamente il monitor. Scegliete il modello del vostro monitor."
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Volete il login grafico"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "Salta la configurazione X"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"Alcuni sistemi hanno bisogno di trasmettere al kernel alcune opzioni al "
-"momento del boot per poter funzionare correttamente. Se dovete inserire "
-"queste opzioni inseritele ora, altrimenti potete lasciare questo campo vuoto."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "Alcuni sistemi hanno bisogno di trasmettere al kernel alcune opzioni al momento del boot per poter funzionare correttamente. Se dovete inserire queste opzioni inseritele ora, altrimenti potete lasciare questo campo vuoto."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Volete installare il bootloader ?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Clear"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Cancella"
@@ -1353,24 +1196,12 @@ msgid "Edit Boot Label"
msgstr "Modifica Boot Label"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Il bootmanager di Red Hat Linux puo' caricare altri sistemi operativi. "
-"Dovete selezionare quale partizione volete abilitare per il boot e con quale "
-"etichetta."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Il bootmanager di Red Hat Linux puo' caricare altri sistemi operativi. Dovete selezionare quale partizione volete abilitare per il boot e con quale etichetta."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Alcuni pacchetti che avete selezionato richiedono la presenza di altri "
-"pacchetti non selezionati. Se premete OK tutte queste dipendenze verranno "
-"installate."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Alcuni pacchetti che avete selezionato richiedono la presenza di altri pacchetti non selezionati. Se premete OK tutte queste dipendenze verranno installate."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1378,31 +1209,19 @@ msgstr "Setup del disco"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid e' un tool per partizionare e gestire i punti di mount. E' stato "
-"creato per rendere semplice e potente l'utilizzo del piu' tradizionale "
-"fdisk. Tuttavia in alcuni casi puo' essere utile continuare ad utilizzare "
-"fdisk.\n"
+"Disk Druid e' un tool per partizionare e gestire i punti di mount. E' stato creato per rendere semplice e potente l'utilizzo del piu' tradizionale fdisk. Tuttavia in alcuni casi puo' essere utile continuare ad utilizzare fdisk.\n"
"\n"
"Quale utility volete usare ?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Per installare Red Hat Linux, dovete avere almeno una partizione con 150 MB "
-"dedicati a Linux. Vi suggeriamo di creare questa partizione in uno dei primi "
-"due dischi del sistema per permettere a LILO di avviare Linux."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Per installare Red Hat Linux, dovete avere almeno una partizione con 150 MB dedicati a Linux. Vi suggeriamo di creare questa partizione in uno dei primi due dischi del sistema per permettere a LILO di avviare Linux."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Fatto"
@@ -1411,11 +1230,7 @@ msgid "Continue"
msgstr "Continuare"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
msgstr ""
"Quali partizioni desiderate formattare? Vi suggeriamo di formattare tutte\n"
"le partizioni di sistema, incluse /, /usr, e /var. Non c'e' bisogno di\n"
@@ -1439,13 +1254,9 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
msgstr ""
-"Inserite la password di root. Dovete digitare due volte la password per "
-"eliminare gli errori di digitazione. Ricordatevi che la password di root\n"
+"Inserite la password di root. Dovete digitare due volte la password per eliminare gli errori di digitazione. Ricordatevi che la password di root\n"
"e' fondamentale per la sicurezza del sistema!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
@@ -1497,10 +1308,7 @@ msgid "This user id already exists. Choose another."
msgstr "Utente gia' esistente. Sceglierne un altro."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
msgstr ""
"Dovreste utilizzare un'account generica per la maggior parte delle\n"
"attivita' sul vostro sistema. Riducete il piu' possibile l'uso\n"
@@ -1508,14 +1316,8 @@ msgstr ""
"erroneamente la configurazione del sistema."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"Quale account vi piacerebbe avere ? Dovreste avere almeno un'account "
-"non-root per l'uso normale del calcolatore. I sistemi multi-user possono "
-"avere un numero elevato di account."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "Quale account vi piacerebbe avere ? Dovreste avere almeno un'account non-root per l'uso normale del calcolatore. I sistemi multi-user possono avere un numero elevato di account."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1553,8 +1355,7 @@ msgstr "o usa:"
msgid "Request server via broadcast"
msgstr "Request server via broadcast"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Mount Point non corretto"
@@ -1623,45 +1424,26 @@ msgid "Too Many Drives"
msgstr "Troppi drive"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Avete piu' drive di quelli supportati dal programma standard. Usate il "
-"programma fdisk per settare i vostri drive. Inviate una e-mail a "
-"support@redhat.it allegando una lista del vostro hardware. Grazie !"
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Avete piu' drive di quelli supportati dal programma standard. Usate il programma fdisk per settare i vostri drive. Inviate una e-mail a support@redhat.it allegando una lista del vostro hardware. Grazie !"
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Nessun Drive trovato"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Errore rilevato - non sono stati trovati device su cui creare un nuovo "
-"filesystem. Verificate l'hardware per risolvere questo problema."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Errore rilevato - non sono stati trovati device su cui creare un nuovo filesystem. Verificate l'hardware per risolvere questo problema."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Errore rilevato leggendo la tabella delle partizioni per il block device %s. "
-"Errore:"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Errore rilevato leggendo la tabella delle partizioni per il block device %s. Errore:"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"La tabella delle partizioni sul device %s e' danneggiata. Per creare nuove "
-"partizioni bisogna inizializzare, causando la PERDITA DI TUTTI I DATI nel "
-"drive."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "La tabella delle partizioni sul device %s e' danneggiata. Per creare nuove partizioni bisogna inizializzare, causando la PERDITA DI TUTTI I DATI nel drive."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1684,14 +1466,8 @@ msgid "BSD Disklabel"
msgstr "BSD Disklabel "
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"Un BSD disklabel e' stato trovato. L'installazione di Red Hat supporta i BSD "
-"Disklabel in sola lettura. Dovete usare l'installazione custom e fdisk ( al "
-"posto di Disk Druid ) per le macchine con disklabel BSD."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "Un BSD disklabel e' stato trovato. L'installazione di Red Hat supporta i BSD Disklabel in sola lettura. Dovete usare l'installazione custom e fdisk ( al posto di Disk Druid ) per le macchine con disklabel BSD."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1718,10 +1494,7 @@ msgstr "Cancella Partizioni"
msgid "Are you sure you want to delete this partition?"
msgstr "Siete sicuri di voler cancellare questa partizione?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Edit partition"
@@ -1761,58 +1534,38 @@ msgstr "Tipo partizione"
msgid "Allowable Drives:"
msgstr "Drive permessi:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Nessun punto di mount"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Non avete selezionato nessun punto di mount per questa partizione. Siete "
-"sicuri ?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Non avete selezionato nessun punto di mount per questa partizione. Siete sicuri ?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Errore nel punto di moount"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Il punto di mount richiesto e' sbagliato o gia' in uso. Selezionare un punto "
-"di mount valido."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Il punto di mount richiesto e' sbagliato o gia' in uso. Selezionare un punto di mount valido."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "Size Error"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"La dimensione richiesta e' illegale. Verificate che sia > di 0 e nel formato "
-"decimale ( base 10 )."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "La dimensione richiesta e' illegale. Verificate che sia > di 0 e nel formato decimale ( base 10 )."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Dimensione area di swap errata"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Avete creato una partizione di swap troppo larga. La dimensione massima "
-"della partizione di swap e' %ld Megabytes."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Avete creato una partizione di swap troppo larga. La dimensione massima della partizione di swap e' %ld Megabytes."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1820,24 +1573,17 @@ msgstr "No RAID Drive Constraint"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
-msgstr ""
-"Non avete selezionato nessun punto di mount per questa partizione. Siete "
-"sicuri ?"
+msgstr "Non avete selezionato nessun punto di mount per questa partizione. Siete sicuri ?"
#: ../libfdisk/gnomefsedit.c:1114
msgid "Close"
msgstr "Chiudi"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Avete configurato una partizione RAID senza limitare la partizione ad un "
-"drive singolo. "
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Avete configurato una partizione RAID senza limitare la partizione ad un drive singolo. "
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1847,30 +1593,17 @@ msgstr "RAID Entry Incompleta"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"Il dispositivo raid /dev/%s contiene delle partizioni non allocate. Il "
-"dispositivo raid /dev/%s sara' decomposto nelle sue partizioni. Ricostruite "
-"il dispositivo raid con le partizioni allocate."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "Il dispositivo raid /dev/%s contiene delle partizioni non allocate. Il dispositivo raid /dev/%s sara' decomposto nelle sue partizioni. Ricostruite il dispositivo raid con le partizioni allocate."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Partizioni non allocate"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Ci sono partizioni non allocate presenti nella lista delle partizioni "
-"richieste. Le partizioni non allocate sono visualizzate qui sotto."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Ci sono partizioni non allocate presenti nella lista delle partizioni richieste. Le partizioni non allocate sono visualizzate qui sotto."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1890,28 +1623,19 @@ msgstr "Partizioni per RAID arry"
#: ../libfdisk/gnomefsedit.c:1880
msgid "You have not selected a mount point. A mount point is required."
-msgstr ""
-"Non avete selezionato nessun punto di mount. Un punto di mount e' richiesto. "
+msgstr "Non avete selezionato nessun punto di mount. Un punto di mount e' richiesto. "
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Il punto di mount richiesto e' sbagliato o gia' in uso. Selezionare un punto "
-"di mount valido."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Il punto di mount richiesto e' sbagliato o gia' in uso. Selezionare un punto di mount valido."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "Avviso per il boot da RAID"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Il dispositivo raid e' stato selezionato come partizione di boot. "
-"Assicuratevi che le partizioni siano avviabili."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Il dispositivo raid e' stato selezionato come partizione di boot. Assicuratevi che le partizioni siano avviabili."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1927,24 +1651,16 @@ msgstr "Dispositivo RAID utilizzato"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"Il dispositivo raid \"/dev/%s\" e' gia' stato configurato come un "
-"dispositivo raid. Si prega di selezionarne un altro."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "Il dispositivo raid \"/dev/%s\" e' gia' stato configurato come un dispositivo raid. Si prega di selezionarne un altro."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Non ci sono abbastanza partizioni"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
-msgstr ""
-"Non avete configurato abbastanza partizioni per il tipo di RAID che avete "
-"selezionato."
+msgid "You have not configured enough partitions for the RAID type you have selected."
+msgstr "Non avete configurato abbastanza partizioni per il tipo di RAID che avete selezionato."
#: ../libfdisk/gnomefsedit.c:1942
msgid "Illegal /boot RAID Type"
@@ -1956,14 +1672,8 @@ msgstr "Partizioni di boot (/boot) sono permesse solo sui RAID-1."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"La partizione %s e' una partizione pre-esistente nell'insieme delle "
-"partizioni di questo dispositivo RAID. Il mount point e' configurato a "
-"/boot. Siete sicuri che sia possibile avviare questa partizione ?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "La partizione %s e' una partizione pre-esistente nell'insieme delle partizioni di questo dispositivo RAID. Il mount point e' configurato a /boot. Siete sicuri che sia possibile avviare questa partizione ?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2027,12 +1737,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "Partizioni non allocate ..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Dovete assegnare la partizione di root (/) ad una partizione Linux nativa "
-"(ext2) per continuare l'installazione."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Dovete assegnare la partizione di root (/) ad una partizione Linux nativa (ext2) per continuare l'installazione."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2083,12 +1789,8 @@ msgid "No Root Partition"
msgstr "Nessuna partizione di root"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Dovete assegnare la partizione di root (/) ad una partizione Linux nativa "
-"(ext2) per continuare l'installazione."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Dovete assegnare la partizione di root (/) ad una partizione Linux nativa (ext2) per continuare l'installazione."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2100,13 +1802,11 @@ msgstr "Dovete assegnare una partizione swap per il processo d'installazione."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"Ci sono delle partizioni non allocate. Se uscite non verranno scritte sul "
-"disco.\n"
+"Ci sono delle partizioni non allocate. Se uscite non verranno scritte sul disco.\n"
"\n"
"Siete sicuri di voler uscire?"
@@ -2143,20 +1843,14 @@ msgid "Miscellaneous"
msgstr "Miscellaneous"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"A questo modulo e' possibile aggiungere dei parametri. Se non volete "
-"aggiungerli, potete premere il pulsante OK."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "A questo modulo e' possibile aggiungere dei parametri. Se non volete aggiungerli, potete premere il pulsante OK."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "Parametri del kernel"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "Device"
@@ -2169,20 +1863,12 @@ msgid "Failed to mount floppy disk."
msgstr "Connessione al server fallita"
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"Il floppy che avete inserito non e' corretto per questa release di Red Hat "
-"Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "Il floppy che avete inserito non e' corretto per questa release di Red Hat Linux."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Quale driver provate ? Se il driver non e' presente in questa lista, ma "
-"avete un dischetto separato, premete il tasto F12."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Quale driver provate ? Se il driver non e' presente in questa lista, ma avete un dischetto separato, premete il tasto F12."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2211,15 +1897,15 @@ msgstr "Errore di lettura del file %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Errore nella linea %d del file kickstart %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "Scelta della lingua"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Tipo di tastiera"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Che tipo di tastiera avete ?"
@@ -2235,136 +1921,116 @@ msgstr "Immagine NFS"
msgid "Hard drive"
msgstr "Dischi fisso"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Benvenuti in Red Hat Linux!"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> tra elementi | <Spazio> seleziona | <F12> successivo "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> tra elementi | <Spazio> seleziona | <F12> successivo "
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Quale tipo di device desiderate aggiungere ?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "Sono stati trovati i seguenti device nel vostro sistema:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "Aggiungi Device"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"Non c'e' nessun device driver particolare caricato nel vostro sistema. "
-"Volete caricarne qualcuno ora?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "Non c'e' nessun device driver particolare caricato nel vostro sistema. Volete caricarne qualcuno ora?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "Loading"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "Caricamento del secondo stadio ramdisk..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Errore di lettura del ramdisk."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Dischi fissi"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"Non avete definito nessun hard drive nel vostro sistema! Volete configurare "
-"ulteriori dispositivi ?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "Non avete definito nessun hard drive nel vostro sistema! Volete configurare ulteriori dispositivi ?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"In quale partizione e directory si trovano le directory RedHat/RPMS e "
-"RedHat/base. Se non vedete il disk drive nella lista, premete F2 per "
-"configurare ulteriori devices."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "In quale partizione e directory si trovano le directory RedHat/RPMS e RedHat/base. Se non vedete il disk drive nella lista, premete F2 per configurare ulteriori devices."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Directory contenente Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Selezionare Partizione"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "Il device %s non sembra contenere l'albero d'installazione Red Hat"
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"Non riesco a trovare il CDROM Red Hat Linux in nessun drive CDROM. Inserite "
-"il CD Red Hat e premete OK per riprovare."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "Non riesco a trovare il CDROM Red Hat Linux in nessun drive CDROM. Inserite il CD Red Hat e premete OK per riprovare."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "La directory non sembra contenere l'albero d'installazione Red Hat."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Impossibile montare la directory dal server"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Impossibile trovare il secondo livello ramdisk"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "Metodo Rescue"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "Metodo d'installazione"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Dove e' contenuta l'immagine rescue ?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Dove sono i pacchetti da installare ?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Non posso trovare ks.cfg nel floppy di boot."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC Card"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "Inizializzazione del PC Card Device ..."
@@ -2395,9 +2061,7 @@ msgstr ""
" Hat Linux per la vostra architettura"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
msgstr ""
"Inserire la configurazione IP. In ogni campo si deve inserire un\n"
"indirizzo IP nella notazione dotted-decimal (per esempio 10.0.0.30)."
@@ -2464,9 +2128,7 @@ msgid "Network device"
msgstr "Network Setup"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr " <Tab>/<Alt-Tab> tra elementi | <Spazio> seleziona | <F12> successivo "
#: ../loader/net.c:699
@@ -2547,22 +2209,12 @@ msgid "You must enter a directory."
msgstr "Bisogna inserire una directory."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Se state usando un server ftp non anonymous o un server ftp proxy inserite "
-"il nome e la password che desiderate usare. Se state usando un proxy FTP "
-"inserite il nome del proxy FTP server da usare."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Se state usando un server ftp non anonymous o un server ftp proxy inserite il nome e la password che desiderate usare. Se state usando un proxy FTP inserite il nome del proxy FTP server da usare."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"Se state usando un server HTTP proxy inserite il nome del server proxy HTTP "
-"che desiderate usare."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "Se state usando un server HTTP proxy inserite il nome del server proxy HTTP che desiderate usare."
#: ../loader/urls.c:295
msgid "Account name:"
@@ -2588,34 +2240,17 @@ msgstr "Porta Proxy HTTP:"
msgid "Loading SCSI driver"
msgstr "Caricamento dello SCSI driver"
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "Un disco con un disklabel Sun errato e' stato trovato leggendo il device %s "
-#~ "Potete usare fdisk per creare e scrivere una nuova etichetta per questo "
-#~ "disco."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "Un disco con un disklabel Sun errato e' stato trovato leggendo il device %s Potete usare fdisk per creare e scrivere una nuova etichetta per questo disco."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Disklabel Sun errato"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Dovete assegnare la partizione di root (/) ad una partizione Linux nativa "
-#~ "(ext2) oppure ad una partizione RAID-1 per continuare l'installazione."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Dovete assegnare la partizione di root (/) ad una partizione Linux nativa (ext2) oppure ad una partizione RAID-1 per continuare l'installazione."
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Poiche' e' stata assegnata la partizione di root (/) ad un dispositivo RAID, "
-#~ "dovete anche assegnare la partizione boot (/boot) ad una partizione Linux "
-#~ "nativa (ext2) o ad una partizione RAID-1 per poter proseguire "
-#~ "nell'installazione."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Poiche' e' stata assegnata la partizione di root (/) ad un dispositivo RAID, dovete anche assegnare la partizione boot (/boot) ad una partizione Linux nativa (ext2) o ad una partizione RAID-1 per poter proseguire nell'installazione."
#~ msgid "Use fdisk to format drives"
#~ msgstr "Usare fdisk per partizionare i drive"
@@ -2689,28 +2324,11 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "I can't find the device anywhere on your system!"
#~ msgstr "Non e' possibile trovare il dispositivo nel vostro sistema!"
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "Il alcuni casi, il driver %s ha bisogno di informazioni aggiuntive per "
-#~ "funzionare correttamente. Volete specificare delle opzioni aggiuntive o "
-#~ "lasciare al sistema la rilevazione del dispositivo ? In alcuni casi la "
-#~ "rilevazione puo' bloccare il computer, ma non dovrebbe causare nessun danno."
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "Il alcuni casi, il driver %s ha bisogno di informazioni aggiuntive per funzionare correttamente. Volete specificare delle opzioni aggiuntive o lasciare al sistema la rilevazione del dispositivo ? In alcuni casi la rilevazione puo' bloccare il computer, ma non dovrebbe causare nessun danno."
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "In molti casi, il driver %s ha bisogno di informazioni aggiuntive sul vostro "
-#~ "hardware. Se preferite, e' possibile provare i parametri piu' comuni. Questo "
-#~ "processo puo' bloccare il calcolatore, anche se non danneggiera' il vostro "
-#~ "sistema."
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "In molti casi, il driver %s ha bisogno di informazioni aggiuntive sul vostro hardware. Se preferite, e' possibile provare i parametri piu' comuni. Questo processo puo' bloccare il calcolatore, anche se non danneggiera' il vostro sistema."
#~ msgid "Module options:"
#~ msgstr "Opzioni del modulo:"
@@ -2743,8 +2361,7 @@ msgstr "Caricamento dello SCSI driver"
#~ msgstr "Eliminazione dei vecchi file..."
#~ msgid "Error installing package: cannot open RPM file for %s: %s"
-#~ msgstr ""
-#~ "Errore durante l'installazione: impossibile aprire il file RPM %s: %s"
+#~ msgstr "Errore durante l'installazione: impossibile aprire il file RPM %s: %s"
#~ msgid "Force supplemental disk"
#~ msgstr "Forzare il disco supplementare"
@@ -2773,12 +2390,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "PCMCIA Disk"
#~ msgstr "Disco PCMCIA"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Impossibile montare il floppy. Inserire il disco PCMCIA Red Hat, o scegliere "
-#~ "Cancella per attivare una diversa installazione."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Impossibile montare il floppy. Inserire il disco PCMCIA Red Hat, o scegliere Cancella per attivare una diversa installazione."
#~ msgid "Loading PCMCIA Support"
#~ msgstr "Caricamento del supporto PCMCIA"
@@ -2786,12 +2399,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "Supplemental Disk"
#~ msgstr "Disco supplementare"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Impossibile montare il floppy. Inserire il disco supplementare Red Hat o "
-#~ "selezionare Cancella per scegliere una diversa installazione."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Impossibile montare il floppy. Inserire il disco supplementare Red Hat o selezionare Cancella per scegliere una diversa installazione."
#~ msgid "Loading Supplemental Disk..."
#~ msgstr "Caricamento disco supplementare..."
@@ -2799,27 +2408,14 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "Driver Disk"
#~ msgstr "Disk Driver"
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "Questo metodo d'installazione richiede un disk driver. Rimuovere il disco "
-#~ "presente nel driver e sostituirlo con il modules disk Red Hat."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "Questo metodo d'installazione richiede un disk driver. Rimuovere il disco presente nel driver e sostituirlo con il modules disk Red Hat."
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Impossibile montare il floppy. Inserire il modules disk Red Hat, o "
-#~ "selezionare Cancella per scegliere una diversa installazione."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Impossibile montare il floppy. Inserire il modules disk Red Hat, o selezionare Cancella per scegliere una diversa installazione."
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "Questo metodo d'installazione richiede due dischi aggiuntivi. Sostituire il "
-#~ "boot disk presente nel drive con il disco Red Hat supplementare"
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "Questo metodo d'installazione richiede due dischi aggiuntivi. Sostituire il boot disk presente nel drive con il disco Red Hat supplementare"
#~ msgid "hd command"
#~ msgstr "comando hd"
@@ -2872,14 +2468,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "mount failed: %s"
#~ msgstr "mount fallito: %s"
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "La tabella delle partizioni sul device %s e' danneggiata. Per creare nuove "
-#~ "partizioni bisogna inizializzare. Potete specificare \"zerombr yes\" nel "
-#~ "file kickstartper ottenere automaticamente questa funzione"
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "La tabella delle partizioni sul device %s e' danneggiata. Per creare nuove partizioni bisogna inizializzare. Potete specificare \"zerombr yes\" nel file kickstartper ottenere automaticamente questa funzione"
#~ msgid "Zero Partition Table"
#~ msgstr "Zero Partition Table"
@@ -2889,8 +2479,7 @@ msgstr "Caricamento dello SCSI driver"
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "argomento errato per il comando kickstart zerombr: %s.\n"
-#~ "Deve essere 'on',1, o 'yes' per abilitare oppure 'off','0' o 'no' per "
-#~ "disabilitare."
+#~ "Deve essere 'on',1, o 'yes' per abilitare oppure 'off','0' o 'no' per disabilitare."
#~ msgid "Clear Partition Command"
#~ msgstr "Clear Partition Command"
@@ -2907,12 +2496,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "Option Ignored"
#~ msgstr "Opzione ignorata"
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "L'opzione --maxsize per la partizione %s e' stata ignorata. Controllate che "
-#~ "non sia piu' grande dell'opzione --size."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "L'opzione --maxsize per la partizione %s e' stata ignorata. Controllate che non sia piu' grande dell'opzione --size."
#~ msgid "The mount point %s is already in use."
#~ msgstr "Il punto di mount %s e' gia' in uso."
@@ -2923,13 +2508,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "The partition %s could not be allocated."
#~ msgstr "La partizione %s non puo' essere allocata."
-#~ msgid ""
-#~ "There are partitions that can be resized nondestructively to make room for "
-#~ "your Red Hat Linux installation. Do you want to resize these partitions now?"
-#~ msgstr ""
-#~ "Ci sono delle partizioni che possono essere ridimensionate per "
-#~ "l'installazione di Red Hat Linux. Volete ridimensionare queste partizioni "
-#~ "ora ?"
+#~ msgid "There are partitions that can be resized nondestructively to make room for your Red Hat Linux installation. Do you want to resize these partitions now?"
+#~ msgstr "Ci sono delle partizioni che possono essere ridimensionate per l'installazione di Red Hat Linux. Volete ridimensionare queste partizioni ora ?"
#~ msgid "Success"
#~ msgstr "Terminato"
@@ -2994,19 +2574,11 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "Scanning hard drives..."
#~ msgstr "Ricerca dischi fissi..."
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "Non e' stato rilevato nessun disco fisso! Probabilmente avete dimenticato di "
-#~ "configurare il controller SCSI."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "Non e' stato rilevato nessun disco fisso! Probabilmente avete dimenticato di configurare il controller SCSI."
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "Per installare Red Hat Linux, dovete avere almeno una partizione da 150 MB "
-#~ "dedicata a Linux."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "Per installare Red Hat Linux, dovete avere almeno una partizione da 150 MB dedicata a Linux."
#~ msgid "Partition Disks"
#~ msgstr "Partizioni del Disco"
@@ -3015,18 +2587,10 @@ msgstr "Caricamento dello SCSI driver"
#~ msgstr "Reboot necessario"
#~ msgid ""
-#~ "The kernel is unable to read your new partitioning information, probably "
-#~ "because you modified extended partitions. While this is not critical, you "
-#~ "must reboot your machine before proceeding. Insert the Red Hat boot disk now "
-#~ "and press Return to reboot your system.\n"
+#~ "The kernel is unable to read your new partitioning information, probably because you modified extended partitions. While this is not critical, you must reboot your machine before proceeding. Insert the Red Hat boot disk now and press Return to reboot your system.\n"
#~ "\n"
-#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an "
-#~ "empty SCSI drive can also cause this problem."
-#~ msgstr ""
-#~ "Il kernel non riesce a leggere le nuove partizioni, probabilmente perche' "
-#~ "sono state modificate le partizioni estese. Dovreste riavviare il vostro "
-#~ "sistema prima di continuare. Inserire il disco di boot e premere Return per "
-#~ "riavviare il vostro sistema."
+#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an empty SCSI drive can also cause this problem."
+#~ msgstr "Il kernel non riesce a leggere le nuove partizioni, probabilmente perche' sono state modificate le partizioni estese. Dovreste riavviare il vostro sistema prima di continuare. Inserire il disco di boot e premere Return per riavviare il vostro sistema."
#~ msgid "lilo command"
#~ msgstr "comando lilo"
@@ -3037,26 +2601,14 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "PCMCIA Support"
#~ msgstr "Supporto PCMCIA"
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "Avete bisogno di usare periferiche PCMCIA durante l'installazione? "
-#~ "Rispondete no se avete bisogno del supporto PCMCIA solo dopo "
-#~ "l'installazione. Non avete bisogno del supporto PCMCIA se state installando "
-#~ "Red Hat Linux su un laptop con CDROM integrato."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "Avete bisogno di usare periferiche PCMCIA durante l'installazione? Rispondete no se avete bisogno del supporto PCMCIA solo dopo l'installazione. Non avete bisogno del supporto PCMCIA se state installando Red Hat Linux su un laptop con CDROM integrato."
#~ msgid "PCMCIA Support Disk"
#~ msgstr "PCMCIA Disco di supporto"
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "Il supporto PCMCIA richiede un disco supplementare. Sostituite il disco nel "
-#~ "vostro drive con il disco Red Hat PCMCIA."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "Il supporto PCMCIA richiede un disco supplementare. Sostituite il disco nel vostro drive con il disco Red Hat PCMCIA."
#~ msgid "Starting PCMCIA services..."
#~ msgstr "Attivazione servizi PCMCIA..."
@@ -3135,14 +2687,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "Upgrade log"
#~ msgstr "Log di aggiornamento"
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "L'elenco dei pacchetti aggiornati verra' memorizzato in /tmp/upgrade.log al "
-#~ "termine dell'aggiornamento. Dopo il reboot verificate con questo file "
-#~ "l'aggiornamento del sistema."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "L'elenco dei pacchetti aggiornati verra' memorizzato in /tmp/upgrade.log al termine dell'aggiornamento. Dopo il reboot verificate con questo file l'aggiornamento del sistema."
#~ msgid "rootpw command"
#~ msgstr "comando rootpw"
@@ -3159,19 +2705,11 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "Installation Path"
#~ msgstr "Percorso d'installazione"
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "Volete installare un nuovo sistema o aggiornare un sistema che contiene Red "
-#~ "Hat Linux 2.0 o successivi ?"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "Volete installare un nuovo sistema o aggiornare un sistema che contiene Red Hat Linux 2.0 o successivi ?"
-#~ msgid ""
-#~ "What type of machine are you installing? For maximum flexibility, choose "
-#~ "\"Custom\"."
-#~ msgstr ""
-#~ "Che tipo di sistema volete installare ? Per maggior flessibilita', "
-#~ "selezionate\"Custom\"."
+#~ msgid "What type of machine are you installing? For maximum flexibility, choose \"Custom\"."
+#~ msgstr "Che tipo di sistema volete installare ? Per maggior flessibilita', selezionate\"Custom\"."
#~ msgid "Converting RPM database..."
#~ msgstr "Conversione database RPM..."
@@ -3185,25 +2723,17 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
#~ msgstr ""
#~ "Errore durante la fase \"%s\" dell'installazione.\n"
#~ "\n"
-#~ "Potete riprovare , ritornare alla fase precedente o tornare al menu "
-#~ "d'installazione. Usate questa opzione (menu) solo se avete una certa "
-#~ "familiarita' con Red Hat Linux. Cosa volete fare ?"
+#~ "Potete riprovare , ritornare alla fase precedente o tornare al menu d'installazione. Usate questa opzione (menu) solo se avete una certa familiarita' con Red Hat Linux. Cosa volete fare ?"
#~ msgid " Continue with install"
#~ msgstr "Continuare l'installazione"
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
-#~ msgstr ""
-#~ "Quali passi volete attivare ? Le fasi con un * sono gia' state completate"
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
+#~ msgstr "Quali passi volete attivare ? Le fasi con un * sono gia' state completate"
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
#~ msgstr "Inserire un dischetto vuoto nel primo driver /dev/fd0."
@@ -3220,9 +2750,7 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "Kernel"
#~ msgstr "Kernel"
-#~ msgid ""
-#~ "Please insert your boot disk in your first disk drive if it's not already "
-#~ "present."
+#~ msgid "Please insert your boot disk in your first disk drive if it's not already present."
#~ msgstr "Inserire nel drive il vostro primo disco se non e'gia presente."
#~ msgid "Copying kernel from floppy..."
@@ -3273,12 +2801,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "No Swap Space"
#~ msgstr "Nessuna area di swap"
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "Quale partizione volete usare per l'area di swap? Questo eliminera' tutti i "
-#~ "dati esistenti nella partizione."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "Quale partizione volete usare per l'area di swap? Questo eliminera' tutti i dati esistenti nella partizione."
#~ msgid "Active Swap Space"
#~ msgstr "Area di swap attiva"
@@ -3295,9 +2819,7 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "Ethernet Probe"
#~ msgstr "Rilevazione della scheda di rete"
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
#~ msgstr ""
#~ "Non e' stato possibile rilevare la scheda Ethernet. Premere <Enter> per\n"
#~ "attivare la configuzione manuale."
@@ -3317,9 +2839,7 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "kickstart network command is missing ip address"
#~ msgstr "indirizzo ip non trovato nel comando di rete kickstart"
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
#~ msgstr ""
#~ "Come volete inizializzare l'indirizzo IP ? Se il vostro\n"
#~ "amministratore di sistema vi fornisce un indirizzo IP, scegliete IP statico."
@@ -3336,18 +2856,12 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "cannot open file: %s"
#~ msgstr "non e' possibile aprire il file %s"
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
#~ msgstr ""
#~ "Non e' possibile determinare automaticamente l'hostname. Premere\n"
#~ "<Enter> per inserire le informazioni sul nome dell'host."
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
#~ msgstr ""
#~ "Inserire il dominio, il nome dell'host e l'indirizzo IP dei nameserver \n"
#~ "secondari. Il nome dell'host deve essere completo, come ad esempio\n"
@@ -3375,9 +2889,7 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "LAN networking has already been configured. Do you want to:"
#~ msgstr "La rete LAN e' gia' stata configurata. Volete:"
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
#~ msgstr "Volete configurare la rete LAN (non dialup) per il vostro sistema ?"
#~ msgid "Cannot open components file: %s"
@@ -3413,13 +2925,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "GNOME"
#~ msgstr "GNOME"
-#~ msgid ""
-#~ "Would you like to have the GNOME desktop installed? It provides an easy to "
-#~ "use interface, including a drag and drop capability and an integrated help "
-#~ "system."
-#~ msgstr ""
-#~ "Volete installare GNOME ? GNOME e' un ambiente grafico con funzionalita' di "
-#~ "drag and drop, semplice da usare, e con un help di sistema integrato ! "
+#~ msgid "Would you like to have the GNOME desktop installed? It provides an easy to use interface, including a drag and drop capability and an integrated help system."
+#~ msgstr "Volete installare GNOME ? GNOME e' un ambiente grafico con funzionalita' di drag and drop, semplice da usare, e con un help di sistema integrato ! "
#~ msgid "Choose components to install:"
#~ msgstr "Scelta dei componenti da installare:"
@@ -3449,8 +2956,7 @@ msgstr "Caricamento dello SCSI driver"
#~ msgstr "Pacchetti da aggiornare"
#~ msgid "<F1> will give you information on a particular printer type"
-#~ msgstr ""
-#~ "premte <F1> per avere informazioni su un particolare tipo di stampante"
+#~ msgstr "premte <F1> per avere informazioni su un particolare tipo di stampante"
#~ msgid "Configure Printer"
#~ msgstr "Configurazione stampante"
@@ -3458,11 +2964,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "<F1> will give you information on this printer driver."
#~ msgstr "premete <F1> per avere informazioni su questo tipo di stampante"
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
-#~ msgstr ""
-#~ "Potete configurare la dimensione della carta e la risoluzione della "
-#~ "stampante."
+#~ msgid "You may now configure the paper size and resolution for this printer."
+#~ msgstr "Potete configurare la dimensione della carta e la risoluzione della stampante."
#~ msgid "Paper Size"
#~ msgstr "Pagina Size"
@@ -3485,11 +2988,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "Configure Uniprint Driver"
#~ msgstr "Configura il driver Uniprint"
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
-#~ msgstr ""
-#~ "A quale porta e' collegata la stampante ( ricorda che /dev/lp0 = LPT1:) ?"
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr "A quale porta e' collegata la stampante ( ricorda che /dev/lp0 = LPT1:) ?"
#~ msgid ""
#~ "Auto-detected ports:\n"
@@ -3519,13 +3019,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "Remote lpd Printer Options"
#~ msgstr "Opzioni stampante lpd remota"
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "Per usare una stampante lpd remota, dovete fornire l'hostname del printer "
-#~ "server ed il nome della coda dove verranno inviate le stampe."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "Per usare una stampante lpd remota, dovete fornire l'hostname del printer server ed il nome della coda dove verranno inviate le stampe."
#~ msgid "Printer Server:"
#~ msgstr "Printer Server:"
@@ -3536,16 +3031,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "NetWare Printer Options"
#~ msgstr "Opzioni Netware Printer"
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "Per stampare su una stampante NetWare, dovete conoscere il nome del "
-#~ "Netwareprint server ( questo non e' sempre lo stesso nome come nei server "
-#~ "TCP/IP ) ed il nome della coda associata alla stampante ed il nome "
-#~ "dell'utente e password."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "Per stampare su una stampante NetWare, dovete conoscere il nome del Netwareprint server ( questo non e' sempre lo stesso nome come nei server TCP/IP ) ed il nome della coda associata alla stampante ed il nome dell'utente e password."
#~ msgid "SMB server host:"
#~ msgstr "SMB server host:"
@@ -3562,17 +3049,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "SMB/Windows 95/NT Printer Options"
#~ msgstr "SMP/Windows 95/NT Printer Option"
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "Per stampare su una stampante SMB, dovete conoscere il nome dell'host SMB "
-#~ "(questo puo' essere diverso dal nome del server) e possibilmente l'indirizzo "
-#~ "IP del print server, il nome della stampante condivisa su cui volete "
-#~ "stampare, il nome utente/password, e le informazioni sul workgroup."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "Per stampare su una stampante SMB, dovete conoscere il nome dell'host SMB (questo puo' essere diverso dal nome del server) e possibilmente l'indirizzo IP del print server, il nome della stampante condivisa su cui volete stampare, il nome utente/password, e le informazioni sul workgroup."
#~ msgid "Spool directory:"
#~ msgstr "Directory di spool:"
@@ -3580,14 +3058,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "Standard Printer Options"
#~ msgstr "Opzioni standard:"
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Ogni coda di stampa (dove sono dirette le stampe) viene identificata da un "
-#~ "nome (spesso lp) e da uno spool associato. Che nome e directory bisogna "
-#~ "usare per questa coda ?"
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Ogni coda di stampa (dove sono dirette le stampe) viene identificata da un nome (spesso lp) e da uno spool associato. Che nome e directory bisogna usare per questa coda ?"
#~ msgid "Would you like to configure a printer?"
#~ msgstr "Volete configurare una stampante ?"
@@ -3707,12 +3179,8 @@ msgstr "Caricamento dello SCSI driver"
#~ "Errore di trasferimento del file %s:\n"
#~ "%s"
-#~ msgid ""
-#~ "An error occurred reading the partition table for the block device %s. The "
-#~ "error was:"
-#~ msgstr ""
-#~ "Rilevato un errore durante la lettra della tabella delle partizioni per il "
-#~ "dispositivo %s. Errore:"
+#~ msgid "An error occurred reading the partition table for the block device %s. The error was:"
+#~ msgstr "Rilevato un errore durante la lettra della tabella delle partizioni per il dispositivo %s. Errore:"
#~ msgid "LAN manager host:"
#~ msgstr "Lan manager host:"
@@ -3744,10 +3212,8 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid "I cannot log into machine: %s\n"
#~ msgstr "Impossibile connettersi nel sistema %s\n"
-#~ msgid ""
-#~ "Would you like to install or configure the SILO bootloader on your system?"
-#~ msgstr ""
-#~ "Volete installare o configurare il bootloader SILO nel vostro sistema?"
+#~ msgid "Would you like to install or configure the SILO bootloader on your system?"
+#~ msgstr "Volete installare o configurare il bootloader SILO nel vostro sistema?"
#~ msgid "Other"
#~ msgstr "Altro"
@@ -3762,8 +3228,7 @@ msgstr "Caricamento dello SCSI driver"
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ msgstr ""
-#~ "Si e' verificato un errore durante lo step \"%s\" dell'installazione.\n"
+#~ msgstr "Si e' verificato un errore durante lo step \"%s\" dell'installazione.\n"
#~ msgid ""
#~ "\n"
diff --git a/po/no.po b/po/no.po
index f5cc1b1c7..d5f55b2d7 100644
--- a/po/no.po
+++ b/po/no.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: install 6.1\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-09-22 11:04+02:00\n"
"Last-Translator: Kjartan Maraas <kmaraas@online.no>\n"
"Language-Team: Norwegian <no@li.org>\n"
@@ -13,90 +13,66 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "Neste"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Tilbake"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Vis hjelp"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Skjul hjelp"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "FullfЬr"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "Online hjelp"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "Valg av sprЕk"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Red Hat Linux installasjon"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Red Hat Linux installasjon"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Red Hat Linux installasjon"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Red Hat Linux installasjon"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr ""
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "Hvilket sprЕk Ьnsker du Е bruke under installasjonen?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "OK"
@@ -116,8 +92,7 @@ msgstr "/dev/ttyS2 (COM3 i DOS)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 i DOS)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Enhet"
@@ -127,26 +102,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "Hvilken enhet er musen plassert pЕ? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "Ok"
@@ -198,12 +154,7 @@ msgstr "Installasjonstype"
msgid "What type of system would you like to install?"
msgstr "Hvilken type installasjon Ьnsker du?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Feil"
@@ -224,34 +175,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Tilpass pakker som skal oppgraderes"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Pakkene du har installert og eventuelle andre pakker som er nЬdvendige for Е "
-"tilfredstille deres avhengiheter, er valgt for installasjon. ьnsker du Е "
-"endre pakkesettet som skal oppgraderes?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Pakkene du har installert og eventuelle andre pakker som er nЬdvendige for Е tilfredstille deres avhengiheter, er valgt for installasjon. ьnsker du Е endre pakkesettet som skal oppgraderes?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Ja"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Nei"
@@ -263,23 +194,17 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Velkommen til Red Hat Linux!\n"
"\n"
"Denne installasjonsprosessen er beskrevet i detalj i \"Official Red Hat \n"
-"Linux Installation Guide\", som er tilgjengelig fra Red Hat Software. Hvis "
-"du har\n"
-"tilgang til denne manualen bЬr du lese installasjonsdelen fЬr du "
-"fortsetter.\n"
+"Linux Installation Guide\", som er tilgjengelig fra Red Hat Software. Hvis du har\n"
+"tilgang til denne manualen bЬr du lese installasjonsdelen fЬr du fortsetter.\n"
"\n"
-"Hvis du har kjЬpt Official Red Hat Linux bЬr du registrere kjЬpet gjennom "
-"vЕrt web-sted, http://www.redhat.com/."
+"Hvis du har kjЬpt Official Red Hat Linux bЬr du registrere kjЬpet gjennom vЕrt web-sted, http://www.redhat.com/."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -318,35 +243,21 @@ msgid "Hostname Configuration"
msgstr "Konfigurasjon av vertsnavn"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"Vertsnavnet er navnet pЕ din datamaskin. Hvis datamaskinen er tilknyttet et "
-"nettverk, er det mulig at dette oppgis av din nettverksadministrator."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "Vertsnavnet er navnet pЕ din datamaskin. Hvis datamaskinen er tilknyttet et nettverk, er det mulig at dette oppgis av din nettverksadministrator."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Vertsnavn"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"En egendefinert oppstartsdiskett gir deg en mЕte Е starte opp ditt Linux "
-"system uten Е vФre avhengig av oppstartslasteren. Dette er nyttig hvis du "
-"ikke Ьnsker Е installere lilo pЕ systemet, et annet operativsystem fjerner "
-"lilo, eller hvis lilo ikke virker med din maskinvarekonfigurasjon. En "
-"egendefinert oppstartsdiskett kan ogsЕ brukes med Red Hats redningsdisk, og "
-"gjЬr det mye lettere Е rette opp alvorlige systemfeil.\n"
+"En egendefinert oppstartsdiskett gir deg en mЕte Е starte opp ditt Linux system uten Е vФre avhengig av oppstartslasteren. Dette er nyttig hvis du ikke Ьnsker Е installere lilo pЕ systemet, et annet operativsystem fjerner lilo, eller hvis lilo ikke virker med din maskinvarekonfigurasjon. En egendefinert oppstartsdiskett kan ogsЕ brukes med Red Hats redningsdisk, og gjЬr det mye lettere Е rette opp alvorlige systemfeil.\n"
"\n"
"ьnsker du Е lage en oppstartsdiskett for ditt system?"
@@ -390,13 +301,8 @@ msgid "Installation to begin"
msgstr "Installasjon som skal starte"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"En komplett logg av installasjonen vil befinne seg i /tmp/install.log etter "
-"omstart av systemet. Du vil kanskje beholde denne filen som et "
-"referansepunkt til senere."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "En komplett logg av installasjonen vil befinne seg i /tmp/install.log etter omstart av systemet. Du vil kanskje beholde denne filen som et referansepunkt til senere."
#: ../text.py:606
msgid "Complete"
@@ -406,42 +312,27 @@ msgstr "Ferdig"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"Gratulerer, installasjonen er ferdig.\n"
"\n"
-"Fjern oppstartsmediet og trykk linjeskift for Е starte opp pЕ nytt. For "
-"informasjon om feilrettinger som er tilgjengelig for denne utgaven av Red "
-"Hat Linux, se errataen som finnes pЕ http://www.redhat.com.\n"
+"Fjern oppstartsmediet og trykk linjeskift for Е starte opp pЕ nytt. For informasjon om feilrettinger som er tilgjengelig for denne utgaven av Red Hat Linux, se errataen som finnes pЕ http://www.redhat.com.\n"
"\n"
-"Informasjon om konfigurasjon av systemet er tilgjengelig kapittelet \"What "
-"do I do now?\" i den offisielle brukermanualen for Red Hat Linux."
+"Informasjon om konfigurasjon av systemet er tilgjengelig kapittelet \"What do I do now?\" i den offisielle brukermanualen for Red Hat Linux."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Sett inn en tom diskett i den fЬrste diskettstasjonen. Alle data pЕ denne "
-"disketten vil bli slettet under oppretting av oppstartsdisketten."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Sett inn en tom diskett i den fЬrste diskettstasjonen. Alle data pЕ denne disketten vil bli slettet under oppretting av oppstartsdisketten."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Hopp over"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"En feil oppstod under oppretting av oppstartsdisketten. Vennligst forsikre "
-"deg om at det stЕr en formatert diskett i diskettstasjonen."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "En feil oppstod under oppretting av oppstartsdisketten. Vennligst forsikre deg om at det stЕr en formatert diskett i diskettstasjonen."
#: ../text.py:697
msgid "Package Installation"
@@ -504,19 +395,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/Alt-Tab> mellom elementer | <Mellomrom> velger | <F12> neste "
-"skjerm "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/Alt-Tab> mellom elementer | <Mellomrom> velger | <F12> neste skjerm "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Velkommen"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "PartisjonИr"
@@ -536,8 +422,7 @@ msgstr "Swap"
msgid "Filesystem Formatting"
msgstr "Formatering av filsystem"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "LILO-konfigurasjon"
@@ -601,8 +486,7 @@ msgstr "InstallИr system"
msgid "Installation Complete"
msgstr "Installasjon ferdig"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "LILO-konfigurasjon"
@@ -632,171 +516,170 @@ msgstr "Avbryt"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr ""
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "Feil under Еpning: kickstart-fil %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "Feil under Еpning: kickstart-fil %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Slett RAID enhet?"
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Formatering av filsystem"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, c-format
msgid "Formatting %s filesystem..."
msgstr ""
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Lag oppstartsdiskett"
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "GjenstЕr"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "Sender forespЬrsel for IP-informasjon"
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr ""
-#: ../todo.py:1012
+#: ../todo.py:1016
msgid "Searching"
msgstr ""
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Feil under Еpning: kickstart-fil %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "GjenstЕr"
-#: ../todo.py:1060
+#: ../todo.py:1064
#, fuzzy
msgid "Finding packages to upgrade..."
msgstr "Velg pakker som skal oppgraderes"
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr ""
-#: ../todo.py:1249
+#: ../todo.py:1253
msgid "Preparing to install..."
msgstr ""
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "GjenstЕr"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr ""
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr ""
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Installerer pakker"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Monteringspunkt:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr ""
-#: ../todo.py:1439
+#: ../todo.py:1453
#, fuzzy
msgid "Disk Space"
msgstr "Diskoppsett"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "InstallИr"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "Test denne konfigurasjonen"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "Grafikk-kort"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Grafikkminne"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Tjener"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Kunne ikke finne ramdisk for nivЕ to: %s"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Skjerm"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "Horisontalt frekvensomrЕde"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "Vertikalt frekvensomrЕde"
@@ -825,8 +708,7 @@ msgstr "Passord"
msgid "Password (confirm)"
msgstr "Passord (bekreft)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Fullt navn"
@@ -834,15 +716,11 @@ msgstr "Fullt navn"
msgid "Add"
msgstr "Legg til"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Rediger"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Slett"
@@ -958,8 +836,7 @@ msgstr "GNOME arbeidsstasjon"
msgid "KDE Workstation"
msgstr "KDE arbeidsstasjon"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Tjener"
@@ -1003,7 +880,7 @@ msgstr "Variant"
msgid "Test your selection here:"
msgstr "Test ditt valg her:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Hvilket sprЕk skal brukes under installasjonen?"
@@ -1043,19 +920,15 @@ msgstr "Lag oppstartsdiskett"
msgid "Do not install LILO"
msgstr "Ikke installer LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Standard"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Partisjonstype"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Oppstartsetikett"
@@ -1063,43 +936,43 @@ msgstr "Oppstartsetikett"
msgid "Emulate 3 Buttons"
msgstr "Emuler 3 knapper"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "KonfigurИr ved bruk av DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Aktiver ved oppstart"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "IP-adresse"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Nettmaske"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Nettverk"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Kringkast"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Gateway"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "PrimФr DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "SekundФr DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "TertiФr DNS"
@@ -1184,14 +1057,8 @@ msgid "Low Memory"
msgstr "Lite minne"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Siden du ikke har mye minne pЕ denne maskinen, mЕ vi benytte et swap-omrЕde "
-"med en gang. For Е gjЬre dette mЕ vi skrive den nye partisjonstabellen til "
-"disken nЕ. Er dette ok?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Siden du ikke har mye minne pЕ denne maskinen, mЕ vi benytte et swap-omrЕde med en gang. For Е gjЬre dette mЕ vi skrive den nye partisjonstabellen til disken nЕ. Er dette ok?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1202,21 +1069,17 @@ msgstr "Automatisk partisjonering"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"Hvis du ikke Ьnsker Е gjЬre dette, kan du fortsette denne installasjonen ved "
-"Е partisjonere manuelt, eller du kan gЕ tilbake og utfЬre en tilpasset "
-"installasjon."
+"Hvis du ikke Ьnsker Е gjЬre dette, kan du fortsette denne installasjonen ved Е partisjonere manuelt, eller du kan gЕ tilbake og utfЬre en tilpasset installasjon."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Fjern data"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "Manuell partisjonering"
@@ -1277,7 +1140,7 @@ msgstr "Vertikalt frekvensomrЕde"
msgid "Test failed"
msgstr "Testen feilet"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "Tilpass konfigurasjon av X"
@@ -1285,62 +1148,43 @@ msgstr "Tilpass konfigurasjon av X"
msgid "Bits per Pixel"
msgstr "Biter pr. piksel"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Test denne konfigurasjonen"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"I de fleste tilfeller kan grafikk-maskinvaren finnes automatisk for Е "
-"bestemme de beste innstillingene for din skjerm."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "I de fleste tilfeller kan grafikk-maskinvaren finnes automatisk for Е bestemme de beste innstillingene for din skjerm."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "Resultat av autosЬk"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"Din skjerm kunne ikke finnes av autosЬk. Vennligst velg fra listen under:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "Din skjerm kunne ikke finnes av autosЬk. Vennligst velg fra listen under:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Bruk grafisk pЕlogging"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "Hopp over konfigurasjon av X"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"For noen fЕ systemer kan det vФre nЬdvendig Е gi spesielle flagg til kjernen "
-"ved oppstart for at systemet skal fungere ordentlig. Hvis du trenger Е gi "
-"oppstartsflagg til kjernen, skriv dem inn nЕ. Hvis du ikke trenger dette, "
-"eller ikke er sikker, kan du la dette stЕ tomt."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "For noen fЕ systemer kan det vФre nЬdvendig Е gi spesielle flagg til kjernen ved oppstart for at systemet skal fungere ordentlig. Hvis du trenger Е gi oppstartsflagg til kjernen, skriv dem inn nЕ. Hvis du ikke trenger dette, eller ikke er sikker, kan du la dette stЕ tomt."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Hvor vil du installere oppstartslasteren?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Slett"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Avbryt"
@@ -1349,23 +1193,12 @@ msgid "Edit Boot Label"
msgstr "Rediger oppstartsetikett"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Oppstartslasteren som brukes av Red Hat kan starte andre operativsystemer "
-"ogsЕ. Du mЕ fortelle hvilke partisjoner du Ьnsker Е starte andre systemer "
-"fra og hvilket navn du vil gi hver av dem."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Oppstartslasteren som brukes av Red Hat kan starte andre operativsystemer ogsЕ. Du mЕ fortelle hvilke partisjoner du Ьnsker Е starte andre systemer fra og hvilket navn du vil gi hver av dem."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Noen av pakkene du har valgt Е installere trenger pakker som ikke er valgt. "
-"Hvis du bare velger Ok vil alle de nЬdvendige pakkene bli installert."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Noen av pakkene du har valgt Е installere trenger pakker som ikke er valgt. Hvis du bare velger Ok vil alle de nЬdvendige pakkene bli installert."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1373,32 +1206,19 @@ msgstr "Diskoppsett"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid er et verktЬy for partisjonering og oppsett av monteringspunkter. "
-"Det er laget for Е vФre lettere Е bruke enn Linux's tradisjonelle disk- "
-"partisjoneringsprogramvare, fdisk, i tillegg til Е vФre kraftigere. Likevel "
-"finnes det tilfeller hvor fdisk kan vФre Е foretrekke.\n"
+"Disk Druid er et verktЬy for partisjonering og oppsett av monteringspunkter. Det er laget for Е vФre lettere Е bruke enn Linux's tradisjonelle disk- partisjoneringsprogramvare, fdisk, i tillegg til Е vФre kraftigere. Likevel finnes det tilfeller hvor fdisk kan vФre Е foretrekke.\n"
"\n"
"Hvilket verktЬy vil du bruke?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"For Е installere Red Hat Linux mЕ du ha minst Иn partisjon pЕ 150 MB "
-"dedikert til Linux. Vi foreslЕr at du plasserer den partisjonen pЕ en av de "
-"fЬrste to harddiskene i systemet ditt, slik at du kan bruke LILO til Е "
-"starte opp Linux."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "For Е installere Red Hat Linux mЕ du ha minst Иn partisjon pЕ 150 MB dedikert til Linux. Vi foreslЕr at du plasserer den partisjonen pЕ en av de fЬrste to harddiskene i systemet ditt, slik at du kan bruke LILO til Е starte opp Linux."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Ferdig"
@@ -1407,16 +1227,8 @@ msgid "Continue"
msgstr "Fortsett"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Hvilke partisjoner Ьnsker du Е formatere? Vi vil pЕ det sterkeste anbefale Е "
-"formatere alle systempartisjonene, inkludert /, /usr, og /var. Det er ikke "
-"nЬdvendig Е formatere /home eller /usr/local hvis de allerede har blitt "
-"konfigurert ved en tildligere installasjon."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Hvilke partisjoner Ьnsker du Е formatere? Vi vil pЕ det sterkeste anbefale Е formatere alle systempartisjonene, inkludert /, /usr, og /var. Det er ikke nЬdvendig Е formatere /home eller /usr/local hvis de allerede har blitt konfigurert ved en tildligere installasjon."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1436,14 +1248,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Velg et root-passord. Du mЕ skrive det inn to ganger for Е vФre sikker pЕ at "
-"du vet hva det er og at du ikke gjorde en skrivefeil. Husk at root-passordet "
-"er kritisk for systemsikkerheten!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Velg et root-passord. Du mЕ skrive det inn to ganger for Е vФre sikker pЕ at du vet hva det er og at du ikke gjorde en skrivefeil. Husk at root-passordet er kritisk for systemsikkerheten!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1494,24 +1300,12 @@ msgid "This user id already exists. Choose another."
msgstr "Denne brukeren eksisterer allerede. Velg en annen."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"Du bЬr bruk en vanlig brukerkonto for de fleste aktivitetene pЕ systemet "
-"ditt Ved Е ikke bruke root kontoen reduserer du sjansene for Е Ьdelegge "
-"systemets konfigurasjon."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "Du bЬr bruk en vanlig brukerkonto for de fleste aktivitetene pЕ systemet ditt Ved Е ikke bruke root kontoen reduserer du sjansene for Е Ьdelegge systemets konfigurasjon."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"Hvilken brukerkonto Ьnsker du Е ha pЕ systemet? Du bЬr ha minst en konto ved "
-"siden av root for vanlig arbeid, men flerbrukersystemer kan ha mange kontoer "
-"satt opp."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "Hvilken brukerkonto Ьnsker du Е ha pЕ systemet? Du bЬr ha minst en konto ved siden av root for vanlig arbeid, men flerbrukersystemer kan ha mange kontoer satt opp."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1549,8 +1343,7 @@ msgstr "eller bruk:"
msgid "Request server via broadcast"
msgstr "ForespЬr tjener via kringkasting"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Ugyldig monteringspunkt"
@@ -1619,44 +1412,26 @@ msgid "Too Many Drives"
msgstr "For mange disker"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Du har flere disker enn dette programmet stЬtter. Vennligst bruk fdisk- "
-"programmet til Е sette opp diskene dine og informer Red Hat Software om "
-"denne meldingen."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Du har flere disker enn dette programmet stЬtter. Vennligst bruk fdisk- programmet til Е sette opp diskene dine og informer Red Hat Software om denne meldingen."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Ingen stasjoner funnet"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"En feil har oppstЕtt - ingen gyldige enheter for oppretting av filsystemer "
-"ble funnet. Vennligst sjekk maskinvaren din for Е finne Еrsaken til dette."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "En feil har oppstЕtt - ingen gyldige enheter for oppretting av filsystemer ble funnet. Vennligst sjekk maskinvaren din for Е finne Еrsaken til dette."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"En feil oppstod under lesing av partisjonstabellen for blokkenhet %s. Feilen "
-"var"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "En feil oppstod under lesing av partisjonstabellen for blokkenhet %s. Feilen var"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Partisjonstabellen pЕ enhet %s er korrupt. For Е opprette nye partisjoner mЕ "
-"denne initialiseres. Dette medfЬrer tap av ALLE DATA pЕ denne disken."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Partisjonstabellen pЕ enhet %s er korrupt. For Е opprette nye partisjoner mЕ denne initialiseres. Dette medfЬrer tap av ALLE DATA pЕ denne disken."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1679,15 +1454,8 @@ msgid "BSD Disklabel"
msgstr "BSD-disketikett"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"En disk med en BSD-disketikett ble funnet. Red Hat installasjonen stЬtter "
-"bare BSD-disketiketter i skrivebeskyttet modus, sЕ du mЕ bruke en spesiell "
-"installasjonsdisk og fdisk (i stedet for Disk Druid) for maskiner med BSD- "
-"disketiketter."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "En disk med en BSD-disketikett ble funnet. Red Hat installasjonen stЬtter bare BSD-disketiketter i skrivebeskyttet modus, sЕ du mЕ bruke en spesiell installasjonsdisk og fdisk (i stedet for Disk Druid) for maskiner med BSD- disketiketter."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1714,10 +1482,7 @@ msgstr "Slett partisjon"
msgid "Are you sure you want to delete this partition?"
msgstr "Er du sikker pЕ at du vil slette denne partisjonen?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Rediger partisjon"
@@ -1757,58 +1522,38 @@ msgstr "Partisjonstype:"
msgid "Allowable Drives:"
msgstr "Tillate stasjoner:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Ingen monteringspunkt"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Du har ikke valgt et monteringspunkt for denne partisjonen. Er du sikker pЕ "
-"at du Ьnsker Е gjЬre dette?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Du har ikke valgt et monteringspunkt for denne partisjonen. Er du sikker pЕ at du Ьnsker Е gjЬre dette?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Feil ved monteringspunkt"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Monteringspunktet som ble forespurt er enten en ugyldig sti eller det er "
-"allerede i bruk. Vennligst velg et gyldig monteringspunkt."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Monteringspunktet som ble forespurt er enten en ugyldig sti eller det er allerede i bruk. Vennligst velg et gyldig monteringspunkt."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "Feil ved stЬrrelse"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"StЬrrelsen du ba om er ugyldig. SЬrg for at stЬrrelsen er stЬrre enn null "
-"(0), og at den er spesifisert i desimal format (base 10)."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "StЬrrelsen du ba om er ugyldig. SЬrg for at stЬrrelsen er stЬrre enn null (0), og at den er spesifisert i desimal format (base 10)."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Feil ved stЬrrelse pЕ swap"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Du har opprettet en swap-partisjon som er for stor. Maksimal stЬrrelse pЕ en "
-"swap-partisjon er %ld Megabyte."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Du har opprettet en swap-partisjon som er for stor. Maksimal stЬrrelse pЕ en swap-partisjon er %ld Megabyte."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1816,12 +1561,10 @@ msgstr "Ingen begrensning pЕ RAID stasjon"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
-"Du har konfigurert en RAID partisjon uten Е begrense partisjonen til en "
-"enkelt stasjon.\n"
+"Du har konfigurert en RAID partisjon uten Е begrense partisjonen til en enkelt stasjon.\n"
" Er du sikker pЕ at du vil gjЬre dette?"
#: ../libfdisk/gnomefsedit.c:1114
@@ -1829,12 +1572,8 @@ msgid "Close"
msgstr "Lukk"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Du har konfigurert en RAID-partisjon uten Е begrense partisjonen til en "
-"enkelt disk. Vennligst velg en disk Е begrense denne partisjonen til."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Du har konfigurert en RAID-partisjon uten Е begrense partisjonen til en enkelt disk. Vennligst velg en disk Е begrense denne partisjonen til."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1844,31 +1583,17 @@ msgstr "RAID-oppfЬringen er ikke komplett"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"RAID-enheten /dev/%s inneholder nЕ ikke-allokerte partisjoner. RAID-enheten "
-"/dev/%s vil nЕ deles opp i sine enkeltkomponenter. Vennligst sett sammen "
-"RAID-enheten pЕ nytt med de allokerte partisjonene."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "RAID-enheten /dev/%s inneholder nЕ ikke-allokerte partisjoner. RAID-enheten /dev/%s vil nЕ deles opp i sine enkeltkomponenter. Vennligst sett sammen RAID-enheten pЕ nytt med de allokerte partisjonene."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Ikke-allokerte partisjoner"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Det finnes ikke-allokerte partisjoner i listen over forespurte partisjoner. "
-"De ikke-allokerte partisjonene vises under, sammen med grunnen til at de "
-"ikke ble allokert."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Det finnes ikke-allokerte partisjoner i listen over forespurte partisjoner. De ikke-allokerte partisjonene vises under, sammen med grunnen til at de ikke ble allokert."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1891,25 +1616,16 @@ msgid "You have not selected a mount point. A mount point is required."
msgstr "Du har ikke valgt et monteringspunkt. Dette er pЕkrevd."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Monteringspunktet som ble forespurt er allerede i bruk. Vennligst velg et "
-"gyldig monteringspunkt."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Monteringspunktet som ble forespurt er allerede i bruk. Vennligst velg et gyldig monteringspunkt."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "Advarsel ved oppstart fra RAID"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Du har valgt at denne RAID-enheten skal vФre en oppstartspartisjon. "
-"Vennligst forsikre deg om at alle delpartisjonene kan brukes som "
-"oppstartspartisjoner."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Du har valgt at denne RAID-enheten skal vФre en oppstartspartisjon. Vennligst forsikre deg om at alle delpartisjonene kan brukes som oppstartspartisjoner."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1925,23 +1641,16 @@ msgstr "Brukt Raid enhet"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"RAID-enheten \"/dev/%s\" er allerede konfigurert som en RAID-enhet. "
-"Vennligst velg en annen."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "RAID-enheten \"/dev/%s\" er allerede konfigurert som en RAID-enhet. Vennligst velg en annen."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Ikke nok partisjoner"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
-msgstr ""
-"Du har ikke konfigurert mange nok partisjoner for RAID-typen du valgte."
+msgid "You have not configured enough partitions for the RAID type you have selected."
+msgstr "Du har ikke konfigurert mange nok partisjoner for RAID-typen du valgte."
#: ../libfdisk/gnomefsedit.c:1942
msgid "Illegal /boot RAID Type"
@@ -1953,14 +1662,8 @@ msgstr "Oppstartspartisjoner (/boot) kan kun plasseres pЕ RAID-1."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"Partisjonen %s er en eksisterende partisjon i settet med partisjoner for "
-"denne RAID-enheten. Monteringspunktet er satt til /boot. Er du sikker pЕ at "
-"det er mulig Е starte opp fra denne partisjonen?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "Partisjonen %s er en eksisterende partisjon i settet med partisjoner for denne RAID-enheten. Monteringspunktet er satt til /boot. Er du sikker pЕ at det er mulig Е starte opp fra denne partisjonen?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2024,13 +1727,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "Det finnes ikke-allokerte partisjoner..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Du mЕ tilegne systemet en rot-partisjon (/) plassert pЕ en Linux Native- "
-"partisjon (ext2), eller en RAID-partisjon for at installasjonen skal "
-"fortsette."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Du mЕ tilegne systemet en rot-partisjon (/) plassert pЕ en Linux Native- partisjon (ext2), eller en RAID-partisjon for at installasjonen skal fortsette."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2081,12 +1779,8 @@ msgid "No Root Partition"
msgstr "Ingen rotpartisjon"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Du mЕ tilegne systemet en rot-partisjon (/) plassert pЕ en Linux Native- "
-"partisjon (ext2) for at installasjonen skal fortsette."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Du mЕ tilegne systemet en rot-partisjon (/) plassert pЕ en Linux Native- partisjon (ext2) for at installasjonen skal fortsette."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2094,18 +1788,15 @@ msgstr "Ingen swappartisjon"
#: ../libfdisk/newtfsedit.c:1446
msgid "You must assign a swap partition for the install to proceed."
-msgstr ""
-"Du mЕ sette opp en swap-partisjon for at installasjonen skal fortsette."
+msgstr "Du mЕ sette opp en swap-partisjon for at installasjonen skal fortsette."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"Det finnes ikke-allokerte partisjoner ennЕ. Hvis du avslutter nЕ vil disse "
-"ikke bli skrevet til disken.\n"
+"Det finnes ikke-allokerte partisjoner ennЕ. Hvis du avslutter nЕ vil disse ikke bli skrevet til disken.\n"
"\n"
"Er du sikker pЕ at du vil avslutte?"
@@ -2142,21 +1833,14 @@ msgid "Miscellaneous"
msgstr "Forskjellig"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Denne modulen kan ta parametere som har innvirkning pЕ mЕten den virker. "
-"Hvis du ikke vet hvilke parametere du skal oppgi, kan du hoppe over denne "
-"skjermen ved Е trykke \"OK\" knappen nЕ."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Denne modulen kan ta parametere som har innvirkning pЕ mЕten den virker. Hvis du ikke vet hvilke parametere du skal oppgi, kan du hoppe over denne skjermen ved Е trykke \"OK\" knappen nЕ."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "Parametere for moduler"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "Enheter"
@@ -2169,20 +1853,12 @@ msgid "Failed to mount floppy disk."
msgstr "Kunne ikke montere disketten."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"Disketten du satte inn er ikke en gyldig driverdiskett for denne utgaven av "
-"Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "Disketten du satte inn er ikke en gyldig driverdiskett for denne utgaven av Red Hat Linux."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Hvilken driver skal jeg forsЬke? Hvis driveren du trenger ikke finnes pЕ "
-"denne listen, og du har en separat driverdiskett, vennligst trykk F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Hvilken driver skal jeg forsЬke? Hvis driveren du trenger ikke finnes pЕ denne listen, og du har en separat driverdiskett, vennligst trykk F2."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2211,15 +1887,15 @@ msgstr "Feil under lesing av innholdet i kickstart-fil %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Feil pЕ linje %d i kickstart-fil %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "Velg et sprЕk"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Tastaturtype"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Hvilken type tastatur har du?"
@@ -2235,136 +1911,116 @@ msgstr "NFS-bilde"
msgid "Hard drive"
msgstr "Harddisk"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Velkommen til Red Hat Linux"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/Alt-Tab> mellom elementer | <Mellomrom> velger | <F12> neste skjerm "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/Alt-Tab> mellom elementer | <Mellomrom> velger | <F12> neste skjerm "
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Hvilken enhet Ьnsker du Е legge til?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "Jeg har funnet fЬlgende typer enheter pЕ ditt system:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "Legg til enhet"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"Har ikke lastet noen spesielle enhetsdrivere for ditt system. Vil du at jeg "
-"skal gjЬre det nЕ?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "Har ikke lastet noen spesielle enhetsdrivere for ditt system. Vil du at jeg skal gjЬre det nЕ?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "Laster"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "Laster ramdisk for andre nivЕ..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Feil under lasting av ramdisk."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Harddisker"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"Det ser ikke ut som om du har noen harddisker pЕ systemet ditt! ьnsker du Е "
-"konfigurere noen tilleggsenheter?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "Det ser ikke ut som om du har noen harddisker pЕ systemet ditt! ьnsker du Е konfigurere noen tilleggsenheter?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Hvilken partisjon og hvilken katalog pЕ denne partisjonen inneholder "
-"katalogene RedHat/RPMS og RedHat/base? Hvis du ikke ser disken du bruker pЕ "
-"denne listen, trykk F2 for Е konfigurere tilleggsenheter."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Hvilken partisjon og hvilken katalog pЕ denne partisjonen inneholder katalogene RedHat/RPMS og RedHat/base? Hvis du ikke ser disken du bruker pЕ denne listen, trykk F2 for Е konfigurere tilleggsenheter."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Katalog som inneholder Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Velg partisjon"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "Enheten %s ser ikke ut til Е inneholde et Red Hat installasjonstre."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"Kunne ikke finne en Red Hat Linux CDROM i noen av dine CDROM stasjoner. "
-"Vennligst sett inn Red Hat CD'en og trykk \"OK\" for Е pvЬve igjen."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "Kunne ikke finne en Red Hat Linux CDROM i noen av dine CDROM stasjoner. Vennligst sett inn Red Hat CD'en og trykk \"OK\" for Е pvЬve igjen."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Den katalogen ser ikke ut til Е inneholde et Red Hat installasjonstre."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Klarte ikke Е montere den katalogen fra tjeneren"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Kunne ikke finne ramdisk for nivЕ to: %s"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "Redningsmetode"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "Installasjonsmetode"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Hvilken type media inneholder redningsbildet?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Hvilken type media inneholder pakkene som skal installeres?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Kan ikke finne ks.cfg pЕ oppstartsdisketten."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC-kort"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "Initialiserer enheter pЕ PC-kort..."
@@ -2395,13 +2051,8 @@ msgstr ""
" Red Har Linux for din arkitektur."
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"VФr snill Е skrive inn IP-konfigurasjonen for denne maskinen. Hver oppfЬring "
-"skal skrives inn som en IP-adresse i punktdelt desimal notasjon (f.eks, "
-"1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "VФr snill Е skrive inn IP-konfigurasjonen for denne maskinen. Hver oppfЬring skal skrives inn som en IP-adresse i punktdelt desimal notasjon (f.eks, 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2465,12 +2116,8 @@ msgid "Network device"
msgstr "Nettverksenhet"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/Alt-Tab> mellom elementer | <Mellomrom> velger | <F12> neste "
-"skjerm "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/Alt-Tab> mellom elementer | <Mellomrom> velger | <F12> neste skjerm "
#: ../loader/net.c:699
#, c-format
@@ -2550,22 +2197,12 @@ msgid "You must enter a directory."
msgstr "Du mЕ skrive inn en katalog."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Hvis du bruker ikke-anonym ftp, skriv inn kontonavnet og passordet du Ьnsker "
-"Е bruke under. Hvis du bruker en FTP-proxy, skriv inn navnet til FTP- "
-"proxytjeneren som skal brukes."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Hvis du bruker ikke-anonym ftp, skriv inn kontonavnet og passordet du Ьnsker Е bruke under. Hvis du bruker en FTP-proxy, skriv inn navnet til FTP- proxytjeneren som skal brukes."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"Hvis du bruker en HTTP-proxytjener, skriv inn navnet til HTTP-proxytjeneren "
-"som skal brukes."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "Hvis du bruker en HTTP-proxytjener, skriv inn navnet til HTTP-proxytjeneren som skal brukes."
#: ../loader/urls.c:295
msgid "Account name:"
@@ -2591,31 +2228,14 @@ msgstr "HTTP-proxy-port:"
msgid "Loading SCSI driver"
msgstr "Laster SCSI-driver..."
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "En disk med en korrupt Sun disketikett ble funnet under lesing av blokkenhet "
-#~ "%s. Du mЕ bruke fdisk til Е opprette og skrive en ny etikett for denne "
-#~ "enheten."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "En disk med en korrupt Sun disketikett ble funnet under lesing av blokkenhet %s. Du mЕ bruke fdisk til Е opprette og skrive en ny etikett for denne enheten."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Korrupt Sun disketikett"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Du mЕ tilegne systemet en oppstartspartisjon (/boot) plassert pЕ en Linux "
-#~ "Native- partisjon (ext2), eller en RAID-1 partisjon, for at installasjonen "
-#~ "skal fortsette."
-
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Fordi du har tilegnet en rot-partisjon (/) til en RAID enhet, mЕ du ogsЕ "
-#~ "spesifisere en oppstartspartisjon (/boot) pЕ en Linux native partisjon "
-#~ "(ext2) eller en RAID-1 partisjon for at installasjonen skal fortsette."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Du mЕ tilegne systemet en oppstartspartisjon (/boot) plassert pЕ en Linux Native- partisjon (ext2), eller en RAID-1 partisjon, for at installasjonen skal fortsette."
+
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Fordi du har tilegnet en rot-partisjon (/) til en RAID enhet, mЕ du ogsЕ spesifisere en oppstartspartisjon (/boot) pЕ en Linux native partisjon (ext2) eller en RAID-1 partisjon for at installasjonen skal fortsette."
diff --git a/po/pl.po b/po/pl.po
index 702c3cae1..72b31c9d7 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Red Hat installation\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1998-11-12 12:00\n"
"Last-Translator: Jacek Smyda <smyda@posexperts.com.pl>\n"
"Language-Team: Polish\n"
@@ -13,66 +13,60 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr ""
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "PowrСt"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr ""
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr ""
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr ""
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr ""
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr ""
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr ""
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Witamy w Red Hat Linux"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Witamy w Red Hat Linux"
+
+#: ../gui.py:491
+#, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr ""
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr "Mo©esz zniszczyФ dane! Jeste╤ pewien, ©e chcesz to wykonaФ?"
#: ../text.py:50
@@ -80,25 +74,7 @@ msgstr "Mo©esz zniszczyФ dane! Jeste╤ pewien, ©e chcesz to wykonaФ?"
msgid "What language would you like to use during the installation process?"
msgstr "Jakie pakiety powinny byФ zainstalowane?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr ""
@@ -118,8 +94,7 @@ msgstr ""
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Urz╠dzenie"
@@ -129,26 +104,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr ""
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "OK"
@@ -209,19 +165,13 @@ msgstr "Kroki instalacji"
msgid "What type of system would you like to install?"
msgstr "Jaki jest typ no╤nika zawierajacego pakiety do instalacji?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "BЁ╠d"
#: ../text.py:232
msgid "You don't have any Linux partitions. You can't upgrade this system!"
-msgstr ""
-"Nie masz ©adnej partycji Linuxowej. Nie mo©esz uaktualniФ tego systemu!"
+msgstr "Nie masz ©adnej partycji Linuxowej. Nie mo©esz uaktualniФ tego systemu!"
#: ../text.py:245
#, fuzzy
@@ -238,31 +188,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Wybierz pakiety do uaktualnienia"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
msgstr "Czy chcesz wybraФ pakiety jakie powinny zostaФ zaktualizowane?"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Tak"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Nie"
@@ -276,21 +209,15 @@ msgstr "Witamy w Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Witamy w Red Hat Linux!\n"
"\n"
-"Proces instalacji jest opisany szczegСЁowo w Red Hat Linux Installation "
-"Guide dostЙpnego z Red Hat Software. Je©eli masz dostЙp do tego podrЙcznika "
-"powiniene╤ go przeczytaФ zanim dalej bЙdziesz kontynuowaЁ.\n"
+"Proces instalacji jest opisany szczegСЁowo w Red Hat Linux Installation Guide dostЙpnego z Red Hat Software. Je©eli masz dostЙp do tego podrЙcznika powiniene╤ go przeczytaФ zanim dalej bЙdziesz kontynuowaЁ.\n"
"\n"
-"Je©eli nabyЁe╤ oficjalny Red Hat Linux, zarejestruj go na naszej stronie "
-"Web, http://www.redhat.com."
+"Je©eli nabyЁe╤ oficjalny Red Hat Linux, zarejestruj go na naszej stronie Web, http://www.redhat.com."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -332,31 +259,21 @@ msgid "Hostname Configuration"
msgstr "Konfiguracja SCSI"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
msgstr ""
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Nazwa hosta"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"Dyskietka bootuj╠ca umo©liwia wystartowanie systemu Linux niezale©nie od "
-"bootloadera. Jest to szczegСlnie zalecane je©eli nie chcesz instalowaФ lilo, "
-"inny system usun╠Ё ju© lilo lub lilo nie chce dziaЁaФ z obecn╠ konfiguracj╠ "
-"sprzЙtu.\n"
+"Dyskietka bootuj╠ca umo©liwia wystartowanie systemu Linux niezale©nie od bootloadera. Jest to szczegСlnie zalecane je©eli nie chcesz instalowaФ lilo, inny system usun╠Ё ju© lilo lub lilo nie chce dziaЁaФ z obecn╠ konfiguracj╠ sprzЙtu.\n"
"\n"
"Czy chcesz utworzyФ dyskietkЙ bootuj╠c╠ system?"
@@ -406,12 +323,8 @@ msgid "Installation to begin"
msgstr "Kroki instalacji"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Kompletny log twojej instalacji bЙdzie znajdowaЁ siЙ w /tmp/install.log.Mo©e "
-"bЙdziesz chciaЁ zachowaФ goaby pС╪niej go przejrzeФ."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Kompletny log twojej instalacji bЙdzie znajdowaЁ siЙ w /tmp/install.log.Mo©e bЙdziesz chciaЁ zachowaФ goaby pС╪niej go przejrzeФ."
#: ../text.py:606
msgid "Complete"
@@ -422,35 +335,26 @@ msgstr "SkoЯczone"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"Gratujacje, instalacja jest kompletna.\n"
"\n"
"UsuЯ dyskietkЙ z napЙdu i naci╤nij Enter aby przeЁadowaФ system.\n"
"\n"
-"Informacje o konfiguracji systemu umieszczone s╠ w rozdziale w oficjalnym "
-"Red Hat Linux User's Guide."
+"Informacje o konfiguracji systemu umieszczone s╠ w rozdziale w oficjalnym Red Hat Linux User's Guide."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
msgstr ""
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "PomiЯ"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
msgstr ""
#: ../text.py:697
@@ -520,18 +424,14 @@ msgstr ""
#: ../text.py:907
#, fuzzy
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> nastЙpny element | <Space> wybСr | <F12> nastЙpny ekran "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> nastЙpny element | <Space> wybСr | <F12> nastЙpny ekran "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr ""
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
#, fuzzy
msgid "Partition"
msgstr "Zmiana partycji"
@@ -555,8 +455,7 @@ msgstr ""
msgid "Filesystem Formatting"
msgstr "Formatowanie"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
#, fuzzy
msgid "LILO Configuration"
msgstr "Konfiguracja SCSI"
@@ -633,8 +532,7 @@ msgstr "System instalacyjny"
msgid "Installation Complete"
msgstr "Klasa instalacji"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "Konfiguracja SCSI"
@@ -663,174 +561,172 @@ msgstr "Anulowane"
#: ../text.py:1040
msgid "I can't go to the previous step from here. You will have to try again."
-msgstr ""
-"Nie mogЙ cofn╠Ф siЙ do poprzedniego kroku. Mo©esz sprСbowaФ jeszcze raz."
+msgstr "Nie mogЙ cofn╠Ф siЙ do poprzedniego kroku. Mo©esz sprСbowaФ jeszcze raz."
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "BЁ╠d otwarcia pliku kickstart %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "BЁ╠d otwarcia pliku kickstart %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Tworzenie dysku bootuj╠cego..."
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Formatowanie"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "Tworzenie ext2 systemu pliСw na /dev/%s..."
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Tworzenie dysku bootuj╠cego..."
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Przebudowanie"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "WysyЁanie ©╠dania DHCP..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "bez podpowiedzi"
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "Wszystko"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "BЁ╠d otwarcia pliku kickstart %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Przebudowanie"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "Wyszukiwanie pakietСw do uaktualnienia..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr ""
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Wyszukiwanie pakietСw do uaktualnienia..."
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Przebudowanie"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr "Przebudowanie dazy RPM..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr "BЁ╠d podczas przebudowy bazy RPM. Mo©e masz za maЁo miejsca na sysku?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Instalacja"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Brak punktu montowania"
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Space Needed"
msgstr "Wymagane przeЁadowanie systemu"
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "Rozmiar dysku"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Instalacja"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "Konfiguracja SCSI"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr ""
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr ""
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Serwer"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Tworzenie inicjacyjnego ramdysku..."
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr ""
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
msgid "Horizontal frequency range"
msgstr ""
-#: ../xf86config.py:248
+#: ../xf86config.py:252
msgid "Vertical frequency range"
msgstr ""
@@ -864,8 +760,7 @@ msgstr "HasЁo:"
msgid "Password (confirm)"
msgstr "HasЁo (ponownie):"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr ""
@@ -873,15 +768,11 @@ msgstr ""
msgid "Add"
msgstr "Dodaj"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Edycja"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "UsuЯ"
@@ -974,8 +865,7 @@ msgstr "Uaktualnienie"
msgid ""
"You don't have any Linux partitions.\n"
" You can't upgrade this sytem!"
-msgstr ""
-"Nie masz ©adnej partycji Linuxowej. Nie mo©esz uaktualniФ tego systemu!"
+msgstr "Nie masz ©adnej partycji Linuxowej. Nie mo©esz uaktualniФ tego systemu!"
#: ../iw/examine.py:59
#, fuzzy
@@ -1011,8 +901,7 @@ msgstr "Stacja robocza"
msgid "KDE Workstation"
msgstr "Stacja robocza"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Serwer"
@@ -1060,7 +949,7 @@ msgstr ""
msgid "Test your selection here:"
msgstr "Typ klawiatury"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
#, fuzzy
msgid "What language should be used during the installation process?"
msgstr "Jakie pakiety powinny byФ zainstalowane?"
@@ -1106,19 +995,15 @@ msgstr "Utworzenie dyskietki bootuj╠cej"
msgid "Do not install LILO"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Standard"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Rodzaj partycji"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Etykieta bootowa"
@@ -1126,46 +1011,46 @@ msgstr "Etykieta bootowa"
msgid "Emulate 3 Buttons"
msgstr ""
-#: ../iw/network.py:141
+#: ../iw/network.py:148
#, fuzzy
msgid "Configure using DHCP"
msgstr "Konfiguracja strefy czasowej"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr ""
-#: ../iw/network.py:155
+#: ../iw/network.py:163
#, fuzzy
msgid "IP Address"
msgstr "IP adres:"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
#, fuzzy
msgid "Netmask"
msgstr "Maska sieci:"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr ""
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr ""
@@ -1261,10 +1146,7 @@ msgid "Low Memory"
msgstr ""
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
msgstr ""
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
@@ -1277,17 +1159,15 @@ msgstr "Edycja partycji"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
#, fuzzy
msgid "Remove data"
msgstr "Zdalny lpd"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
#, fuzzy
msgid "Manually partition"
msgstr "Zmiana partycji"
@@ -1348,7 +1228,7 @@ msgstr ""
msgid "Test failed"
msgstr ""
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
#, fuzzy
msgid "Customize X Configuration"
msgstr "Konfiguracja SCSI"
@@ -1358,61 +1238,46 @@ msgstr "Konfiguracja SCSI"
msgid "Bits per Pixel"
msgstr "BitСw na pixel:"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
#, fuzzy
msgid "Test this configuration"
msgstr "Konfiguracja SCSI"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
msgstr ""
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
#, fuzzy
msgid "Autoprobe results:"
msgstr "Automatyczne rozpoznanie"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
msgstr ""
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr ""
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
#, fuzzy
msgid "Skip X Configuration"
msgstr "Konfiguracja SCSI"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"NiektСre systemy wymagaj╠ specjalnych opcji przekazywanych do kernela "
-"podczas bootowania systemu. Je©eli potrzebujesz przekazaФ te parametry "
-"wprowad╪ je teraz. W przeciwnym wypadku zostaw pole puste."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "NiektСre systemy wymagaj╠ specjalnych opcji przekazywanych do kernela podczas bootowania systemu. Je©eli potrzebujesz przekazaФ te parametry wprowad╪ je teraz. W przeciwnym wypadku zostaw pole puste."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Gdzie chcesz zainstalowaФ bootloadera?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Wyczy╤Ф"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Anuluj"
@@ -1421,23 +1286,12 @@ msgid "Edit Boot Label"
msgstr "Edycja etykiety bootowej"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Boot manager mo©e bootowaФ inne systemy operacyjne. Mo©esz wyszczegСlniФ "
-"jakie partycje mog╠ byФ wybierane podczas bootowania oraz mo©esz podaФ "
-"etykiety tych partycji."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Boot manager mo©e bootowaФ inne systemy operacyjne. Mo©esz wyszczegСlniФ jakie partycje mog╠ byФ wybierane podczas bootowania oraz mo©esz podaФ etykiety tych partycji."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"NiektСre z wybranych pakietСw potrzebuj╠ pakietСw, ktСrych nie wybraЁe╤. "
-"Wybierz OK to zostan╠ zainstalowane wymagane pakiety."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "NiektСre z wybranych pakietСw potrzebuj╠ pakietСw, ktСrych nie wybraЁe╤. Wybierz OK to zostan╠ zainstalowane wymagane pakiety."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1445,32 +1299,20 @@ msgstr "Ustawienia dysku"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid jest narzЙdziem do partycjonowania i zmiany ustawieЯ dyskСw. Jest "
-"zaprojektowany jako proste w obsЁudze Linuxowe narzЙdzie. Tradycyjny fdisk, "
-"sЁu©╠cy tak©e do partycjonowania, jest narzЙdziem o wiЙkszych "
-"mo©liwo╤ciach.\n"
+"Disk Druid jest narzЙdziem do partycjonowania i zmiany ustawieЯ dyskСw. Jest zaprojektowany jako proste w obsЁudze Linuxowe narzЙdzie. Tradycyjny fdisk, sЁu©╠cy tak©e do partycjonowania, jest narzЙdziem o wiЙkszych mo©liwo╤ciach.\n"
"\n"
"KtСre narzЙdzie chciaЁby╤ u©yФ?"
#: ../textw/partitioning.py:58
#, fuzzy
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Aby zainstalowaФ Red Hat Linux musisz posiadaФ co najmniej 150MB partycjЙ. "
-"SugerujЙ umieszczenie tej partycji na jednym z pierwszych dwСch dyskСw "
-"twardych, z ktСrych bЙdziesz mСgЁ wystartowaФ Linux'a poprzez LILO."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Aby zainstalowaФ Red Hat Linux musisz posiadaФ co najmniej 150MB partycjЙ. SugerujЙ umieszczenie tej partycji na jednym z pierwszych dwСch dyskСw twardych, z ktСrych bЙdziesz mСgЁ wystartowaФ Linux'a poprzez LILO."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Gotowe"
@@ -1479,16 +1321,8 @@ msgid "Continue"
msgstr "Kontynuuj"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Jak╠ partycjЙ chcesz sformatowaФ? SugerujЙ sformatowaФ wszystkie partycje "
-"systemu, wЁ╠czaj╠c /, /usr oraz /var. Nie trzeba natomiast formatowaФ /home "
-"oraz /usr/local je©eli katalogi te byЁy ju© formatowane w poprzedniej "
-"instalacji."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Jak╠ partycjЙ chcesz sformatowaФ? SugerujЙ sformatowaФ wszystkie partycje systemu, wЁ╠czaj╠c /, /usr oraz /var. Nie trzeba natomiast formatowaФ /home oraz /usr/local je©eli katalogi te byЁy ju© formatowane w poprzedniej instalacji."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1509,14 +1343,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Wybierz hasЁo roota. Musisz wprowadziФ je dwa razy aby upewniФ siЙ, ©e nie "
-"popeЁniЁe╤ bЁЙdu podczas pisania. ZapamiЙtaj, ©e hasЁo roota jest krytycznym "
-"elementem bezpieczeЯstwa systemu!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Wybierz hasЁo roota. Musisz wprowadziФ je dwa razy aby upewniФ siЙ, ©e nie popeЁniЁe╤ bЁЙdu podczas pisania. ZapamiЙtaj, ©e hasЁo roota jest krytycznym elementem bezpieczeЯstwa systemu!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1572,17 +1400,11 @@ msgid "This user id already exists. Choose another."
msgstr ""
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
msgstr ""
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
msgstr ""
#: ../textw/userauth.py:160
@@ -1626,8 +1448,7 @@ msgstr ""
msgid "Request server via broadcast"
msgstr ""
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "BЁЙdny punkt montowania"
@@ -1696,43 +1517,26 @@ msgid "Too Many Drives"
msgstr "Zbyt du©o napЙdСw"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Masz wiЙcej dyskСw ni© ten program wspiera. U©yj standardowego programufdisk "
-"aby ustawiФ parametry dyskСw i daj znaФ firmie Red Hat Software, ©e "
-"zobaczyЁe╤ ten komunikat."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Masz wiЙcej dyskСw ni© ten program wspiera. U©yj standardowego programufdisk aby ustawiФ parametry dyskСw i daj znaФ firmie Red Hat Software, ©e zobaczyЁe╤ ten komunikat."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Nie znaleziono napЙdСw"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"BЁ╠d - brak urz╠dzenia na ktСrym mo©na utworzyФ nowy system plikСw. Sprawd╪ "
-"swСj sprzЙt i znajd╪ przyczynЙ problemu."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "BЁ╠d - brak urz╠dzenia na ktСrym mo©na utworzyФ nowy system plikСw. Sprawd╪ swСj sprzЙt i znajd╪ przyczynЙ problemu."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, fuzzy, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Znaleziono bЁ╠d podczas czytania tabeli partycji w urz╠dzeniu %s. BЁ╠d: "
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Znaleziono bЁ╠d podczas czytania tabeli partycji w urz╠dzeniu %s. BЁ╠d: "
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Tabela partycji w urz╠dzeniu %s jest uszkodzona. Aby utworzyФ now╠ partycjЙ "
-"nale©y j╠ zainicjowaФ, co spowoduje utratЙ WSZYSTKICH DANYCH na tym dysku."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Tabela partycji w urz╠dzeniu %s jest uszkodzona. Aby utworzyФ now╠ partycjЙ nale©y j╠ zainicjowaФ, co spowoduje utratЙ WSZYSTKICH DANYCH na tym dysku."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1755,14 +1559,8 @@ msgid "BSD Disklabel"
msgstr "Etykieta dysku BSD"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"ZostaЁ znaleziony dysk z etykiet╠ BSD. Proces instalacji Red Hat "
-"wspieratakie dyski w trybie tylko do odczytu. U©yj programu fdisk (zamiast "
-"Disk Druid) dla maszyn z etykiet╠ BSD."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "ZostaЁ znaleziony dysk z etykiet╠ BSD. Proces instalacji Red Hat wspieratakie dyski w trybie tylko do odczytu. U©yj programu fdisk (zamiast Disk Druid) dla maszyn z etykiet╠ BSD."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1792,10 +1590,7 @@ msgstr "UsuЯ partycjЙ"
msgid "Are you sure you want to delete this partition?"
msgstr "Czy je╤te╤ pewien, ©e chcesz usun╠Ф tЙ partycjЙ?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Edycja partycji"
@@ -1838,30 +1633,21 @@ msgstr "Rodzaj partycji"
msgid "Allowable Drives:"
msgstr ""
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Brak punktu montowania"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"NiewyspecyfikowaЁe╤ punktu montowania dla tej partycji. Czy jeste╤ pewien?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "NiewyspecyfikowaЁe╤ punktu montowania dla tej partycji. Czy jeste╤ pewien?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "BЁ╠d punktu montowania"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Punkt montowania zawiera bЁЙdn╠ ╤cie©kЙ lub ju© jest u©ywany. Wybierz "
-"poprawny punkt."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Punkt montowania zawiera bЁЙdn╠ ╤cie©kЙ lub ju© jest u©ywany. Wybierz poprawny punkt."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
@@ -1869,27 +1655,17 @@ msgstr "BЁ╠d rozmiaru"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
#, fuzzy
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"Wymagany rozmiar jest bЁЙdny. Sprawd╪ czy rozmiar jest wiЙkszy ni© zero (0) "
-"i jest podany dziesiЙtnie."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "Wymagany rozmiar jest bЁЙdny. Sprawd╪ czy rozmiar jest wiЙkszy ni© zero (0) i jest podany dziesiЙtnie."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "BЁ╠d rozmiaru swap"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, fuzzy, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Chcesz stworzyФ partycjЙ swap, ktСra jest zbyt du©a. Maksymalny rozmiar "
-"wynosi %d MB."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Chcesz stworzyФ partycjЙ swap, ktСra jest zbyt du©a. Maksymalny rozmiar wynosi %d MB."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1898,11 +1674,9 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1108
#, fuzzy
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
-msgstr ""
-"NiewyspecyfikowaЁe╤ punktu montowania dla tej partycji. Czy jeste╤ pewien?"
+msgstr "NiewyspecyfikowaЁe╤ punktu montowania dla tej partycji. Czy jeste╤ pewien?"
#: ../libfdisk/gnomefsedit.c:1114
#, fuzzy
@@ -1910,9 +1684,7 @@ msgid "Close"
msgstr "Wyczy╤Ф"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
msgstr ""
#. XXXXX - for now destroy the raid entry since it
@@ -1923,27 +1695,17 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
msgstr ""
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Niezaalokowane partycje"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Aktualnie znajduj╠ siЙ niezaalokowane partycje na li╤cie wymaganych "
-"partycji. Niezaalokowane partycje s╠ wyszczegСlnione poni©ej."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Aktualnie znajduj╠ siЙ niezaalokowane partycje na li╤cie wymaganych partycji. Niezaalokowane partycje s╠ wyszczegСlnione poni©ej."
#: ../libfdisk/gnomefsedit.c:1673
#, fuzzy
@@ -1966,26 +1728,19 @@ msgstr "Partycje do sformatowania"
#: ../libfdisk/gnomefsedit.c:1880
#, fuzzy
msgid "You have not selected a mount point. A mount point is required."
-msgstr ""
-"NiewyspecyfikowaЁe╤ punktu montowania dla tej partycji. Czy jeste╤ pewien?"
+msgstr "NiewyspecyfikowaЁe╤ punktu montowania dla tej partycji. Czy jeste╤ pewien?"
#: ../libfdisk/gnomefsedit.c:1888
#, fuzzy
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Punkt montowania zawiera bЁЙdn╠ ╤cie©kЙ lub ju© jest u©ywany. Wybierz "
-"poprawny punkt."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Punkt montowania zawiera bЁЙdn╠ ╤cie©kЙ lub ju© jest u©ywany. Wybierz poprawny punkt."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr ""
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1912
@@ -2003,9 +1758,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1933
@@ -2014,9 +1767,7 @@ msgid "Not Enough Partitions"
msgstr "Brak partrycji root"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1942
@@ -2029,10 +1780,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
msgstr ""
#: ../libfdisk/gnomefsedit.c:2034
@@ -2103,12 +1851,8 @@ msgstr "Niezaalokowane partycje"
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
#, fuzzy
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Musisz przydzieliФ partycjЙ root (/) dla partycji Linux native (ext2) dla "
-"procesu instalacji."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Musisz przydzieliФ partycjЙ root (/) dla partycji Linux native (ext2) dla procesu instalacji."
#: ../libfdisk/gnomefsedit.c:3157
#, fuzzy
@@ -2166,12 +1910,8 @@ msgid "No Root Partition"
msgstr "Brak partrycji root"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Musisz przydzieliФ partycjЙ root (/) dla partycji Linux native (ext2) dla "
-"procesu instalacji."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Musisz przydzieliФ partycjЙ root (/) dla partycji Linux native (ext2) dla procesu instalacji."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2183,13 +1923,11 @@ msgstr "Musisz przydzieliФ partycjЙ swap dla procesu instalacji."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"S╠ niezaalokowane partycje. Je©eli wyjdziesz, nie zostan╠ one zapisane na "
-"dysku.\n"
+"S╠ niezaalokowane partycje. Je©eli wyjdziesz, nie zostan╠ one zapisane na dysku.\n"
"\n"
"Na pewno chcesz wyj╤Ф?"
@@ -2227,10 +1965,7 @@ msgid "Miscellaneous"
msgstr "RС©ne opcje:"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
msgstr ""
#: ../loader/devices.c:65
@@ -2238,8 +1973,7 @@ msgstr ""
msgid "Module Parameters"
msgstr "Parametry moduЁu"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
#, fuzzy
msgid "Devices"
msgstr "Urz╠dzenie"
@@ -2254,15 +1988,11 @@ msgid "Failed to mount floppy disk."
msgstr "BЁ╠d poЁ╠czenia z serwerem FTP"
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
msgstr ""
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
msgstr ""
#: ../loader/devices.c:211
@@ -2293,17 +2023,17 @@ msgstr "BЁ╠d odczytu zawarto╤ci pliku kickstart %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "BЁ╠d w lini %d w pliku kickstart %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
#, fuzzy
msgid "Choose a Language"
msgstr "Wybierz grupЙ do spawdzenia:"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
#, fuzzy
msgid "Keyboard Type"
msgstr "Typ klawiatury"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
#, fuzzy
msgid "What type of keyboard do you have?"
msgstr "Jaki posiadasz typ drukarki?"
@@ -2321,145 +2051,130 @@ msgstr ""
msgid "Hard drive"
msgstr "Dyski twarde"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
#, fuzzy
msgid "Welcome to Red Hat Linux"
msgstr "Witamy w Red Hat Linux"
-#: ../loader/loader.c:126
+#: ../loader/loader.c:129
#, fuzzy
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> nastЙpny element | <Space> wybСr | <F12> nastЙpny ekran "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> nastЙpny element | <Space> wybСr | <F12> nastЙpny ekran "
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr ""
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
#, fuzzy
msgid "What kind of device would you like to add"
msgstr "Jaki jest typ no╤nika zawierajacego pakiety do instalacji?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
#, fuzzy
msgid "I have found the following devices in your system:"
msgstr ""
"ZostaЁy znalezione pastЙpuj╠ce typu urz╠dzeЯ SCSCI w twoim systemie:\n"
"\n"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
#, fuzzy
msgid "Add Device"
msgstr "Urz╠dzenie"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
msgstr ""
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
#, fuzzy
msgid "Loading"
msgstr "Stacja robocza"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
#, fuzzy
msgid "Loading second stage ramdisk..."
msgstr "Wczytywanie dysku supplemental..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
#, fuzzy
msgid "Error loading ramdisk."
msgstr "Tworzenie inicjacyjnego ramdysku..."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Dyski twarde"
-#: ../loader/loader.c:594
+#: ../loader/loader.c:597
#, fuzzy
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"Nie zdefiniowaЁe╤ obszaru swap. Czy chcesz kontynuowaФ czy te© poprawiФ "
-"ustawienia dysku?"
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "Nie zdefiniowaЁe╤ obszaru swap. Czy chcesz kontynuowaФ czy te© poprawiФ ustawienia dysku?"
-#: ../loader/loader.c:607
+#: ../loader/loader.c:610
#, fuzzy
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Podaj nazwЙ i katalog partycji zawieraj╠cec╠ katalogi RedHat/RPMS oraz "
-"RedHat/base."
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Podaj nazwЙ i katalog partycji zawieraj╠cec╠ katalogi RedHat/RPMS oraz RedHat/base."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Katalog zawieraj╠cy Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Wybierz partycjЙ"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "Urz╠dzenie %s nie zawiera drzewa instalacyjnego Red Hat."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
msgstr ""
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Ten katalog nie zawiera drzewa instalacyjnego Red Hat."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Nie mogЙ zamontowaФ tego katalogu z serwera"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr ""
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
#, fuzzy
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Tworzenie inicjacyjnego ramdysku..."
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr ""
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "Metoda instalacji"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr ""
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
#, fuzzy
msgid "What type of media contains the packages to be installed?"
msgstr "Jaki jest typ no╤nika zawierajacego pakiety do instalacji?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Nie mogЙ znale╪Ф ks.cfg na dyskietce bootuj╠cej."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr ""
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
#, fuzzy
msgid "Initializing PC Card Devices..."
msgstr "Inicjalizacja CR-ROM'u"
@@ -2492,12 +2207,8 @@ msgstr ""
" Red Hat Linux dla twojej architektury"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Podaj konfiguracjЙ IP dla tej maszyny. Ka©dy element powinien byФ "
-"wprowadzony jako IP adres w notacji liczbowej (np. 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Podaj konfiguracjЙ IP dla tej maszyny. Ka©dy element powinien byФ wprowadzony jako IP adres w notacji liczbowej (np. 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2570,11 +2281,8 @@ msgstr "Ustawienia NFS"
#: ../loader/net.c:698
#, fuzzy
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> nastЙpny element | <Space> wybСr | <F12> nastЙpny ekran "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> nastЙpny element | <Space> wybСr | <F12> nastЙpny ekran "
#: ../loader/net.c:699
#, c-format
@@ -2660,18 +2368,11 @@ msgid "You must enter a directory."
msgstr ""
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Je©eli u©ywasz nieanonimowego ftp, wprowad╪ nazwЙ u©ytkownika oraz hasЁo. "
-"Je©eli serwera proxy, wprowad╪ jego nazwЙ."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Je©eli u©ywasz nieanonimowego ftp, wprowad╪ nazwЙ u©ytkownika oraz hasЁo. Je©eli serwera proxy, wprowad╪ jego nazwЙ."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
msgstr ""
#: ../loader/urls.c:295
@@ -2703,33 +2404,19 @@ msgstr "FTP proxy:"
msgid "Loading SCSI driver"
msgstr "Wczytywanie dysku supplemental..."
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "ZostaЁ wykryty bЁ╠d podczas czytania dysku z etykiet╠ Sun w napЙdzie "
-#~ "%s.Musisz u©yФ fdisk aby utworzyФ i zapisaФ now╠ etykietЙ dla tego napЙdu."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "ZostaЁ wykryty bЁ╠d podczas czytania dysku z etykiet╠ Sun w napЙdzie %s.Musisz u©yФ fdisk aby utworzyФ i zapisaФ now╠ etykietЙ dla tego napЙdu."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "BЁЙdna etykieta Sun"
#, fuzzy
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Musisz przydzieliФ partycjЙ root (/) dla partycji Linux native (ext2) dla "
-#~ "procesu instalacji."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Musisz przydzieliФ partycjЙ root (/) dla partycji Linux native (ext2) dla procesu instalacji."
#, fuzzy
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Musisz przydzieliФ partycjЙ root (/) dla partycji Linux native (ext2) dla "
-#~ "procesu instalacji."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Musisz przydzieliФ partycjЙ root (/) dla partycji Linux native (ext2) dla procesu instalacji."
#, fuzzy
#~ msgid "Root Partition Selection"
@@ -2807,26 +2494,11 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "I can't find the device anywhere on your system!"
#~ msgstr "Nie mogЙ znale╪Ф sterownika w twoim systemie!"
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "W niektСrych przypadkach sterownik %s potrzebuje dodatkowej informacji do "
-#~ "poprawnej pracy, chcia© normalnie dziaЁa dobrze bez niej. Czy chcesz podaФ "
-#~ "tЙ informacjЙ czy pozwalasz aby sterownik zrobiЁ to za ciebie?"
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "W niektСrych przypadkach sterownik %s potrzebuje dodatkowej informacji do poprawnej pracy, chcia© normalnie dziaЁa dobrze bez niej. Czy chcesz podaФ tЙ informacjЙ czy pozwalasz aby sterownik zrobiЁ to za ciebie?"
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "W niektСrych przypadkach sterownik %s potrzebuje dodatkowych informacji o "
-#~ "twoim sprzЙcie. Je©eli chcesz najczЙ╤ciej u©ywane warto╤ci zostan╠ "
-#~ "wyprСbowane."
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "W niektСrych przypadkach sterownik %s potrzebuje dodatkowych informacji o twoim sprzЙcie. Je©eli chcesz najczЙ╤ciej u©ywane warto╤ci zostan╠ wyprСbowane."
#~ msgid "Module options:"
#~ msgstr "Opcje moduЁu:"
@@ -2887,12 +2559,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgstr "polecenie nfs jest niekompletne"
#, fuzzy
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Nie moge zamontowaФ dyskietki. WЁС© dyskietkЙ Red Hat Supplementary lub "
-#~ "wybierz Anuluj, aby wybraФ inn╠ metodЙ instalacji."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Nie moge zamontowaФ dyskietki. WЁС© dyskietkЙ Red Hat Supplementary lub wybierz Anuluj, aby wybraФ inn╠ metodЙ instalacji."
#, fuzzy
#~ msgid "Loading PCMCIA Support"
@@ -2901,12 +2569,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "Supplemental Disk"
#~ msgstr "Dysk Supplemental"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Nie moge zamontowaФ dyskietki. WЁС© dyskietkЙ Red Hat Supplementary lub "
-#~ "wybierz Anuluj, aby wybraФ inn╠ metodЙ instalacji."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Nie moge zamontowaФ dyskietki. WЁС© dyskietkЙ Red Hat Supplementary lub wybierz Anuluj, aby wybraФ inn╠ metodЙ instalacji."
#, fuzzy
#~ msgid "Loading Supplemental Disk..."
@@ -2917,29 +2581,16 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgstr "Podsumowanie napЙdu"
#, fuzzy
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "Ta metoda instalacji wymaga drugiej dyskietki. Wyjmij bootuj╠c╠ dyskietkЙ i "
-#~ "wЁС© dyskietkЙ Red Hat Supplementary."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "Ta metoda instalacji wymaga drugiej dyskietki. Wyjmij bootuj╠c╠ dyskietkЙ i wЁС© dyskietkЙ Red Hat Supplementary."
#, fuzzy
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Nie moge zamontowaФ dyskietki. WЁС© dyskietkЙ Red Hat Supplementary lub "
-#~ "wybierz Anuluj, aby wybraФ inn╠ metodЙ instalacji."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Nie moge zamontowaФ dyskietki. WЁС© dyskietkЙ Red Hat Supplementary lub wybierz Anuluj, aby wybraФ inn╠ metodЙ instalacji."
#, fuzzy
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "Ta metoda instalacji wymaga drugiej dyskietki. Wyjmij bootuj╠c╠ dyskietkЙ i "
-#~ "wЁС© dyskietkЙ Red Hat Supplementary."
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "Ta metoda instalacji wymaga drugiej dyskietki. Wyjmij bootuj╠c╠ dyskietkЙ i wЁС© dyskietkЙ Red Hat Supplementary."
#, fuzzy
#~ msgid "hd command"
@@ -2996,14 +2647,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "mount failed: %s"
#~ msgstr "bЁЙdne montowanie: %s"
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "Tabela partycji w urz╠dzeniu %s jest uszkodzona. Aby utworzyФ now╠ partycjЙ "
-#~ "nale©y j╠ zainicjowaФ. Mo©esz wybraФ \"zerombr yes\" w pliku kickstart aby "
-#~ "zrobiФ to automatycznie"
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "Tabela partycji w urz╠dzeniu %s jest uszkodzona. Aby utworzyФ now╠ partycjЙ nale©y j╠ zainicjowaФ. Mo©esz wybraФ \"zerombr yes\" w pliku kickstart aby zrobiФ to automatycznie"
#~ msgid "Zero Partition Table"
#~ msgstr "Brak tabeli partycji"
@@ -3013,8 +2658,7 @@ msgstr "Wczytywanie dysku supplemental..."
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "zЁy argument polecenia zerombr kickstart: %s.\n"
-#~ "Musi byФ 'on', '1' lub 'yes' aby wЁ╠czyФ lub 'off', '0' lub 'no' aby "
-#~ "wyЁ╠czyФ."
+#~ "Musi byФ 'on', '1' lub 'yes' aby wЁ╠czyФ lub 'off', '0' lub 'no' aby wyЁ╠czyФ."
#~ msgid "Clear Partition Command"
#~ msgstr "Polecenie czyszczenia partycji"
@@ -3031,12 +2675,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "Option Ignored"
#~ msgstr "Zignorowana opcja"
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "Opcja --maxsize dla partycji %s zostaЁa zignorowana. Sprawd╪, ©e jej warto╤Ф "
-#~ "jest wiЙksza ni© opcji --size."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "Opcja --maxsize dla partycji %s zostaЁa zignorowana. Sprawd╪, ©e jej warto╤Ф jest wiЙksza ni© opcji --size."
#~ msgid "The mount point %s is already in use."
#~ msgstr "Punkt montowania %s ju© istnieje."
@@ -3115,19 +2755,12 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "Scanning hard drives..."
#~ msgstr "Wyszukiwanie dyskСw twardych..."
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "Nie masz ©adnych dostЙpnych dyskСw! Prawdopodobnie zapomniaЁe╤ skonfigurowaФ "
-#~ "kontrolera SCSI."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "Nie masz ©adnych dostЙpnych dyskСw! Prawdopodobnie zapomniaЁe╤ skonfigurowaФ kontrolera SCSI."
#, fuzzy
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "Aby zainstalowaФ Red Hat Linux musisz posiadaФ co najmniej 150MB partycjЙ."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "Aby zainstalowaФ Red Hat Linux musisz posiadaФ co najmniej 150MB partycjЙ."
#~ msgid "Partition Disks"
#~ msgstr "Partycja dyskСw"
@@ -3136,21 +2769,13 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgstr "Wymagane przeЁadowanie systemu"
#~ msgid ""
-#~ "The kernel is unable to read your new partitioning information, probably "
-#~ "because you modified extended partitions. While this is not critical, you "
-#~ "must reboot your machine before proceeding. Insert the Red Hat boot disk now "
-#~ "and press Return to reboot your system.\n"
+#~ "The kernel is unable to read your new partitioning information, probably because you modified extended partitions. While this is not critical, you must reboot your machine before proceeding. Insert the Red Hat boot disk now and press Return to reboot your system.\n"
#~ "\n"
-#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an "
-#~ "empty SCSI drive can also cause this problem."
+#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an empty SCSI drive can also cause this problem."
#~ msgstr ""
-#~ "J╠dro systemu nie mo©e przeczytaФ informacji o nowej partycji, "
-#~ "prawdopodobnie zostaЁa zmodyfikowana rozszerzona partycja. Nie jest to du©y "
-#~ "problem jednak musisz przeЁadowaФ system. W tym celu wЁС© dyskietkЙ "
-#~ "bootuj╠c╠ z Red Hat Linux i naci╤nij Enter.\n"
+#~ "J╠dro systemu nie mo©e przeczytaФ informacji o nowej partycji, prawdopodobnie zostaЁa zmodyfikowana rozszerzona partycja. Nie jest to du©y problem jednak musisz przeЁadowaФ system. W tym celu wЁС© dyskietkЙ bootuj╠c╠ z Red Hat Linux i naci╤nij Enter.\n"
#~ "\n"
-#~ "Je©eli posiadasz napЙd ZIP lub JAZ, sprawd╪ czy dysk jest w napЙdzie. Pusty "
-#~ "napЙd SCSI mo©e tak©e powodowaФ powstanie tego komunikatu."
+#~ "Je©eli posiadasz napЙd ZIP lub JAZ, sprawd╪ czy dysk jest w napЙdzie. Pusty napЙd SCSI mo©e tak©e powodowaФ powstanie tego komunikatu."
#~ msgid "lilo command"
#~ msgstr "polecenie lilo"
@@ -3162,27 +2787,16 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgstr "Wsparcie PCMCIA"
#, fuzzy
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "Czy potrzebujesz u©yФ PCMCIA podczas instalacji? Odpowiedz nie je©eli "
-#~ "wsparcie PCMCIA jest potrzebne dopiero po instalacji. Nie potrzebujesz "
-#~ "wsparcia PCMCIA je©eli instalujesz Red Hat z wbudowanego napЙdu CD-ROM."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "Czy potrzebujesz u©yФ PCMCIA podczas instalacji? Odpowiedz nie je©eli wsparcie PCMCIA jest potrzebne dopiero po instalacji. Nie potrzebujesz wsparcia PCMCIA je©eli instalujesz Red Hat z wbudowanego napЙdu CD-ROM."
#, fuzzy
#~ msgid "PCMCIA Support Disk"
#~ msgstr "Wsparcie PCMCIA"
#, fuzzy
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "Ta metoda instalacji wymaga drugiej dyskietki. Wyjmij bootuj╠c╠ dyskietkЙ i "
-#~ "wЁС© dyskietkЙ Red Hat Supplementary."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "Ta metoda instalacji wymaga drugiej dyskietki. Wyjmij bootuj╠c╠ dyskietkЙ i wЁС© dyskietkЙ Red Hat Supplementary."
#~ msgid "Starting PCMCIA services..."
#~ msgstr "Startowanie usЁug PCMCIA..."
@@ -3262,14 +2876,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "Upgrade log"
#~ msgstr "Log uaktualnienia"
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "Kompletny log twojego uaktualnienia bЙdzie znajdowaЁ siЙ w "
-#~ "/tmp/upgrade.log.Po ponownym przeЁadowaniu systemu przeczytaj ten plik czy "
-#~ "system zostaЁ poprawnie uaktualniony."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "Kompletny log twojego uaktualnienia bЙdzie znajdowaЁ siЙ w /tmp/upgrade.log.Po ponownym przeЁadowaniu systemu przeczytaj ten plik czy system zostaЁ poprawnie uaktualniony."
#~ msgid "rootpw command"
#~ msgstr "polecenie rootpw"
@@ -3286,19 +2894,11 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "Installation Path"
#~ msgstr "╕cie©ka instalacyjna"
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "Czy chcesz zainstalowaФ nowy system czy uaktualniФ zawieraj╠cy ju© Red Hat "
-#~ "Linux 2.0 lub pС╪niejszy?"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "Czy chcesz zainstalowaФ nowy system czy uaktualniФ zawieraj╠cy ju© Red Hat Linux 2.0 lub pС╪niejszy?"
-#~ msgid ""
-#~ "What type of machine are you installing? For maximum flexibility, choose "
-#~ "\"Custom\"."
-#~ msgstr ""
-#~ "Na jakim typie maszyny chcesz zainstalowaФ system? Dla wiЙkszo╤ci przypadkСw "
-#~ "wybierz \"Normalny\"."
+#~ msgid "What type of machine are you installing? For maximum flexibility, choose \"Custom\"."
+#~ msgstr "Na jakim typie maszyny chcesz zainstalowaФ system? Dla wiЙkszo╤ci przypadkСw wybierz \"Normalny\"."
#~ msgid "Converting RPM database..."
#~ msgstr "Konwertowanie bazy RPM..."
@@ -3312,23 +2912,16 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
#~ msgstr ""
#~ "BЁ╠d w kroku \"%s\" podczas instalacji.\n"
#~ "\n"
-#~ "Mo©esz ponowiФ ten krok, wrСciФ do poprzedniego kroku instalacji lub wybraФ "
-#~ "inny krok z menu. Nie jest zalecane u©ycie menu je©eli nie jeste╤ obeznany z "
-#~ "Red Hat Linux. Co wybierasz?"
+#~ "Mo©esz ponowiФ ten krok, wrСciФ do poprzedniego kroku instalacji lub wybraФ inny krok z menu. Nie jest zalecane u©ycie menu je©eli nie jeste╤ obeznany z Red Hat Linux. Co wybierasz?"
#~ msgid " Continue with install"
#~ msgstr " Kontynuacja instalacji"
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
#~ msgstr "Jaki krok chcesz wykonaФ? Kroki z * zostaЁy ju© wykonane w caЁo╤ci."
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
@@ -3393,12 +2986,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "No Swap Space"
#~ msgstr "Brak obszaru swap"
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "Jak╠ partycjЙ chcesz u©yФ jako partycjЙ swap? To mo©e zniszczyФ wszyskie "
-#~ "dane jakie mog╠ znajdowaФ sie na tej partycji."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "Jak╠ partycjЙ chcesz u©yФ jako partycjЙ swap? To mo©e zniszczyФ wszyskie dane jakie mog╠ znajdowaФ sie na tej partycji."
#~ msgid "Active Swap Space"
#~ msgstr "Uaktywnienie obszaru swap"
@@ -3415,12 +3004,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "Ethernet Probe"
#~ msgstr "Test Ethernetu"
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
-#~ msgstr ""
-#~ "Test Ethernetu zakoЯczyЁ siЙ z bЁЙdem, nie mogЙ znale╪Ф karty w twoim "
-#~ "systemie. Naci╤nij <Enter> i rЙcznie j╠ skonfiguruj."
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
+#~ msgstr "Test Ethernetu zakoЯczyЁ siЙ z bЁЙdem, nie mogЙ znale╪Ф karty w twoim systemie. Naci╤nij <Enter> i rЙcznie j╠ skonfiguruj."
#~ msgid "Static IP address"
#~ msgstr "Statyczny IP adres"
@@ -3437,12 +3022,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "kickstart network command is missing ip address"
#~ msgstr "polecenie network kickstart wykryЁ bЁЙdny ip adres"
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
-#~ msgstr ""
-#~ "Jak powinna byФ ustawiona IP informacja? Je©eli twСj administrator podaЁ Ci "
-#~ "IP adres wybierz statyczny IP."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
+#~ msgstr "Jak powinna byФ ustawiona IP informacja? Je©eli twСj administrator podaЁ Ci IP adres wybierz statyczny IP."
#~ msgid "Sending BOOTP request..."
#~ msgstr "WysyЁanie ©╠dania BOOTP..."
@@ -3456,23 +3037,11 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "cannot open file: %s"
#~ msgstr "nie mogЙ otworzyФ pliku: %s"
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
-#~ msgstr ""
-#~ "Nie mogЙ automatycznie wykryФ nazwy hosta. Naci╤niej <Enter> aby wprowadziФ "
-#~ "nazwЙ hosta."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
+#~ msgstr "Nie mogЙ automatycznie wykryФ nazwy hosta. Naci╤niej <Enter> aby wprowadziФ nazwЙ hosta."
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
-#~ msgstr ""
-#~ "Wpisz nazwЙ domeny, nazwЙ hosta oraz IP adresy dodatkowych serwerСw nazw. "
-#~ "Nazwa twojego hosta powinna zawieraФ peЁn╠ nazwЙ np. mybox.mylab.myco.com. "
-#~ "Je©eli nie posiadasz dodatkowych serwerСw nazw, pozostaw odpowiednie pola "
-#~ "puste."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
+#~ msgstr "Wpisz nazwЙ domeny, nazwЙ hosta oraz IP adresy dodatkowych serwerСw nazw. Nazwa twojego hosta powinna zawieraФ peЁn╠ nazwЙ np. mybox.mylab.myco.com. Je©eli nie posiadasz dodatkowych serwerСw nazw, pozostaw odpowiednie pola puste."
#~ msgid "Host name:"
#~ msgstr "Nazwa hosta:"
@@ -3495,9 +3064,7 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "LAN networking has already been configured. Do you want to:"
#~ msgstr "LAN jest ju© skonfigurowany. Czy chcesz:"
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
#~ msgstr "Czy chcesz konfigurowaФ LAN dla twojego systemu?"
#~ msgid "Cannot open components file: %s"
@@ -3562,8 +3129,7 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "<F1> will give you information on this printer driver."
#~ msgstr "<F1> wy╤wietlenie informacji dla danego sterownika drukarki"
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
+#~ msgid "You may now configure the paper size and resolution for this printer."
#~ msgstr "Mo©esz podaФ rozmiar papieru oraz rodzielczo╤Ф dla tej drukarki."
#~ msgid "Paper Size"
@@ -3589,12 +3155,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "Configure Uniprint Driver"
#~ msgstr "Konfiguracja drukarki"
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
-#~ msgstr ""
-#~ "Do jakiego urz╠dzenia jest podЁ╠czona drukarka (/dev/lp0 jest rСwnoznaczne z "
-#~ "LPT1:)?"
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr "Do jakiego urz╠dzenia jest podЁ╠czona drukarka (/dev/lp0 jest rСwnoznaczne z LPT1:)?"
#~ msgid ""
#~ "Auto-detected ports:\n"
@@ -3624,13 +3186,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "Remote lpd Printer Options"
#~ msgstr "Opcje dla zdalnej drukarki lpd"
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "Aby u©yc zdalnej kolejki lpd musisz podaФ nazwЙ hosta oraz nazwЙ kolejki, w "
-#~ "ktСrej bЙd╠ umieszczane wydruki."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "Aby u©yc zdalnej kolejki lpd musisz podaФ nazwЙ hosta oraz nazwЙ kolejki, w ktСrej bЙd╠ umieszczane wydruki."
#, fuzzy
#~ msgid "Printer Server:"
@@ -3645,15 +3202,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgstr "Standardowe opcje drukarki"
#, fuzzy
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "Aby drukowaФ za pomoc╠ LAN managera musisz podaФ nazwЙ LAN managera "
-#~ "(niekiedy nie jest to ta sama nazwa co TCP/IP host) i prawdopodobnie IP "
-#~ "adres serwera druku, nazwЙ zasobu oraz nazwЙ u©ytkownika i hasЁo."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "Aby drukowaФ za pomoc╠ LAN managera musisz podaФ nazwЙ LAN managera (niekiedy nie jest to ta sama nazwa co TCP/IP host) i prawdopodobnie IP adres serwera druku, nazwЙ zasobu oraz nazwЙ u©ytkownika i hasЁo."
#, fuzzy
#~ msgid "SMB server host:"
@@ -3671,16 +3221,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgstr "Standardowe opcje drukarki"
#, fuzzy
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "Aby drukowaФ za pomoc╠ LAN managera musisz podaФ nazwЙ LAN managera "
-#~ "(niekiedy nie jest to ta sama nazwa co TCP/IP host) i prawdopodobnie IP "
-#~ "adres serwera druku, nazwЙ zasobu oraz nazwЙ u©ytkownika i hasЁo."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "Aby drukowaФ za pomoc╠ LAN managera musisz podaФ nazwЙ LAN managera (niekiedy nie jest to ta sama nazwa co TCP/IP host) i prawdopodobnie IP adres serwera druku, nazwЙ zasobu oraz nazwЙ u©ytkownika i hasЁo."
#~ msgid "Spool directory:"
#~ msgstr "Katalog spool:"
@@ -3688,13 +3230,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "Standard Printer Options"
#~ msgstr "Standardowe opcje drukarki"
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Ka©da kolejka drukarki potrzebuje nazwy (najczЙ╤niej lp) oraz katalogu "
-#~ "spool. Jaka nazwa i katalog powinny byФ u©yte dla tej kolejki?"
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Ka©da kolejka drukarki potrzebuje nazwy (najczЙ╤niej lp) oraz katalogu spool. Jaka nazwa i katalog powinny byФ u©yte dla tej kolejki?"
#~ msgid "Would you like to configure a printer?"
#~ msgstr "Czy chcesz skonfigurowaФ drukarkЙ?"
@@ -3799,11 +3336,8 @@ msgstr "Wczytywanie dysku supplemental..."
#~ "%s"
#~ msgstr "BЁ╠d otwarcia pliku kickstart %s: %s"
-#~ msgid ""
-#~ "An error occurred reading the partition table for the block device %s. The "
-#~ "error was:"
-#~ msgstr ""
-#~ "Znaleziono bЁ╠d podczas czytania tabeli partycji w urz╠dzeniu %s. BЁ╠d: "
+#~ msgid "An error occurred reading the partition table for the block device %s. The error was:"
+#~ msgstr "Znaleziono bЁ╠d podczas czytania tabeli partycji w urz╠dzeniu %s. BЁ╠d: "
#~ msgid "LAN manager host:"
#~ msgstr "Nazwa LAN managera:"
@@ -3835,7 +3369,5 @@ msgstr "Wczytywanie dysku supplemental..."
#~ msgid "I cannot log into machine: %s\n"
#~ msgstr "Nie mogЙ siЙ zalogowaФ do maszyny: %s\n"
-#~ msgid ""
-#~ "Would you like to install or configure the SILO bootloader on your system?"
-#~ msgstr ""
-#~ "Czy chcesz zainstalowaФ i skonfigurowaФ bootloader SILO w twoim systemie?"
+#~ msgid "Would you like to install or configure the SILO bootloader on your system?"
+#~ msgstr "Czy chcesz zainstalowaФ i skonfigurowaФ bootloader SILO w twoim systemie?"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 5643926a9..39b68d4da 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -13,94 +13,68 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr ""
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Anterior"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr ""
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr ""
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr ""
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr ""
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr ""
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr ""
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Bem-vindo ao Red Hat Linux"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Bem-vindo ao Red Hat Linux"
+
+#: ../gui.py:491
+#, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr ""
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
-msgstr ""
-"VocЙ nЦo selecionou um mount point para esta partiГЦo. Tem certeza que quer "
-"fazer isso?"
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
+msgstr "VocЙ nЦo selecionou um mount point para esta partiГЦo. Tem certeza que quer fazer isso?"
#: ../text.py:50
#, fuzzy
msgid "What language would you like to use during the installation process?"
msgstr "Que pacotes devem ser instalados?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr ""
@@ -120,8 +94,7 @@ msgstr ""
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Dispositivo"
@@ -131,26 +104,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr ""
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr ""
@@ -210,19 +164,13 @@ msgstr "Passos da InstalaГЦo"
msgid "What type of system would you like to install?"
msgstr "Que tipo de mМdia contИm os pacotes a serem instalados?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Erro"
#: ../text.py:232
msgid "You don't have any Linux partitions. You can't upgrade this system!"
-msgstr ""
-"Nenhuma partiГЦo Linux foi encontrada. NЦo И possМvel atualizar seu sistema!"
+msgstr "Nenhuma partiГЦo Linux foi encontrada. NЦo И possМvel atualizar seu sistema!"
#: ../text.py:245
#, fuzzy
@@ -239,34 +187,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Escolher pacotes para atualizaГЦo"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Os pacotes que vocЙ instalou, e quaisquer outros pacotes que sejam "
-"necessАrios para satisfazer suas dependЙncias, foram selecionados para "
-"instalaГЦo. VocЙ quer escolher o conjunto de pacotes a ser atualizado?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Os pacotes que vocЙ instalou, e quaisquer outros pacotes que sejam necessАrios para satisfazer suas dependЙncias, foram selecionados para instalaГЦo. VocЙ quer escolher o conjunto de pacotes a ser atualizado?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Sim"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "NЦo"
@@ -280,21 +208,15 @@ msgstr "Bem-vindo ao Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Bem-vindo ao Red Hat Linux!\n"
"\n"
-"O processo de instalaГЦo И explicado detalhadamente no Guia de InstalaГЦo do "
-"Red Hat Linux disponМvel na Conectiva. Se vocЙ tiver acesso a este manual, "
-"vocЙ deve ler a seГЦo sobre instalaГЦo antes de continuar.\n"
+"O processo de instalaГЦo И explicado detalhadamente no Guia de InstalaГЦo do Red Hat Linux disponМvel na Conectiva. Se vocЙ tiver acesso a este manual, vocЙ deve ler a seГЦo sobre instalaГЦo antes de continuar.\n"
"\n"
-"Se vocЙ comprou o Red Hat Linux, certifique-se de registrar sua compra "
-"atravИs de nosso web site, http://www.crhl.com.br."
+"Se vocЙ comprou o Red Hat Linux, certifique-se de registrar sua compra atravИs de nosso web site, http://www.crhl.com.br."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -336,34 +258,20 @@ msgid "Hostname Configuration"
msgstr "ConfiguraГЦo SCSI"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
msgstr ""
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "MАquina"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
-msgstr ""
-"Um disquete de inicializaГЦo personalizado fornece uma maneira de "
-"inicializar seu sistema Linux sem depender do carregador de inicializaГЦo "
-"normal. Isto И Зtil se vocЙ nЦo quer instalar o lilo em seu sistema, se "
-"outro sistema operacional remover o lilo ou se o lilo nЦo funcionar em sua "
-"configuraГЦo de hardware. Um disquete de inicializaГЦo personalizado tambИm "
-"poderА ser usado com o disquete de recuperaГЦo Red Hat, tornando muito mais "
-"fАcil a recuperaГЦo de falhas severas no sistema.\n"
+msgstr "Um disquete de inicializaГЦo personalizado fornece uma maneira de inicializar seu sistema Linux sem depender do carregador de inicializaГЦo normal. Isto И Зtil se vocЙ nЦo quer instalar o lilo em seu sistema, se outro sistema operacional remover o lilo ou se o lilo nЦo funcionar em sua configuraГЦo de hardware. Um disquete de inicializaГЦo personalizado tambИm poderА ser usado com o disquete de recuperaГЦo Red Hat, tornando muito mais fАcil a recuperaГЦo de falhas severas no sistema.\n"
#: ../text.py:466
msgid ""
@@ -411,13 +319,8 @@ msgid "Installation to begin"
msgstr "Passos da InstalaГЦo"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Um log completo de sua instalaГЦo estarА em /tmp/install.log apСs a "
-"reinicializaГЦo de seu sistema. VocЙ pode desejar manter este arquivo para "
-"referЙncia futura."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Um log completo de sua instalaГЦo estarА em /tmp/install.log apСs a reinicializaГЦo de seu sistema. VocЙ pode desejar manter este arquivo para referЙncia futura."
#: ../text.py:606
msgid "Complete"
@@ -428,37 +331,26 @@ msgstr "InstalaГЦo Finalizada com Sucesso"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"CongratulaГУes, a instalaГЦo terminou com sucesso.\n"
"\n"
-"Remova o disquete de seu drive e pressione Enter para reinicializar. Para "
-"obter informaГУes sobre correГУes disponМveis para esta versЦo do Red Hat "
-"Linux consulte a Errata disponМvel em http://www.crhl.com.br.\n"
+"Remova o disquete de seu drive e pressione Enter para reinicializar. Para obter informaГУes sobre correГУes disponМveis para esta versЦo do Red Hat Linux consulte a Errata disponМvel em http://www.crhl.com.br.\n"
"\n"
-"InformaГУes sobre configuraГЦo de seu sistema estЦo disponМveis no capМtulo "
-"Depois da InstalaГЦo no Guia do UsuАrio do Red Hat Linux."
+"InformaГУes sobre configuraГЦo de seu sistema estЦo disponМveis no capМtulo Depois da InstalaГЦo no Guia do UsuАrio do Red Hat Linux."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
msgstr ""
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Ignore"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
msgstr ""
#: ../text.py:697
@@ -527,17 +419,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr ""
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr ""
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
#, fuzzy
msgid "Partition"
msgstr "Reparticionar"
@@ -561,8 +450,7 @@ msgstr ""
msgid "Filesystem Formatting"
msgstr "Formatando"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
#, fuzzy
msgid "LILO Configuration"
msgstr "ConfiguraГЦo SCSI"
@@ -639,8 +527,7 @@ msgstr "Instalar sistema"
msgid "Installation Complete"
msgstr "Tipo de InstalaГЦo"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "ConfiguraГЦo SCSI"
@@ -669,176 +556,173 @@ msgstr "Cancelado"
#: ../text.py:1040
msgid "I can't go to the previous step from here. You will have to try again."
-msgstr ""
-"NЦo И possМvel ir para o passo anterior a partir deste. VocЙ deve tentar "
-"novamente."
+msgstr "NЦo И possМvel ir para o passo anterior a partir deste. VocЙ deve tentar novamente."
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "Erro na abertura: arquivo kickstart %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "Erro na abertura: arquivo kickstart %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Criando disco de inicializaГЦo..."
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Formatando"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "Criando sistema de arquivos ext2 em /dev/%s..."
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Criando disco de inicializaГЦo..."
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Buscando"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "Enviando requisiГЦo DHCP..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "sem sugestЦo"
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "Todos os Pacotes"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Erro na abertura: arquivo kickstart %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Buscando"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "Encontrando pacotes a serem atualizados..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr ""
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Encontrando pacotes a serem atualizados..."
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Buscando"
-#: ../todo.py:1344
+#: ../todo.py:1358
#, fuzzy
msgid "Rebuilding RPM database..."
msgstr "Convertendo banco de dados RPM..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr ""
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Instalando"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Nenhum Mount Point"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr ""
-#: ../todo.py:1439
+#: ../todo.py:1453
#, fuzzy
msgid "Disk Space"
msgstr "ConfiguraГЦo dos Discos"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Instalar"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "ConfiguraГЦo SCSI"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr ""
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr ""
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Servidor:"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Criando ramdisk inicial..."
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr ""
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
msgid "Horizontal frequency range"
msgstr ""
-#: ../xf86config.py:248
+#: ../xf86config.py:252
msgid "Vertical frequency range"
msgstr ""
@@ -872,8 +756,7 @@ msgstr "Senha:"
msgid "Password (confirm)"
msgstr "Senha (de novo) :"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr ""
@@ -881,15 +764,11 @@ msgstr ""
msgid "Add"
msgstr "Adicione"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Edite"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Apague"
@@ -982,8 +861,7 @@ msgstr "Atualizando"
msgid ""
"You don't have any Linux partitions.\n"
" You can't upgrade this sytem!"
-msgstr ""
-"Nenhuma partiГЦo Linux foi encontrada. NЦo И possМvel atualizar seu sistema!"
+msgstr "Nenhuma partiГЦo Linux foi encontrada. NЦo И possМvel atualizar seu sistema!"
#: ../iw/examine.py:59
#, fuzzy
@@ -1018,8 +896,7 @@ msgstr ""
msgid "KDE Workstation"
msgstr ""
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
#, fuzzy
msgid "Server"
msgstr "Servidor:"
@@ -1068,7 +945,7 @@ msgstr ""
msgid "Test your selection here:"
msgstr "Tipo do Teclado"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
#, fuzzy
msgid "What language should be used during the installation process?"
msgstr "Que pacotes devem ser instalados?"
@@ -1114,19 +991,15 @@ msgstr "Criar disco de inicializaГЦo"
msgid "Do not install LILO"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Tipo da PartiГЦo"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "RСtulo de Boot"
@@ -1134,46 +1007,46 @@ msgstr "RСtulo de Boot"
msgid "Emulate 3 Buttons"
msgstr ""
-#: ../iw/network.py:141
+#: ../iw/network.py:148
#, fuzzy
msgid "Configure using DHCP"
msgstr "Configurar fuso horАrio"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr ""
-#: ../iw/network.py:155
+#: ../iw/network.py:163
#, fuzzy
msgid "IP Address"
msgstr "EndereГo IP:"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
#, fuzzy
msgid "Netmask"
msgstr "MАscara:"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr ""
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr ""
@@ -1269,10 +1142,7 @@ msgid "Low Memory"
msgstr ""
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
msgstr ""
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
@@ -1285,17 +1155,15 @@ msgstr "Editar PartiГЦo"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
#, fuzzy
msgid "Remove data"
msgstr "lpd Remota"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
#, fuzzy
msgid "Manually partition"
msgstr "Reparticionar"
@@ -1355,7 +1223,7 @@ msgstr ""
msgid "Test failed"
msgstr ""
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
#, fuzzy
msgid "Customize X Configuration"
msgstr "ConfiguraГЦo SCSI"
@@ -1365,62 +1233,46 @@ msgstr "ConfiguraГЦo SCSI"
msgid "Bits per Pixel"
msgstr "Bits por Pixel:"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
#, fuzzy
msgid "Test this configuration"
msgstr "ConfiguraГЦo SCSI"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
msgstr ""
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
#, fuzzy
msgid "Autoprobe results:"
msgstr "DeteГЦo AutomАtica"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
msgstr ""
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr ""
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
#, fuzzy
msgid "Skip X Configuration"
msgstr "ConfiguraГЦo SCSI"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"Alguns sistemas precisarЦo passar opГУes especiais para o kernel em tempo de "
-"boot para que o sistema funcione corretamente. Se precisar passar opГУes de "
-"boot para o kernel, informe-as agora. Se nЦo precisar de nenhuma ou nЦo "
-"tiver certeza, deixe em branco."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "Alguns sistemas precisarЦo passar opГУes especiais para o kernel em tempo de boot para que o sistema funcione corretamente. Se precisar passar opГУes de boot para o kernel, informe-as agora. Se nЦo precisar de nenhuma ou nЦo tiver certeza, deixe em branco."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Onde deve ser instalado o carregador de boot?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Limpar"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Cancelar"
@@ -1429,24 +1281,12 @@ msgid "Edit Boot Label"
msgstr "Editar Boot Label"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"O gerenciador de boot que o Red Hat Linux usa pode iniciar outros sistemas "
-"operacionais. VocЙ precisa informar que partiГУes deseja ser capaz de "
-"iniciar e que rСtulo deseja usar para cada uma delas."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "O gerenciador de boot que o Red Hat Linux usa pode iniciar outros sistemas operacionais. VocЙ precisa informar que partiГУes deseja ser capaz de iniciar e que rСtulo deseja usar para cada uma delas."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Alguns dos pacotes selecionados para instalaГЦo requerem pacotes que nЦo "
-"foram selecionados. Se vocЙ selecionar Ok todos os pacotes requeridos serЦo "
-"instalados."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Alguns dos pacotes selecionados para instalaГЦo requerem pacotes que nЦo foram selecionados. Se vocЙ selecionar Ok todos os pacotes requeridos serЦo instalados."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1454,32 +1294,20 @@ msgstr "ConfiguraГЦo dos Discos"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid И uma ferramenta para particionamento e configuraГЦo de mount "
-"points. Foi projetada para ser mais fАcil de usar que o software tradicional "
-"de particionamento do Linux, fdisk, bem como mais poderosa. Entretanto, "
-"existem alguns casos onde o fdisk pode ser preferido.\n"
+"Disk Druid И uma ferramenta para particionamento e configuraГЦo de mount points. Foi projetada para ser mais fАcil de usar que o software tradicional de particionamento do Linux, fdisk, bem como mais poderosa. Entretanto, existem alguns casos onde o fdisk pode ser preferido.\n"
"\n"
"Que ferramenta deseja usar?"
#: ../textw/partitioning.py:58
#, fuzzy
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Para instalar o Red Hat Linux, voce deve ter pelo menos uma partiГЦo de 50MB "
-"dedicada ao Linux. Sugerimos colocar esta partiГЦo em um dos dois primeiros "
-"discos rМgidos em seu sistema para que o lilo possa ser usado."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Para instalar o Red Hat Linux, voce deve ter pelo menos uma partiГЦo de 50MB dedicada ao Linux. Sugerimos colocar esta partiГЦo em um dos dois primeiros discos rМgidos em seu sistema para que o lilo possa ser usado."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Pronto"
@@ -1488,16 +1316,8 @@ msgid "Continue"
msgstr "Continuar"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Que partiГУes deseja formatar? Sugerimos fortemente que formate todas as "
-"partiГУes de sistema, incluindo /, /usr e /var. NЦo И necessАrio formatar o "
-"/home ou o /usr/local se elas ja foram configuradas durante uma instalaГЦo "
-"anterior."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Que partiГУes deseja formatar? Sugerimos fortemente que formate todas as partiГУes de sistema, incluindo /, /usr e /var. NЦo И necessАrio formatar o /home ou o /usr/local se elas ja foram configuradas durante uma instalaГЦo anterior."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1518,14 +1338,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Escolha uma senha para o root. VocЙ deverА digitА-la duas vezes para "
-"garantir que vocЙ nЦo errou na digitaГЦo. Lembre-se que a senha do root И "
-"uma parte crМtica da seguranГa de seu sistema!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Escolha uma senha para o root. VocЙ deverА digitА-la duas vezes para garantir que vocЙ nЦo errou na digitaГЦo. Lembre-se que a senha do root И uma parte crМtica da seguranГa de seu sistema!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1581,17 +1395,11 @@ msgid "This user id already exists. Choose another."
msgstr ""
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
msgstr ""
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
msgstr ""
#: ../textw/userauth.py:160
@@ -1635,8 +1443,7 @@ msgstr ""
msgid "Request server via broadcast"
msgstr ""
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Mount Point InvАlido"
@@ -1705,46 +1512,26 @@ msgid "Too Many Drives"
msgstr "Muitos Discos"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"VocЙ tem mais drives do que este programa suporta. Por favor use o programa "
-"fdisk para configurar seus drives e por favor notifique a Conectiva que vocЙ "
-"viu esta mensagem."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "VocЙ tem mais drives do que este programa suporta. Por favor use o programa fdisk para configurar seus drives e por favor notifique a Conectiva que vocЙ viu esta mensagem."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Nenhum Drive Encontrado"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Um erro ocorreu - nenhum dispositivo vАlido foi encontrado para criar novos "
-"sistemas de arquivos. Por favor cheque seu hardware para encontrar a causa "
-"deste problema."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Um erro ocorreu - nenhum dispositivo vАlido foi encontrado para criar novos sistemas de arquivos. Por favor cheque seu hardware para encontrar a causa deste problema."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, fuzzy, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Um erro ocorreu durante a leitura da tabela de partiГУes do dispositivo tipo "
-"bloco %s. O erro foi:"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Um erro ocorreu durante a leitura da tabela de partiГУes do dispositivo tipo bloco %s. O erro foi:"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"A tabela de partiГУes do dispositivo %s estА danificada. Para criar novas "
-"partiГУes ela precisa ser inicializada, o que causarА a perda de TODOS OS "
-"DADOS neste disco."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "A tabela de partiГУes do dispositivo %s estА danificada. Para criar novas partiГУes ela precisa ser inicializada, o que causarА a perda de TODOS OS DADOS neste disco."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1768,10 +1555,7 @@ msgid "BSD Disklabel"
msgstr "RСtulo de Boot"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
msgstr ""
#: ../libfdisk/fsedit.c:1093
@@ -1802,10 +1586,7 @@ msgstr "Delete PartiГЦo"
msgid "Are you sure you want to delete this partition?"
msgstr "Tem certeza que quer deletar esta partiГЦo?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Editar PartiГЦo"
@@ -1848,31 +1629,21 @@ msgstr "Tipo da PartiГЦo"
msgid "Allowable Drives:"
msgstr ""
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Nenhum Mount Point"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"VocЙ nЦo selecionou um mount point para esta partiГЦo. Tem certeza que quer "
-"fazer isso?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "VocЙ nЦo selecionou um mount point para esta partiГЦo. Tem certeza que quer fazer isso?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Erro no Mount Point"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"O mount point requisitado tem um path ilegal ou jА estА em uso. Por favor "
-"selecione um mount point vАlido."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "O mount point requisitado tem um path ilegal ou jА estА em uso. Por favor selecione um mount point vАlido."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
@@ -1880,27 +1651,17 @@ msgstr "Erro de Tamanho"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
#, fuzzy
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"O tamanho requisitado И ilegal. Certifique-se que o tamanho seja maior que "
-"zero e que esteja em formato decimal (base 10.)"
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "O tamanho requisitado И ilegal. Certifique-se que o tamanho seja maior que zero e que esteja em formato decimal (base 10.)"
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Erro de Tamanho de Swap"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, fuzzy, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"VocЙ criou uma partiГЦo de swap muito grande. O tamanho mАximo para uma "
-"partiГЦo de swap И 128 Megabytes."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "VocЙ criou uma partiГЦo de swap muito grande. O tamanho mАximo para uma partiГЦo de swap И 128 Megabytes."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1909,12 +1670,9 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1108
#, fuzzy
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
-msgstr ""
-"VocЙ nЦo selecionou um mount point para esta partiГЦo. Tem certeza que quer "
-"fazer isso?"
+msgstr "VocЙ nЦo selecionou um mount point para esta partiГЦo. Tem certeza que quer fazer isso?"
#: ../libfdisk/gnomefsedit.c:1114
#, fuzzy
@@ -1922,9 +1680,7 @@ msgid "Close"
msgstr "Limpar"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
msgstr ""
#. XXXXX - for now destroy the raid entry since it
@@ -1935,28 +1691,17 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
msgstr ""
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "PartiГУes nЦo Alocadas"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Atualmente existem partiГУes nЦo alocadas na lista de partiГУes "
-"requisitadas. As partiГУes nЦo alocadas sЦo listadas abaixo, juntamente com "
-"a razЦo de nЦo terem sido alocadas."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Atualmente existem partiГУes nЦo alocadas na lista de partiГУes requisitadas. As partiГУes nЦo alocadas sЦo listadas abaixo, juntamente com a razЦo de nЦo terem sido alocadas."
#: ../libfdisk/gnomefsedit.c:1673
#, fuzzy
@@ -1979,27 +1724,19 @@ msgstr "PartiГУes para FormataГЦo"
#: ../libfdisk/gnomefsedit.c:1880
#, fuzzy
msgid "You have not selected a mount point. A mount point is required."
-msgstr ""
-"VocЙ nЦo selecionou um mount point para esta partiГЦo. Tem certeza que quer "
-"fazer isso?"
+msgstr "VocЙ nЦo selecionou um mount point para esta partiГЦo. Tem certeza que quer fazer isso?"
#: ../libfdisk/gnomefsedit.c:1888
#, fuzzy
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"O mount point requisitado tem um path ilegal ou jА estА em uso. Por favor "
-"selecione um mount point vАlido."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "O mount point requisitado tem um path ilegal ou jА estА em uso. Por favor selecione um mount point vАlido."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr ""
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1912
@@ -2017,9 +1754,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1933
@@ -2028,9 +1763,7 @@ msgid "Not Enough Partitions"
msgstr "Nenhuma PartiГЦo Root"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1942
@@ -2043,10 +1776,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
msgstr ""
#: ../libfdisk/gnomefsedit.c:2034
@@ -2117,12 +1847,8 @@ msgstr "PartiГУes nЦo Alocadas"
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
#, fuzzy
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"VocЙ deve atribuir a partiГЦo root (/) para uma partiГЦo Nativa Linux (ext2) "
-"para a instalaГЦo continuar."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "VocЙ deve atribuir a partiГЦo root (/) para uma partiГЦo Nativa Linux (ext2) para a instalaГЦo continuar."
#: ../libfdisk/gnomefsedit.c:3157
#, fuzzy
@@ -2180,12 +1906,8 @@ msgid "No Root Partition"
msgstr "Nenhuma PartiГЦo Root"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"VocЙ deve atribuir a partiГЦo root (/) para uma partiГЦo Nativa Linux (ext2) "
-"para a instalaГЦo continuar."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "VocЙ deve atribuir a partiГЦo root (/) para uma partiГЦo Nativa Linux (ext2) para a instalaГЦo continuar."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2197,13 +1919,11 @@ msgstr "VocЙ deve indicar uma partiГЦo de swap para a instalaГЦo continuar."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"Ainda existem partiГУes nЦo alocadas. Se vocЙ sair agora elas nЦo serЦo "
-"escritas no disco.\n"
+"Ainda existem partiГУes nЦo alocadas. Se vocЙ sair agora elas nЦo serЦo escritas no disco.\n"
"\n"
"Tem certeza que quer sair?"
@@ -2241,10 +1961,7 @@ msgid "Miscellaneous"
msgstr "OpГУes Extras:"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
msgstr ""
#: ../loader/devices.c:65
@@ -2252,8 +1969,7 @@ msgstr ""
msgid "Module Parameters"
msgstr "ParБmetros do MСdulo"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
#, fuzzy
msgid "Devices"
msgstr "Dispositivo"
@@ -2268,15 +1984,11 @@ msgid "Failed to mount floppy disk."
msgstr "Falha na conexЦo ao servidor de FTP"
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
msgstr ""
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
msgstr ""
#: ../loader/devices.c:211
@@ -2307,17 +2019,17 @@ msgstr "Erro durante leitura do conteudo do arquivo kickstart %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Erro na linha %d do arquivo kickstart: %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
#, fuzzy
msgid "Choose a Language"
msgstr "Escolha um grupo para examinar:"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
#, fuzzy
msgid "Keyboard Type"
msgstr "Tipo do Teclado"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
#, fuzzy
msgid "What type of keyboard do you have?"
msgstr "Que tipo de impressora vocЙ tem?"
@@ -2335,140 +2047,126 @@ msgstr ""
msgid "Hard drive"
msgstr "Discos RМgidos"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
#, fuzzy
msgid "Welcome to Red Hat Linux"
msgstr "Bem-vindo ao Red Hat Linux"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr ""
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
#, fuzzy
msgid "What kind of device would you like to add"
msgstr "Que tipo de mМdia contИm os pacotes a serem instalados?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
#, fuzzy
msgid "I have found the following devices in your system:"
msgstr "O dispositivo nЦo foi encontrado em seu sistema!"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
#, fuzzy
msgid "Add Device"
msgstr "Dispositivo"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
msgstr ""
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr ""
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
#, fuzzy
msgid "Loading second stage ramdisk..."
msgstr "Criando ramdisk inicial..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
#, fuzzy
msgid "Error loading ramdisk."
msgstr "Criando ramdisk inicial..."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Discos RМgidos"
-#: ../loader/loader.c:594
+#: ../loader/loader.c:597
#, fuzzy
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"VocЙ nЦo tem nenhum swap definido. Deseja continuar ou reparticionar seu "
-"disco?"
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "VocЙ nЦo tem nenhum swap definido. Deseja continuar ou reparticionar seu disco?"
-#: ../loader/loader.c:607
+#: ../loader/loader.c:610
#, fuzzy
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Que partiГЦo e diretСrio nesta partiГЦo contИm os diretСrios RedHat/RPMS e "
-"RedHat/base?"
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Que partiГЦo e diretСrio nesta partiГЦo contИm os diretСrios RedHat/RPMS e RedHat/base?"
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "DiretСrio contendo Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Selecione PartiГЦo"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "O dispositivo %s nЦo parece conter uma Аrvore de instalaГЦo Red Hat."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
msgstr ""
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Este diretСrio nЦo parece conter uma Аrvore de instalaГЦo Red Hat."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "NЦo foi possМvel montar este diretСrio do servidor"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr ""
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
#, fuzzy
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Criando ramdisk inicial..."
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr ""
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "MИtodo de InstalaГЦo"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr ""
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
#, fuzzy
msgid "What type of media contains the packages to be installed?"
msgstr "Que tipo de mМdia contИm os pacotes a serem instalados?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "O ks.cfg nЦo foi encontrado no disquete de boot."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr ""
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
#, fuzzy
msgid "Initializing PC Card Devices..."
msgstr "Inicializando CDROM..."
@@ -2501,13 +2199,8 @@ msgstr ""
" Linux para sua arquitetura de hardware"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Por favor digite a configuraГЦo IP para esta mАquina. Cada Мtem deverА ser "
-"digitado como um endereГo IP em notaГЦo decimal com pontos (por exemplo: "
-"1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Por favor digite a configuraГЦo IP para esta mАquina. Cada Мtem deverА ser digitado como um endereГo IP em notaГЦo decimal com pontos (por exemplo: 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2580,9 +2273,7 @@ msgid "Network device"
msgstr "ConfiguraГЦo NFS"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr ""
#: ../loader/net.c:699
@@ -2669,19 +2360,11 @@ msgid "You must enter a directory."
msgstr ""
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Se vocЙ estА usando ftp nЦo-anТnimo, digite a conta e senha que vocЙ deseja "
-"usar. Se vocЙ estА usando um proxy FTP digite o nome do proxy FTP a ser "
-"usado."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Se vocЙ estА usando ftp nЦo-anТnimo, digite a conta e senha que vocЙ deseja usar. Se vocЙ estА usando um proxy FTP digite o nome do proxy FTP a ser usado."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
msgstr ""
#: ../loader/urls.c:295
@@ -2713,21 +2396,12 @@ msgid "Loading SCSI driver"
msgstr ""
#, fuzzy
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "VocЙ deve atribuir a partiГЦo root (/) para uma partiГЦo Nativa Linux (ext2) "
-#~ "para a instalaГЦo continuar."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "VocЙ deve atribuir a partiГЦo root (/) para uma partiГЦo Nativa Linux (ext2) para a instalaГЦo continuar."
#, fuzzy
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "VocЙ deve atribuir a partiГЦo root (/) para uma partiГЦo Nativa Linux (ext2) "
-#~ "para a instalaГЦo continuar."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "VocЙ deve atribuir a partiГЦo root (/) para uma partiГЦo Nativa Linux (ext2) para a instalaГЦo continuar."
#, fuzzy
#~ msgid "Root Partition Selection"
@@ -2792,29 +2466,11 @@ msgstr ""
#~ msgid "No module exists for %s"
#~ msgstr "NЦo existe mСdulo para %s"
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "Em alguns casos o driver %s precisa de informaГУes adicionais para funcionar "
-#~ "corretamente apesar de funcionar normalmente sem elas. Deseja especificar "
-#~ "opГУes adicionais ou permitir que o driver procure em sua mАquina pelas "
-#~ "informaГУes necessАrias? Ocasionalmente a procura poderА travar sua mАquina, "
-#~ "mas isto nЦo deverА causar nenhum dano."
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "Em alguns casos o driver %s precisa de informaГУes adicionais para funcionar corretamente apesar de funcionar normalmente sem elas. Deseja especificar opГУes adicionais ou permitir que o driver procure em sua mАquina pelas informaГУes necessАrias? Ocasionalmente a procura poderА travar sua mАquina, mas isto nЦo deverА causar nenhum dano."
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "Em muitos casos o driver %s precisa de informaГУes adicionais sobre sua "
-#~ "mАquinar. Se preferir, alguns valores comuns para estes parБmetros serЦo "
-#~ "tentados. Este processo poderА travar sua mАquina, mas isto nЦo deverА "
-#~ "causar nenhum dano."
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "Em muitos casos o driver %s precisa de informaГУes adicionais sobre sua mАquinar. Se preferir, alguns valores comuns para estes parБmetros serЦo tentados. Este processo poderА travar sua mАquina, mas isto nЦo deverА causar nenhum dano."
#~ msgid "Module options:"
#~ msgstr "OpГУes do mСdulo:"
@@ -2845,9 +2501,7 @@ msgstr ""
#~ msgstr "Procura pelos arquivos da instalaГЦo"
#~ msgid "Error installing package: cannot open RPM file for %s: %s"
-#~ msgstr ""
-#~ "Erro na instalaГЦo de pacote: nЦo foi possМvel abrir o arquivo RPM para %s: "
-#~ "%s"
+#~ msgstr "Erro na instalaГЦo de pacote: nЦo foi possМvel abrir o arquivo RPM para %s: %s"
#, fuzzy
#~ msgid "Force supplemental disk"
@@ -2875,12 +2529,8 @@ msgstr ""
#~ msgstr "comando nfs incompleto"
#, fuzzy
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Falha na montagem do disquete. Insira o disco Suplementar Red Hat Linux, ou "
-#~ "escolha Cancelar para escolher outro processo de instalaГЦo."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Falha na montagem do disquete. Insira o disco Suplementar Red Hat Linux, ou escolha Cancelar para escolher outro processo de instalaГЦo."
#, fuzzy
#~ msgid "Loading PCMCIA Support"
@@ -2889,12 +2539,8 @@ msgstr ""
#~ msgid "Supplemental Disk"
#~ msgstr "Disco Suplementar"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Falha na montagem do disquete. Insira o disco Suplementar Red Hat Linux, ou "
-#~ "escolha Cancelar para escolher outro processo de instalaГЦo."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Falha na montagem do disquete. Insira o disco Suplementar Red Hat Linux, ou escolha Cancelar para escolher outro processo de instalaГЦo."
#, fuzzy
#~ msgid "Loading Supplemental Disk..."
@@ -2905,31 +2551,16 @@ msgstr ""
#~ msgstr "SumАrios dos Drives"
#, fuzzy
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "Este mИtodo de instalaГЦo requer um segundo disquete. Por favor retire o "
-#~ "disquete de boot e substitua-o pelo disco de instalaГЦo Suplementar Red Hat "
-#~ "Linux."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "Este mИtodo de instalaГЦo requer um segundo disquete. Por favor retire o disquete de boot e substitua-o pelo disco de instalaГЦo Suplementar Red Hat Linux."
#, fuzzy
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Falha na montagem do disquete. Insira o disco Suplementar Red Hat Linux, ou "
-#~ "escolha Cancelar para escolher outro processo de instalaГЦo."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Falha na montagem do disquete. Insira o disco Suplementar Red Hat Linux, ou escolha Cancelar para escolher outro processo de instalaГЦo."
#, fuzzy
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "Este mИtodo de instalaГЦo requer um segundo disquete. Por favor retire o "
-#~ "disquete de boot e substitua-o pelo disco de instalaГЦo Suplementar Red Hat "
-#~ "Linux."
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "Este mИtodo de instalaГЦo requer um segundo disquete. Por favor retire o disquete de boot e substitua-o pelo disco de instalaГЦo Suplementar Red Hat Linux."
#, fuzzy
#~ msgid "hd command"
@@ -2986,14 +2617,8 @@ msgstr ""
#~ msgid "mount failed: %s"
#~ msgstr "mount falhou: %s"
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "A tabela de partiГУes do dispositivo %s estА danificada. Para criar novas "
-#~ "partiГУes ela deve ser inicializada. VocЙ pode especificar \"zerombr yes\" "
-#~ "no arquivo kickstart para que isto seja feito automaticamente."
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "A tabela de partiГУes do dispositivo %s estА danificada. Para criar novas partiГУes ela deve ser inicializada. VocЙ pode especificar \"zerombr yes\" no arquivo kickstart para que isto seja feito automaticamente."
#~ msgid "Zero Partition Table"
#~ msgstr "Tabela de PartiГУes Zero"
@@ -3003,8 +2628,7 @@ msgstr ""
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "argumento invАlido para o comando kickstart zerombr: %s.\n"
-#~ "Deve ser 'on', '1' ou 'yes' para habilitar, ou 'off', '0' ou 'no' para "
-#~ "desabilitar."
+#~ "Deve ser 'on', '1' ou 'yes' para habilitar, ou 'off', '0' ou 'no' para desabilitar."
#~ msgid "Clear Partition Command"
#~ msgstr "Comando de Limpeza de PartiГЦo"
@@ -3021,12 +2645,8 @@ msgstr ""
#~ msgid "Option Ignored"
#~ msgstr "OpГЦo Ignorada"
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "A opГЦo --maxsize para a partiГЦo %s foi ignorada. Certifique que ela И "
-#~ "maior que a opГЦo --size."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "A opГЦo --maxsize para a partiГЦo %s foi ignorada. Certifique que ela И maior que a opГЦo --size."
#~ msgid "The mount point %s is already in use."
#~ msgstr "O mount point %s jА estА em uso."
@@ -3087,20 +2707,12 @@ msgstr ""
#~ msgid "Scanning hard drives..."
#~ msgstr "Procurando discos rМgidos..."
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "VocЙ nЦo tem nenhum disco rМgido disponМvel! Provavelmente esqueceu de "
-#~ "configurar uma controladora SCSI."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "VocЙ nЦo tem nenhum disco rМgido disponМvel! Provavelmente esqueceu de configurar uma controladora SCSI."
#, fuzzy
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "Para instalar o Red Hat Linux vocЙ deve ter pelo menos uma partiГЦo de 50MB "
-#~ "dedicada ao Linux."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "Para instalar o Red Hat Linux vocЙ deve ter pelo menos uma partiГЦo de 50MB dedicada ao Linux."
#~ msgid "Partition Disks"
#~ msgstr "Particionamento de Discos"
@@ -3115,29 +2727,16 @@ msgstr ""
#~ msgstr "Suporte PCMCIA"
#, fuzzy
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "VocЙ precisa usar dispositivos PCMCIA durante a instalaГЦo? Responda nЦo a "
-#~ "esta questЦo somente se precisar de suporte PCMCIA durante a instalaГЦo. "
-#~ "VocЙ nЦo precisa de suporte a PCMCIA durante a instalaГЦo se estА instalando "
-#~ "o Red Hat Linux em um laptop com um CDROM."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "VocЙ precisa usar dispositivos PCMCIA durante a instalaГЦo? Responda nЦo a esta questЦo somente se precisar de suporte PCMCIA durante a instalaГЦo. VocЙ nЦo precisa de suporte a PCMCIA durante a instalaГЦo se estА instalando o Red Hat Linux em um laptop com um CDROM."
#, fuzzy
#~ msgid "PCMCIA Support Disk"
#~ msgstr "Suporte PCMCIA"
#, fuzzy
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "Este mИtodo de instalaГЦo requer um segundo disquete. Por favor retire o "
-#~ "disquete de boot e substitua-o pelo disco de instalaГЦo Suplementar Red Hat "
-#~ "Linux."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "Este mИtodo de instalaГЦo requer um segundo disquete. Por favor retire o disquete de boot e substitua-o pelo disco de instalaГЦo Suplementar Red Hat Linux."
#~ msgid "Starting PCMCIA services..."
#~ msgstr "Inicializando serviГos PCMCIA..."
@@ -3219,14 +2818,8 @@ msgstr ""
#~ msgid "Upgrade log"
#~ msgstr "Log de AtualizaГЦo"
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "Um log completo de sua atualizaГЦo estarА em /tmp/upgrade.log quando a "
-#~ "atualizaГЦo terminar. ApСs a reinicializaГЦo, favor lЙ-lo para certificar "
-#~ "que os arquivos de configuraГЦo foram corretamente atualizados."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "Um log completo de sua atualizaГЦo estarА em /tmp/upgrade.log quando a atualizaГЦo terminar. ApСs a reinicializaГЦo, favor lЙ-lo para certificar que os arquivos de configuraГЦo foram corretamente atualizados."
#~ msgid "rootpw command"
#~ msgstr "comando rootpw"
@@ -3240,12 +2833,8 @@ msgstr ""
#~ msgid "Unexpected arguments"
#~ msgstr "Argumentos nЦo esperados"
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "VocЙ deseja instalar um novo sistema ou atualizar um sistema que jА contИm "
-#~ "Red Hat > = 2.0, Parolin ou Marumbi?"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "VocЙ deseja instalar um novo sistema ou atualizar um sistema que jА contИm Red Hat > = 2.0, Parolin ou Marumbi?"
#~ msgid "Converting RPM database..."
#~ msgstr "Convertendo banco de dados RPM..."
@@ -3254,24 +2843,14 @@ msgstr ""
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
-#~ msgstr ""
-#~ "VocЙ pode tentar novamente este passo, retornar para o passo anterior da "
-#~ "instalaГЦo ou ver um menu dos passos da instalaГЦo que lhe permitirА navegar "
-#~ "facilmente na instalaГЦo. NЦo И recomendado que vocЙ use este menu a menos "
-#~ "que vocЙ ja esteja familiarizado com o Red Hat Linux. Que deseja fazer?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
+#~ msgstr "VocЙ pode tentar novamente este passo, retornar para o passo anterior da instalaГЦo ou ver um menu dos passos da instalaГЦo que lhe permitirА navegar facilmente na instalaГЦo. NЦo И recomendado que vocЙ use este menu a menos que vocЙ ja esteja familiarizado com o Red Hat Linux. Que deseja fazer?"
#~ msgid " Continue with install"
#~ msgstr " Continuar com a InstalaГЦo"
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
-#~ msgstr ""
-#~ "Que passo deseja executar? Passos com um * do lado jА foram completados."
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
+#~ msgstr "Que passo deseja executar? Passos com um * do lado jА foram completados."
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
#~ msgstr "Insira um disquete vazio no primeiro drive (/dev/fd0)."
@@ -3321,12 +2900,8 @@ msgstr ""
#~ msgid "No Swap Space"
#~ msgstr "Nenhum Swap"
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "Que partiГУes deseja usar para swap? Isto destruirА quaisquer dados "
-#~ "existentes nas partiГУes escolhidas."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "Que partiГУes deseja usar para swap? Isto destruirА quaisquer dados existentes nas partiГУes escolhidas."
#~ msgid "Active Swap Space"
#~ msgstr "Ativar Swap"
@@ -3343,12 +2918,8 @@ msgstr ""
#~ msgid "Ethernet Probe"
#~ msgstr "DetecГЦo Ethernet"
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
-#~ msgstr ""
-#~ "A detecГЦo Ethernet nЦo encontrou uma placa em seu sistema. Pressione "
-#~ "<Enter> para configurar manualmente."
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
+#~ msgstr "A detecГЦo Ethernet nЦo encontrou uma placa em seu sistema. Pressione <Enter> para configurar manualmente."
#~ msgid "Static IP address"
#~ msgstr "EndereГo IP EstАtico"
@@ -3359,12 +2930,8 @@ msgstr ""
#~ msgid "kickstart network command is missing ip address"
#~ msgstr "falta o endereГo ip para o comando de rede kickstart"
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
-#~ msgstr ""
-#~ "Como deve ser obtida a configuraГЦo IP? Se o administrador de seu sistema "
-#~ "lhe forneceu um endereГo IP escolha IP EstАtico."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
+#~ msgstr "Como deve ser obtida a configuraГЦo IP? Se o administrador de seu sistema lhe forneceu um endereГo IP escolha IP EstАtico."
#~ msgid "Sending BOOTP request..."
#~ msgstr "Enviando requisiГЦo BOOTP..."
@@ -3373,29 +2940,16 @@ msgstr ""
#~ msgstr "NЦo foi possМvel criar %s: %s\n"
#~ msgid "cannot create network device config file: %s"
-#~ msgstr ""
-#~ "nЦo foi possМvel criar o arquivo de configuraГЦo do dispositivo de rede: %s"
+#~ msgstr "nЦo foi possМvel criar o arquivo de configuraГЦo do dispositivo de rede: %s"
#~ msgid "cannot open file: %s"
#~ msgstr "nЦo foi possМvel abrir o arquivo: %s"
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
-#~ msgstr ""
-#~ "NЦo foi possМvel determinar automaticamente o nome de sua mАquina. Pressione "
-#~ "<Enter> para fornecer o nome da mАquina."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
+#~ msgstr "NЦo foi possМvel determinar automaticamente o nome de sua mАquina. Pressione <Enter> para fornecer o nome da mАquina."
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
-#~ msgstr ""
-#~ "Por favor informe o nome de seu domМnio, de sua mАquina e os endereГos IP de "
-#~ "quaisquer servidores DNS adicionais. O nome de sua mАquina deve ser "
-#~ "completo, como em computador.empresa.com.br. Se vocЙ nЦo tem servidores DNS "
-#~ "adicionais deixe as entradas de servidores de nomes em branco."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
+#~ msgstr "Por favor informe o nome de seu domМnio, de sua mАquina e os endereГos IP de quaisquer servidores DNS adicionais. O nome de sua mАquina deve ser completo, como em computador.empresa.com.br. Se vocЙ nЦo tem servidores DNS adicionais deixe as entradas de servidores de nomes em branco."
#~ msgid "Host name:"
#~ msgstr "MАquina:"
@@ -3418,11 +2972,8 @@ msgstr ""
#~ msgid "LAN networking has already been configured. Do you want to:"
#~ msgstr "A configuraГЦo da rede local jА foi feita: Deseja:"
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
-#~ msgstr ""
-#~ "VocЙ quer configurar rede local (nЦo acesso discado) em seu sistema?"
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
+#~ msgstr "VocЙ quer configurar rede local (nЦo acesso discado) em seu sistema?"
#~ msgid "Cannot open components file: %s"
#~ msgstr "NЦo foi possМvel abrir o arquivo de componentes: %s"
@@ -3487,11 +3038,8 @@ msgstr ""
#~ msgid "<F1> will give you information on this printer driver."
#~ msgstr "<F1> mostrarА informaГУes sobre este driver de impressora."
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
-#~ msgstr ""
-#~ "Agora vocЙ pode configurar o tamanho do papel e a resoluГЦo para esta "
-#~ "impressora."
+#~ msgid "You may now configure the paper size and resolution for this printer."
+#~ msgstr "Agora vocЙ pode configurar o tamanho do papel e a resoluГЦo para esta impressora."
#~ msgid "Paper Size"
#~ msgstr "Tamanho do Papel"
@@ -3516,12 +3064,8 @@ msgstr ""
#~ msgid "Configure Uniprint Driver"
#~ msgstr "Configurar impressora"
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
-#~ msgstr ""
-#~ "Em que dispositivo sua impressora estА conectada (note que /dev/lp0 И "
-#~ "equivalente a LPT1:)?"
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr "Em que dispositivo sua impressora estА conectada (note que /dev/lp0 И equivalente a LPT1:)?"
#~ msgid ""
#~ "Auto-detected ports:\n"
@@ -3551,14 +3095,8 @@ msgstr ""
#~ msgid "Remote lpd Printer Options"
#~ msgstr "OpcУes para Impressoras Remotas lpd"
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "Para usar uma fila de impressora remota, vocЙ precisa fornecer o nome do "
-#~ "servidor de impressЦo e o nome da fila neste servidor para onde seus jobs "
-#~ "irЦo."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "Para usar uma fila de impressora remota, vocЙ precisa fornecer o nome do servidor de impressЦo e o nome da fila neste servidor para onde seus jobs irЦo."
#, fuzzy
#~ msgid "Printer Server:"
@@ -3573,16 +3111,8 @@ msgstr ""
#~ msgstr "OpГУes PadrЦo da Impressora"
#, fuzzy
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "Para imprimir em uma impressora Windows, vocЙ precisa do nome da mАquina "
-#~ "Windows (que nЦo И sempre o mesmo que o nome TCP/IP da mАquina) e "
-#~ "possivelmente o endereГo IP do servidor de impressЦo, bem como o nome do "
-#~ "share para a impressora que deseja acessar e o nome e senha necessАrios."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "Para imprimir em uma impressora Windows, vocЙ precisa do nome da mАquina Windows (que nЦo И sempre o mesmo que o nome TCP/IP da mАquina) e possivelmente o endereГo IP do servidor de impressЦo, bem como o nome do share para a impressora que deseja acessar e o nome e senha necessАrios."
#, fuzzy
#~ msgid "SMB server host:"
@@ -3600,17 +3130,8 @@ msgstr ""
#~ msgstr "OpГУes PadrЦo da Impressora"
#, fuzzy
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "Para imprimir em uma impressora Windows, vocЙ precisa do nome da mАquina "
-#~ "Windows (que nЦo И sempre o mesmo que o nome TCP/IP da mАquina) e "
-#~ "possivelmente o endereГo IP do servidor de impressЦo, bem como o nome do "
-#~ "share para a impressora que deseja acessar e o nome e senha necessАrios."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "Para imprimir em uma impressora Windows, vocЙ precisa do nome da mАquina Windows (que nЦo И sempre o mesmo que o nome TCP/IP da mАquina) e possivelmente o endereГo IP do servidor de impressЦo, bem como o nome do share para a impressora que deseja acessar e o nome e senha necessАrios."
#~ msgid "Spool directory:"
#~ msgstr "DiretСrio Spool:"
@@ -3618,14 +3139,8 @@ msgstr ""
#~ msgid "Standard Printer Options"
#~ msgstr "OpГУes PadrЦo da Impressora"
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Cada fila de impressЦo (para onde os jobs de impressЦo sЦo direcionados) "
-#~ "precisa de um nome (geralmente lp) e um diretСrio associado. Que nome e "
-#~ "diretСrio devem ser usados para esta fila? "
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Cada fila de impressЦo (para onde os jobs de impressЦo sЦo direcionados) precisa de um nome (geralmente lp) e um diretСrio associado. Que nome e diretСrio devem ser usados para esta fila? "
#~ msgid "Would you like to configure a printer?"
#~ msgstr "Deseja configurar uma impressora?"
@@ -3728,12 +3243,8 @@ msgstr ""
#~ "%s"
#~ msgstr "Erro na abertura: arquivo kickstart %s: %s"
-#~ msgid ""
-#~ "An error occurred reading the partition table for the block device %s. The "
-#~ "error was:"
-#~ msgstr ""
-#~ "Um erro ocorreu durante a leitura da tabela de partiГУes do dispositivo tipo "
-#~ "bloco %s. O erro foi:"
+#~ msgid "An error occurred reading the partition table for the block device %s. The error was:"
+#~ msgstr "Um erro ocorreu durante a leitura da tabela de partiГУes do dispositivo tipo bloco %s. O erro foi:"
#~ msgid "RPM install of %s failed: %s"
#~ msgstr "InstalaГЦo RPM de %s falhou: %s"
@@ -3782,7 +3293,5 @@ msgstr ""
#~ msgid "LAN Manager"
#~ msgstr "Windows"
-#~ msgid ""
-#~ "Would you like to install or configure the SILO bootloader on your system?"
-#~ msgstr ""
-#~ "Deseja instalar ou configurar o carregador de boot SILO em seu sistema?"
+#~ msgid "Would you like to install or configure the SILO bootloader on your system?"
+#~ msgstr "Deseja instalar ou configurar o carregador de boot SILO em seu sistema?"
diff --git a/po/ro.po b/po/ro.po
index b6e102a1d..c5d2e92c8 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,7 +3,7 @@
msgid ""
msgstr ""
"Project-Id-Version: sndconfig 3.0\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 199-04-10 12:00+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
@@ -11,94 +11,67 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "UrmЦtorul"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "нnapoi"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "AratЦ Detalii"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Ascunde Detalii"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "Finalizare"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "Detalii instalare"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "SelecЧie limbЦ de instalare"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Program de Instalare Red Hat Linux"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Program de Instalare Red Hat Linux"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Program de Instalare Red Hat Linux"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Program de Instalare Red Hat Linux"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
-msgstr ""
-"SНnteti pe cale de a sterge irevocabil date de pe hard disk! SНnteЧi sigur "
-"cЦ doriЧi sЦ continuaЧi?"
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
+msgstr "SНnteti pe cale de a sterge irevocabil date de pe hard disk! SНnteЧi sigur cЦ doriЧi sЦ continuaЧi?"
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
-msgstr ""
-"Ce limbЦ doriЧi sЦ folosiЧi Нn timpul rulЦrii programului de instalare?"
+msgstr "Ce limbЦ doriЧi sЦ folosiЧi Нn timpul rulЦrii programului de instalare?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "OK"
@@ -118,8 +91,7 @@ msgstr "/dev/ttyS2 (COM3 sub DOS)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 sub DOS)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "PartiЧie"
@@ -129,26 +101,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "Unde este conectat mouse-ul? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "Ok"
@@ -200,19 +153,13 @@ msgstr "Tip instalare"
msgid "What type of system would you like to install?"
msgstr "Ce tip de system doriЧi sЦ instalaЧi?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Eroare"
#: ../text.py:232
msgid "You don't have any Linux partitions. You can't upgrade this system!"
-msgstr ""
-"Acest calculator nu are nici o partiЧie Linux. Actualizarea nu este posibilЦ!"
+msgstr "Acest calculator nu are nici o partiЧie Linux. Actualizarea nu este posibilЦ!"
#: ../text.py:245
msgid "System to Upgrade"
@@ -227,34 +174,14 @@ msgid "Customize Packages to Upgrade"
msgstr "SelectaЧi pachetele pentru actualizare"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Pachetele pe care le aveЧi instalate, ╨i orice alte pachete necesare pentru "
-"satisfacerea dependinЧelor acestora au fost selectate pentru instalare. "
-"DoriЧi sЦ modificaЧi setul de pachete care vor fi actualizate?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Pachetele pe care le aveЧi instalate, ╨i orice alte pachete necesare pentru satisfacerea dependinЧelor acestora au fost selectate pentru instalare. DoriЧi sЦ modificaЧi setul de pachete care vor fi actualizate?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Da"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Nu"
@@ -266,22 +193,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"VЦ mulЧumim pentru alegerea Red Hat Linux!\n"
"\n"
-"AceastЦ procedurЦ de instalare este descrisЦ Нn detaliu Нn Official Red Hat "
-"Linux Installation Guide, care se poate procura de la Red Hat, Inc. DacЦ "
-"aveЧi acces la acest manual este recomandat sa citiЧi secЧiunea dedicatЦ "
-"procesului de instalare Нnainte de a continua.\n"
+"AceastЦ procedurЦ de instalare este descrisЦ Нn detaliu Нn Official Red Hat Linux Installation Guide, care se poate procura de la Red Hat, Inc. DacЦ aveЧi acces la acest manual este recomandat sa citiЧi secЧiunea dedicatЦ procesului de instalare Нnainte de a continua.\n"
"\n"
-"DacЦ aЧi cumpЦrat Official Red Hat Linux, vЦ rugam sa ne vizitaЧi pagina de "
-"web la http://www.redhat.com ╨i sЦ vЦ inregistraЧi ca utilizator oficial."
+"DacЦ aЧi cumpЦrat Official Red Hat Linux, vЦ rugam sa ne vizitaЧi pagina de web la http://www.redhat.com ╨i sЦ vЦ inregistraЧi ca utilizator oficial."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -320,37 +240,20 @@ msgid "Hostname Configuration"
msgstr "Configurare Nume Host"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"IntroduceЧi numele de host al acestui calculator. DacЦ acest calculator este "
-"ata╨at unei reЧele, numele de host este asignat de cЦtre administratorul de "
-"reЧea."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "IntroduceЧi numele de host al acestui calculator. DacЦ acest calculator este ata╨at unei reЧele, numele de host este asignat de cЦtre administratorul de reЧea."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Nume host"
#: ../text.py:447
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"Un disc de boot personalizat pentru sistemul dumneavoastrЦ permite "
-"НncЦrcarea Linux farЦ a depinde de bootloader. Aceasta este folositor dacЦ "
-"nu doriЧi sЦ instalaЧi lilo pe sistemul dumneavoastrЦ, sau Нn caz cЦ lilo "
-"este ╨ters mai mult sau mai puЧin accidental de cЦtre un alt sistem de "
-"operare sau eroare operator, sau dacЦ (mai rar) lilo nu funcЧioneaza corect "
-"Нn configuraЧia hardware a acestui calculator. Un disc de boot poate fi "
-"folosit de asemenea cu imaginea de rescue, Нn caz cЦ sistemul trebuie "
-"restaurat.\n"
+"Un disc de boot personalizat pentru sistemul dumneavoastrЦ permite НncЦrcarea Linux farЦ a depinde de bootloader. Aceasta este folositor dacЦ nu doriЧi sЦ instalaЧi lilo pe sistemul dumneavoastrЦ, sau Нn caz cЦ lilo este ╨ters mai mult sau mai puЧin accidental de cЦtre un alt sistem de operare sau eroare operator, sau dacЦ (mai rar) lilo nu funcЧioneaza corect Нn configuraЧia hardware a acestui calculator. Un disc de boot poate fi folosit de asemenea cu imaginea de rescue, Нn caz cЦ sistemul trebuie restaurat.\n"
"\n"
"DoriЧi sЦ creaЧi un disc de boot pentru acest sistem?"
@@ -394,13 +297,8 @@ msgid "Installation to begin"
msgstr "нnceputul instalЦrii"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Un log complet al acestei instalЦri va fi creat Нn /tmp/install.log, "
-"accesibil dupЦ reiniЧializarea sistemului. Este recomandat sЦ pЦstraЧi acest "
-"fi╨ier pentru referinЧe viitoare."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Un log complet al acestei instalЦri va fi creat Нn /tmp/install.log, accesibil dupЦ reiniЧializarea sistemului. Este recomandat sЦ pЦstraЧi acest fi╨ier pentru referinЧe viitoare."
#: ../text.py:606
msgid "Complete"
@@ -410,43 +308,27 @@ msgstr "Complet"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"FelicitЦri, instalarea s-a terminat cu succes.\n"
"\n"
-"AsiguraЧi-vЦ ca nu aveЧi nici un disc Нn unitatea de floppy ╨i tastaЧi Enter "
-"pentru a reiniЧializa sistemul. Pentru informaЧii despre corecЧii ╨i "
-"actualizЦri disponibile pentru aceastЦ versiune de Red Hat Linux, vЦ rugam "
-"sЦ consultaЧi Errata din pagina noastrЦ de web - http://www.redhat.com.\n"
+"AsiguraЧi-vЦ ca nu aveЧi nici un disc Нn unitatea de floppy ╨i tastaЧi Enter pentru a reiniЧializa sistemul. Pentru informaЧii despre corecЧii ╨i actualizЦri disponibile pentru aceastЦ versiune de Red Hat Linux, vЦ rugam sЦ consultaЧi Errata din pagina noastrЦ de web - http://www.redhat.com.\n"
"\n"
-"InformaЧii despre configurarea sistemului dumneavoastrЦ se gЦsesc Нn "
-"capitolul dedicat post-instalЦrii din Official Red Hat Linux User's Guide."
+"InformaЧii despre configurarea sistemului dumneavoastrЦ se gЦsesc Нn capitolul dedicat post-instalЦrii din Official Red Hat Linux User's Guide."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"IntroduceЧi o dischetЦ nouЦ Нn prima unitate de floppy-disk. Datele de pe "
-"aceastЦ dischetЦ vor fi ╨terse Нn timpul creЦrii discului de boot."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "IntroduceЧi o dischetЦ nouЦ Нn prima unitate de floppy-disk. Datele de pe aceastЦ dischetЦ vor fi ╨terse Нn timpul creЦrii discului de boot."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "UrmЦtoarea etapЦ"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"S-a detectat o eroare la crearea discului de boot. AsiguraЧi-vЦ cЦ in prima "
-"unitate de floppy-disk existЦ o dischetЦ formatatЦ."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "S-a detectat o eroare la crearea discului de boot. AsiguraЧi-vЦ cЦ in prima unitate de floppy-disk existЦ o dischetЦ formatatЦ."
#: ../text.py:697
msgid "Package Installation"
@@ -509,19 +391,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> Нntre elemente | <Space> selecteazЦ | <F12> urmЦtorul "
-"ecran "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> Нntre elemente | <Space> selecteazЦ | <F12> urmЦtorul ecran "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Bun venit"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "PartiЧionare"
@@ -541,8 +418,7 @@ msgstr "Swap"
msgid "Filesystem Formatting"
msgstr "Formatare filesystem"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "Configurare LILO"
@@ -606,8 +482,7 @@ msgstr "Instalare Sistem"
msgid "Installation Complete"
msgstr "Instalare terminatЦ"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
msgid "SILO Configuration"
msgstr "Configurare SILO"
@@ -635,176 +510,172 @@ msgstr "Abandonat"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "Nu se poate sЦri la o etapЦ anterioarЦ de aici. нncercaЧi din nou."
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "Eroare la scriere Нn fi╨ierul %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "Eroare la scriere Нn fi╨ierul %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Creare bootdisk..."
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Formatare filesystem"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "Se iniЧializeazЦ /dev/%s cu un sistem ext2..."
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Creare bootdisk..."
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "RЦmas"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "Detectare configuraЧie IP..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "nici o sugestie"
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "Totul"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Eroare la scriere Нn fi╨ierul %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "RЦmas"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "Determinare pachete pentru actualizare..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr "Procesare"
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Examinare fisiere pentru instalare..."
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "RЦmas"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr "Reconstruire baza de date RPM..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
-msgstr ""
-"Reconstructia bazei de date RPM a esuat. Aveti destul spatiu pe hard disc?"
+msgstr "Reconstructia bazei de date RPM a esuat. Aveti destul spatiu pe hard disc?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Instalare AplicaЧii"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-"Pe acest sistem nu exista suficient spatiu pe disc pentru a instala "
-"packetele selectate. Programul de instalare are nevoie de mai mult spatiu in "
-"urmatoarele sisteme de fisiere:\n"
+"Pe acest sistem nu exista suficient spatiu pe disc pentru a instala packetele selectate. Programul de instalare are nevoie de mai mult spatiu in urmatoarele sisteme de fisiere:\n"
"\n"
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Mount Point:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr "SpaЧiu necesar"
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "SpaЧiu pe Disc"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Instalare"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "TesteazЦ aceastЦ configuraЧie"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "PlacЦ video"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Memorie Video"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Server"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Nu s-a putut obЧine ramdisk-ul pentru etapa a doua"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Monitor"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "Plaja FrecvenЧelor Orizontale"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "Plaja FrecvenЧelor Verticale"
@@ -833,8 +704,7 @@ msgstr "Parola"
msgid "Password (confirm)"
msgstr "Parola (din nou)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Nume Complet"
@@ -842,15 +712,11 @@ msgstr "Nume Complet"
msgid "Add"
msgstr "AdЦugare"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Editare"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "╙tergere"
@@ -966,8 +832,7 @@ msgstr "GNOME Workstation"
msgid "KDE Workstation"
msgstr "KDE Workstation"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Server"
@@ -1011,7 +876,7 @@ msgstr "VariantЦ"
msgid "Test your selection here:"
msgstr "TestaЧi setЦrile alease:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Ce limbЦ trebuie folositЦ Нn timpul rulЦrii programului de instalare?"
@@ -1051,19 +916,15 @@ msgstr "Creare disc boot"
msgid "Do not install LILO"
msgstr "FЦrЦ instalare LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Implicit"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Tip partiЧie"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Eticheta"
@@ -1071,43 +932,43 @@ msgstr "Eticheta"
msgid "Emulate 3 Buttons"
msgstr "Emulare 3 butoane"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Configurare folosind DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Activare la iniЧializarea sistemului"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "AdresЦ IP"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Netmask"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Network"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Broadcast"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Gateway"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "Server DNS primar"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "Server DNS secundar"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "Server DNS terЧiar"
@@ -1192,16 +1053,8 @@ msgid "Low Memory"
msgstr "Memorie insuficientЦ"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Acest calculator nu are suficientЦ memorie pentru a permite programului de "
-"instalare sЦ continue. Pentru a obЧine memorie adiЧionalЦ este necesarЦ "
-"activarea imediatЦ a spaЧiului de swap. Pentru a face acest lucru trebuie ca "
-"tabela de partiЧii sЦ fie scrisЦ pe disk Нn acest moment. DoriЧi ca noua "
-"tabelЦ de partiЧii sЦ fie scrisЦ?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Acest calculator nu are suficientЦ memorie pentru a permite programului de instalare sЦ continue. Pentru a obЧine memorie adiЧionalЦ este necesarЦ activarea imediatЦ a spaЧiului de swap. Pentru a face acest lucru trebuie ca tabela de partiЧii sЦ fie scrisЦ pe disk Нn acest moment. DoriЧi ca noua tabelЦ de partiЧii sЦ fie scrisЦ?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1212,21 +1065,17 @@ msgstr "PartiЧionare AutomatЦ"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"DacЦ nu asta este ceea ce doriЧi, puteЧi continua aceastЦ sesiune de "
-"instalare prin selectarea partiЧionЦrii manuale, sau puteЧi sЦ selectaЧi "
-"ecranul precedent ╨i sЦ selectaЧi o instalare personalizatЦ"
+"DacЦ nu asta este ceea ce doriЧi, puteЧi continua aceastЦ sesiune de instalare prin selectarea partiЧionЦrii manuale, sau puteЧi sЦ selectaЧi ecranul precedent ╨i sЦ selectaЧi o instalare personalizatЦ"
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "╙tergere date"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "PartiЧionare manualЦ"
@@ -1282,7 +1131,7 @@ msgstr "Plaja FrecvenЧelor Verticale"
msgid "Test failed"
msgstr "Testul a e╨uat"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "Personalizare configuraЧie X Windows"
@@ -1290,64 +1139,43 @@ msgstr "Personalizare configuraЧie X Windows"
msgid "Bits per Pixel"
msgstr "BiЧi per pixel"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "TesteazЦ aceastЦ configuraЧie"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"нn cele mai multe cazuri placa video si monitorul pot fi autodetectatЦ "
-"pentru determinarea setЦrilor optime Нn folosire."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "нn cele mai multe cazuri placa video si monitorul pot fi autodetectatЦ pentru determinarea setЦrilor optime Нn folosire."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "Rezultatele autodetecЧiei:"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"Acest monitor nu a putut fi autodetectat. SelectaЧi monitorul ata╨at acestui "
-"calculator din lista de mai jos:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "Acest monitor nu a putut fi autodetectat. SelectaЧi monitorul ata╨at acestui calculator din lista de mai jos:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Porne╨te automat modul grafic"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "FЦrЦ configurare X Windows"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"нn unele cazuri este necesar ca la НncЦrcarea sistemului de operare Linux sЦ "
-"se paseze parametri kernelului pentru a avea o funcЧionare corectЦ. DacЦ "
-"doriЧi sЦ daЧi opЧiuni speciale kernelului, introduceЧi-le acum. DacЦ nu "
-"aveЧi nevoie de opЧiuni speciale sau nu sНnteЧi sigur nu introduceЧi nimic "
-"╨i mergeЧi mai departe Нn procesul de instalare."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "нn unele cazuri este necesar ca la НncЦrcarea sistemului de operare Linux sЦ se paseze parametri kernelului pentru a avea o funcЧionare corectЦ. DacЦ doriЧi sЦ daЧi opЧiuni speciale kernelului, introduceЧi-le acum. DacЦ nu aveЧi nevoie de opЧiuni speciale sau nu sНnteЧi sigur nu introduceЧi nimic ╨i mergeЧi mai departe Нn procesul de instalare."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Unde doriЧi sЦ instalaЧi managerul de НncЦrcare Linux?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "╙terge"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Abandon"
@@ -1356,25 +1184,12 @@ msgid "Edit Boot Label"
msgstr "Editare eticheta boot"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Managerul pentru НncЦrcarea Linux folosit de Red Hat Linux poate НncЦrca ╨i "
-"alte sisteme de operare. Trebuie sЦ selectaЧi ce partiЧii conЧin celelalte "
-"sisteme de operare pe care doriЧi sЦ le puteЧi selecta la pornirea "
-"sistemului ╨i sЦ alegeЧi o eticheta pentru fiecare dintre ele."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Managerul pentru НncЦrcarea Linux folosit de Red Hat Linux poate НncЦrca ╨i alte sisteme de operare. Trebuie sЦ selectaЧi ce partiЧii conЧin celelalte sisteme de operare pe care doriЧi sЦ le puteЧi selecta la pornirea sistemului ╨i sЦ alegeЧi o eticheta pentru fiecare dintre ele."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"CНteva din pachetele pe care le-aЧi selectat necesitЦ instalarea altor "
-"pachete care nu apar Нn selecЧie. DacЦ selectaЧi Ok toate aceste extra "
-"pachete vor fi instalate."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "CНteva din pachetele pe care le-aЧi selectat necesitЦ instalarea altor pachete care nu apar Нn selecЧie. DacЦ selectaЧi Ok toate aceste extra pachete vor fi instalate."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1382,33 +1197,19 @@ msgstr "Setare Disc"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid este un program pentru partiЧionare ╨i setare a modului Нn care "
-"partiЧiile sНnt accesate Нn sistemul de directoare. Este conceput nu numai "
-"pentru a fi mai u╨or de folosit decНt tradiЧionalul program fdisk standard "
-"Нn Linux, ci ╨i pentru a oferi mai multe facilitЦЧi. ExistЦ, totu╨i, unele "
-"cazuri Нn care tradiЧionalul fdisk este de preferat sЦ fie folosit.\n"
+"Disk Druid este un program pentru partiЧionare ╨i setare a modului Нn care partiЧiile sНnt accesate Нn sistemul de directoare. Este conceput nu numai pentru a fi mai u╨or de folosit decНt tradiЧionalul program fdisk standard Нn Linux, ci ╨i pentru a oferi mai multe facilitЦЧi. ExistЦ, totu╨i, unele cazuri Нn care tradiЧionalul fdisk este de preferat sЦ fie folosit.\n"
"\n"
"Ce program doriti sa folositi?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Pentru instalarea Red Hat Linux trebuie sЦ aveЧi cel puЧin o partiЧie de "
-"minim 150 MB dedicatЦ pentru Linux. VЦ sugerЦm plasarea acelei partiЧii pe "
-"unul din primele douЦ hard discuri din sistemul dumneavoastrЦ pentru a putea "
-"folosi LILO pentru lansarea sistemului Linux."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Pentru instalarea Red Hat Linux trebuie sЦ aveЧi cel puЧin o partiЧie de minim 150 MB dedicatЦ pentru Linux. VЦ sugerЦm plasarea acelei partiЧii pe unul din primele douЦ hard discuri din sistemul dumneavoastrЦ pentru a putea folosi LILO pentru lansarea sistemului Linux."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Gata"
@@ -1417,16 +1218,8 @@ msgid "Continue"
msgstr "Continuare"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Ce partiЧii doriЧi sa formataЧi ? VЦ sugeram sЦ formataЧi toate partiЧiile "
-"sistem definite, inclusiv cele alocate pentru directoarele /, /usr, /var. "
-"Formatarea partiЧiilor pentru /home sau /usr/local nu este necesarЦ dacЦ "
-"aceste partiЧii au fost deja configurate la o instalare anterioarЦ."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Ce partiЧii doriЧi sa formataЧi ? VЦ sugeram sЦ formataЧi toate partiЧiile sistem definite, inclusiv cele alocate pentru directoarele /, /usr, /var. Formatarea partiЧiilor pentru /home sau /usr/local nu este necesarЦ dacЦ aceste partiЧii au fost deja configurate la o instalare anterioarЦ."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1447,15 +1240,8 @@ msgid "Set default PROM boot device"
msgstr "SeteazЦ imaginea implicitЦ de boot Нn PROM pentru Linux"
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"AlegeЧi o parolЦ de root. AceastЦ parolЦ trebuie tiparitЦ mai jos de douЦ "
-"ori pentru a fi siguri ca aЧi tipЦrit-o corect ╨i pentru a evita eventualele "
-"erori de tastare. Este important sЦ vЦ amintiЧi cЦ parola de root este o "
-"parte criticЦ a securitЦЧii sistemului dumneavoastrЦ!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "AlegeЧi o parolЦ de root. AceastЦ parolЦ trebuie tiparitЦ mai jos de douЦ ori pentru a fi siguri ca aЧi tipЦrit-o corect ╨i pentru a evita eventualele erori de tastare. Este important sЦ vЦ amintiЧi cЦ parola de root este o parte criticЦ a securitЦЧii sistemului dumneavoastrЦ!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1479,9 +1265,7 @@ msgstr "Parolele sНnt diferite"
#: ../textw/userauth.py:46 ../textw/userauth.py:100
msgid "The passwords you entered were different. Please try again."
-msgstr ""
-"Parolele pe care le-aЧi introdus sНnt diferite (probabil dintr-o eroare de "
-"tastare). нncercaЧi din nou."
+msgstr "Parolele pe care le-aЧi introdus sНnt diferite (probabil dintr-o eroare de tastare). нncercaЧi din nou."
#: ../textw/userauth.py:71
msgid "Edit User"
@@ -1505,30 +1289,15 @@ msgstr "Utilizator Existemt"
#: ../textw/userauth.py:110
msgid "This user id already exists. Choose another."
-msgstr ""
-"Acest calculator conЧine utlizatorul selectat. SelectaЧi un cont diferit."
+msgstr "Acest calculator conЧine utlizatorul selectat. SelectaЧi un cont diferit."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"Este recomandat sЦ folosiЧi un cont normal de utilizator pentru majoritatea "
-"aplicaЧiilor pe care le veЧi rula pe acest calculator. Prin folosirea "
-"contului de root numai Нn cazul cНnd este absolut necesar reduceЧi riscurile "
-"de modificare nea╨teptatЦ a configuraЧiei sistemului."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "Este recomandat sЦ folosiЧi un cont normal de utilizator pentru majoritatea aplicaЧiilor pe care le veЧi rula pe acest calculator. Prin folosirea contului de root numai Нn cazul cНnd este absolut necesar reduceЧi riscurile de modificare nea╨teptatЦ a configuraЧiei sistemului."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"Ce cont de utilizator doriЧi sЦ folosiЧi pe acest calculator? Trebuie sЦ "
-"configuraЧi cel puЧin un utilizator diferit de root pentru activitЦЧile "
-"normale. BineНnЧeles cЦ puteЧi configura mai mult de un singur cont Нn acest "
-"moment dacЦ doriЧi."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "Ce cont de utilizator doriЧi sЦ folosiЧi pe acest calculator? Trebuie sЦ configuraЧi cel puЧin un utilizator diferit de root pentru activitЦЧile normale. BineНnЧeles cЦ puteЧi configura mai mult de un singur cont Нn acest moment dacЦ doriЧi."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1566,8 +1335,7 @@ msgstr "sau folosiЧi:"
msgid "Request server via broadcast"
msgstr "Detectare server prin broadcast"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Director montare invalid"
@@ -1618,8 +1386,7 @@ msgid ""
msgstr ""
"Directorul %s de montare a partiЧiei este invalid.\n"
"\n"
-"PartiЧiile de sistem trebuie sa fie montate Нn directoare pe partiЧii de tip "
-"Linux Native."
+"PartiЧiile de sistem trebuie sa fie montate Нn directoare pe partiЧii de tip Linux Native."
#: ../libfdisk/fsedit.c:661
#, c-format
@@ -1630,53 +1397,33 @@ msgid ""
msgstr ""
"Directorul %s de montare a partiЧiei este invalid.\n"
"\n"
-"Directorul /usr trebuie sa fie pe o partiЧie de tip Linux Native sau montat "
-"prin NFS."
+"Directorul /usr trebuie sa fie pe o partiЧie de tip Linux Native sau montat prin NFS."
#: ../libfdisk/fsedit.c:689
msgid "Too Many Drives"
msgstr "Prea multe discuri"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"AveЧi instalate mai multe discuri decНt acest program poate controla. VЦ "
-"rugЦm sЦ folositi programul fdisk standard pentru a partiЧiona discurile "
-"dumneavoastrЦ ╨i notificaЧi Red Hat Software cЦ aЧi vЦzut acest mesaj."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "AveЧi instalate mai multe discuri decНt acest program poate controla. VЦ rugЦm sЦ folositi programul fdisk standard pentru a partiЧiona discurile dumneavoastrЦ ╨i notificaЧi Red Hat Software cЦ aЧi vЦzut acest mesaj."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Nu s-a identificat nici un disc"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Eroare - nu s-au putut identifica nici un hard disc pentru crearea de "
-"partitii ╨i sisteme de fi╨iere care sЦ conЧinЦ Red Hat Linux. VerificaЧi "
-"hardware-ul pentru posibile cauze ale acestei probleme."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Eroare - nu s-au putut identifica nici un hard disc pentru crearea de partitii ╨i sisteme de fi╨iere care sЦ conЧinЦ Red Hat Linux. VerificaЧi hardware-ul pentru posibile cauze ale acestei probleme."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Eroare la citirea tabelei de partiЧii de pe discul %s. Mesajul de eroare este"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Eroare la citirea tabelei de partiЧii de pe discul %s. Mesajul de eroare este"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Tabela de partiЧii pe discul %s este invalidЦ. Pentru a crea noi partiЧii "
-"aceasta trebuie initializatЦ, ceea ce va conduce la pierderea TUTUROR "
-"informaЧiilor de pe acest disc."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Tabela de partiЧii pe discul %s este invalidЦ. Pentru a crea noi partiЧii aceasta trebuie initializatЦ, ceea ce va conduce la pierderea TUTUROR informaЧiilor de pe acest disc."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1699,15 +1446,8 @@ msgid "BSD Disklabel"
msgstr "BSD Disklabel"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"S-a gЦsit un disc avНnd identificatorul de volum BSD. Red Hat Linux suportЦ "
-"BSD disklabel numai Нn mod read-only, de aceea va trebui sЦ folosiЧi modul "
-"de instalare Custom ╨i utilitarul fdisk (Нn loc de Disk Druid) pentru "
-"calculatoarele care au BSD disklabel instalat."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "S-a gЦsit un disc avНnd identificatorul de volum BSD. Red Hat Linux suportЦ BSD disklabel numai Нn mod read-only, de aceea va trebui sЦ folosiЧi modul de instalare Custom ╨i utilitarul fdisk (Нn loc de Disk Druid) pentru calculatoarele care au BSD disklabel instalat."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1734,10 +1474,7 @@ msgstr "╙tergere partiЧie"
msgid "Are you sure you want to delete this partition?"
msgstr "SНnteЧi sigur cЦ doriЧi sЦ ╨tergeЧi aceastЦ partiЧie?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Editare partiЧie"
@@ -1777,58 +1514,38 @@ msgstr "Tip PartiЧie:"
msgid "Allowable Drives:"
msgstr "Discuri Permise:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Director de montare nespecificat"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Nu aЧi selectat un director de montare pentru aceastЦ partiЧie. SНnteЧi "
-"sigur cЦ aceasta este ceea ce doriЧi?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Nu aЧi selectat un director de montare pentru aceastЦ partiЧie. SНnteЧi sigur cЦ aceasta este ceea ce doriЧi?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Eroare - Director de montare"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Directorul de montare specificat este o cale ilegalЦ sau este deja utilizat. "
-"SelectaЧi un director de activare valid."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Directorul de montare specificat este o cale ilegalЦ sau este deja utilizat. SelectaЧi un director de activare valid."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "Eroare mЦrime"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"MЦrimea cerutЦ este invalidЦ. MЦrimea trebuie sa fie mai mare decНt zero (0) "
-"╨i este un numЦr natural specificat Нn baza 10."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "MЦrimea cerutЦ este invalidЦ. MЦrimea trebuie sa fie mai mare decНt zero (0) ╨i este un numЦr natural specificat Нn baza 10."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Eroare mЦrime swap"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"MЦrimea cerutЦ pentru swap este prea mare. Dimensiunea maximЦ a unei "
-"partiЧii de swap este de %ld MB."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "MЦrimea cerutЦ pentru swap este prea mare. Dimensiunea maximЦ a unei partiЧii de swap este de %ld MB."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1836,8 +1553,7 @@ msgstr "LimitЦri Disc RAID Inexistente"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
"AЧi configurat o partiЧie RAID fЦrЦ a o limita la un singur hard disc.\n"
@@ -1848,12 +1564,8 @@ msgid "Close"
msgstr "нnchide"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"AЧi configurat o partiЧie de RAID fЦrЦ a impune limitЦri la un singur disc. "
-"SelectaЧi un disc pentru a folosi ca limitЦ a sistemului RAID."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "AЧi configurat o partiЧie de RAID fЦrЦ a impune limitЦri la un singur disc. SelectaЧi un disc pentru a folosi ca limitЦ a sistemului RAID."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1863,31 +1575,17 @@ msgstr "Configurare RAID incompletЦ"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"PartiЧia RAID /dev/%s conЧine partiЧii care nu sНnt alocate. PartiЧia RAID "
-"/dev/%s va fi decompusЦ Нn partiЧiile care o compun. RecompuneЧi partiЧia "
-"RAID folosind numai partiЧii care au fost alocate."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "PartiЧia RAID /dev/%s conЧine partiЧii care nu sНnt alocate. PartiЧia RAID /dev/%s va fi decompusЦ Нn partiЧiile care o compun. RecompuneЧi partiЧia RAID folosind numai partiЧii care au fost alocate."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "PartiЧii nealocate"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"нn acest moment existЦ partiЧii nealocate prezente Нn lista de partiЧii "
-"selectate pentru instalare. PartiЧiile nealocate sНnt afi╨ate mai jos, "
-"НmpreunЦ cu motivul pentru care nu au fost alocate."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "нn acest moment existЦ partiЧii nealocate prezente Нn lista de partiЧii selectate pentru instalare. PartiЧiile nealocate sНnt afi╨ate mai jos, НmpreunЦ cu motivul pentru care nu au fost alocate."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1907,29 +1605,19 @@ msgstr "PartiЧii pentru systemul RAID:"
#: ../libfdisk/gnomefsedit.c:1880
msgid "You have not selected a mount point. A mount point is required."
-msgstr ""
-"Nu aЧi selectat un director de montare pentru aceastЦ partiЧie. Este necesar "
-"sЦ selectaЧi un director de montare."
+msgstr "Nu aЧi selectat un director de montare pentru aceastЦ partiЧie. Este necesar sЦ selectaЧi un director de montare."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Directorul de montare specificat este deja utilizat. SelectaЧi un director "
-"de montare valid."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Directorul de montare specificat este deja utilizat. SelectaЧi un director de montare valid."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "Avertisment pentru startarea de pe o partiЧie RAID"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"AЧi selectat aceastЦ partiЧie de RAID ca partiЧia de boot. AsiguraЧi-vЦ ca "
-"toate partiЧiile de disc constituente sНnt la rindul lor bootabile."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "AЧi selectat aceastЦ partiЧie de RAID ca partiЧia de boot. AsiguraЧi-vЦ ca toate partiЧiile de disc constituente sНnt la rindul lor bootabile."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1945,24 +1633,16 @@ msgstr "PartiЧie de RAID folositЦ"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"PartiЧia RAID \"/dev/%s\" este configuratЦ deja pentru un sistem RAID. "
-"SelectaЧi o altЦ partiЧie."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "PartiЧia RAID \"/dev/%s\" este configuratЦ deja pentru un sistem RAID. SelectaЧi o altЦ partiЧie."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Nu existЦ suficiente partiЧii"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
-msgstr ""
-"Nu aЧi configurat suficiente partiЧii pentru tipul de sistem RAID pe care "
-"l-aЧi selectat."
+msgid "You have not configured enough partitions for the RAID type you have selected."
+msgstr "Nu aЧi configurat suficiente partiЧii pentru tipul de sistem RAID pe care l-aЧi selectat."
#: ../libfdisk/gnomefsedit.c:1942
msgid "Illegal /boot RAID Type"
@@ -1974,14 +1654,8 @@ msgstr "PartiЧiile de boot (/boot) sНnt permise numai pe sisteme RAID-1"
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"PartiЧia %s din acest RAID sistem este o partiЧie configuratЦ Нnainte de "
-"instalare. Directorul de montare este setat pentru /boot. SНnteЧi sigur cЦ "
-"este posibil sЦ se iniЧializeze sistemul de pe aceastЦ partiЧie?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "PartiЧia %s din acest RAID sistem este o partiЧie configuratЦ Нnainte de instalare. Directorul de montare este setat pentru /boot. SНnteЧi sigur cЦ este posibil sЦ se iniЧializeze sistemul de pe aceastЦ partiЧie?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2045,12 +1719,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "ExistЦ PartiЧii Nealocate..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"O partiЧie de tip Linux Native (ext2) sau RAID trebuie asignatЦ partiЧiei de "
-"root (/) Нnainte ca procesul de instalare sЦ continue."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "O partiЧie de tip Linux Native (ext2) sau RAID trebuie asignatЦ partiЧiei de root (/) Нnainte ca procesul de instalare sЦ continue."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2101,12 +1771,8 @@ msgid "No Root Partition"
msgstr "PartiЧia root nedefinita"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"O partiЧie de tip Linux Native (ext2) trebuie asignatЦ partiЧiei de root (/) "
-"Нnainte ca procesul de instalare sЦ continue."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "O partiЧie de tip Linux Native (ext2) trebuie asignatЦ partiЧiei de root (/) Нnainte ca procesul de instalare sЦ continue."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2114,19 +1780,15 @@ msgstr "Nu s-a definit nici o partiЧie de swap"
#: ../libfdisk/newtfsedit.c:1446
msgid "You must assign a swap partition for the install to proceed."
-msgstr ""
-"Trebuie sЦ selectaЧi o partiЧie de swap Нnainte ca procesul de instalare sЦ "
-"poatЦ continua."
+msgstr "Trebuie sЦ selectaЧi o partiЧie de swap Нnainte ca procesul de instalare sЦ poatЦ continua."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"ExistЦ partiЧii nealocate pe disc. DacЦ iesiЧi acum acestea nu vor fi scrise "
-"pe disc.\n"
+"ExistЦ partiЧii nealocate pe disc. DacЦ iesiЧi acum acestea nu vor fi scrise pe disc.\n"
"\n"
"SНnteti sigur cЦ doriЧi sЦ ie╨iЧi din program?"
@@ -2163,21 +1825,14 @@ msgid "Miscellaneous"
msgstr "Alte OpЧiuni"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Acest driver poate avea parametri care afecteazЦ funcЧionalitatea sa. DacЦ "
-"nu ╨tiЧi ce parametri trebuie specificaЧi pentru acest driver, selectaЧi "
-"\"OK\" ╨i treceЧi la urmЦtorul ecran."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Acest driver poate avea parametri care afecteazЦ funcЧionalitatea sa. DacЦ nu ╨tiЧi ce parametri trebuie specificaЧi pentru acest driver, selectaЧi \"OK\" ╨i treceЧi la urmЦtorul ecran."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "Parametri Driver"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "Devices"
@@ -2190,21 +1845,12 @@ msgid "Failed to mount floppy disk."
msgstr "Discheta nu are un sistem de fi╨iere suportat"
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"Discheta introdusЦ nu este o dischetЦ de drivere validЦ pentru aceastЦ "
-"versiune de Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "Discheta introdusЦ nu este o dischetЦ de drivere validЦ pentru aceastЦ versiune de Red Hat Linux."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Ce driver trebuie Нncercat? DacЦ driverul dorit nu se regЦse╨te Нn lista de "
-"mai jos ╨i aveЧi o dischetЦ de drivere separatЦ, selectaЧi F2 pentru a "
-"continua"
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Ce driver trebuie Нncercat? DacЦ driverul dorit nu se regЦse╨te Нn lista de mai jos ╨i aveЧi o dischetЦ de drivere separatЦ, selectaЧi F2 pentru a continua"
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2233,15 +1879,15 @@ msgstr "Eroare la citirea conЧinutului fi╨ierului kickstart %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Eroare la linia %d a fi╨ierului kickstart %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "LimbЦ program instalare"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Tip TastaturЦ"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Ce model de tastaturЦ este conectatЦ la acest calculator?"
@@ -2257,139 +1903,116 @@ msgstr "Director NFS"
msgid "Hard drive"
msgstr "Hard Disc"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Bun venit Нn Red Hat Linux!"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> Нntre elemente | <Space> selecteazЦ | <F12> urmЦtorul "
-"ecran "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> Нntre elemente | <Space> selecteazЦ | <F12> urmЦtorul ecran "
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Ce tip de periferic doriЧi sЦ adЦugaЧi?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "Am gЦsit urmЦtoarele extensii Нn acest calculator:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "AdaugЦ Periferic"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"Nu s-a НncЦrcat nici un driver specific penbtru periferice acestui sistem. "
-"нn caz cЦ acest lucru este necesar, doriЧi sЦ НncЦrcaЧi aceste drivere Нn "
-"acest moment?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "Nu s-a НncЦrcat nici un driver specific penbtru periferice acestui sistem. нn caz cЦ acest lucru este necesar, doriЧi sЦ НncЦrcaЧi aceste drivere Нn acest moment?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "нncЦrcare"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "нncЦrcare ramdisk pentru etapa a doua..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Eroare la НncЦrcarea ramdisk-ului"
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Hard Discuri"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"Nu am putut detecta nici un hard disk Нn acest calculator! DoriЧi sЦ "
-"configuraЧi alte periferice?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "Nu am putut detecta nici un hard disk Нn acest calculator! DoriЧi sЦ configuraЧi alte periferice?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Ce partiЧie si ce director din acea partiЧie conЧin directoarele RedHat/RPMS "
-"╨i RedHat/base? DacЦ hard diskul dorit nu se regЦse╨te Нn lista de mai jos, "
-"apЦsaЧi F2 pentru a configura periferice adiЧionale."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Ce partiЧie si ce director din acea partiЧie conЧin directoarele RedHat/RPMS ╨i RedHat/base? DacЦ hard diskul dorit nu se regЦse╨te Нn lista de mai jos, apЦsaЧi F2 pentru a configura periferice adiЧionale."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Directorul conЧinНnd Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "SelectaЧi o Partitie"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "PartiЧia %s nu conЧine o versiune de instalare a Red Hat Linux."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"Nu s-a putut detecta un CD cu Red Hat Linux Нn nici una dintre unitЦЧile de "
-"CD din acest sistem. нncЦrcaЧi CD-ul cu Red Hat Linux Нn unitatea CDROM ╨i "
-"selectaЧi \"OK\" pentru a reНncerca."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "Nu s-a putut detecta un CD cu Red Hat Linux Нn nici una dintre unitЦЧile de CD din acest sistem. нncЦrcaЧi CD-ul cu Red Hat Linux Нn unitatea CDROM ╨i selectaЧi \"OK\" pentru a reНncerca."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Directorul specificat nu conЧine distribuЧia Red Hat Linux"
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Nu s-a putut citi directorul specificat de pe server"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Nu s-a putut obЧine ramdisk-ul pentru etapa a doua"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "MetodЦ de Salvare"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "MetodЦ de Instalare"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Unde se gЦse╨te imaginea de restaurare?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Unde sНnt aflate aplicaЧiile pentru instalare?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Fi╨ierul ks.cfg nu existЦ pe discheta de boot."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC Card"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "Se iniЧializeazЦ perifericele de tip PC Card..."
@@ -2419,13 +2042,8 @@ msgstr ""
" pachetele Red Hat Linux pentru acest sistem"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"IntroduceЧi configuraЧia IP oentru acest calculator. Fiecare valoare trebuie "
-"introdusЦ ca o adresЦ de IP Нn notaЧie decimalЦ cu punct (de exemplu, "
-"1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "IntroduceЧi configuraЧia IP oentru acest calculator. Fiecare valoare trebuie introdusЦ ca o adresЦ de IP Нn notaЧie decimalЦ cu punct (de exemplu, 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2489,12 +2107,8 @@ msgid "Network device"
msgstr "PlacЦ de reЧea"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> Нntre elemente | <Space> selecteazЦ | <F12> urmЦtorul "
-"ecran "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> Нntre elemente | <Space> selecteazЦ | <F12> urmЦtorul ecran "
#: ../loader/net.c:699
#, c-format
@@ -2576,22 +2190,12 @@ msgid "You must enter a directory."
msgstr "Trebuie introdus un director."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"DacЦ folosiЧi non-anonymous ftp, introduceЧi mai jos contul si parola pe "
-"care doriЧi sЦ le folosiЧi. DacЦ folosiЧi un proxy server pentru FTP "
-"introduceЧi numele sau adresa de IP a serverului proxy pe care doriЧi sЦ-l "
-"folosiЧi."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "DacЦ folosiЧi non-anonymous ftp, introduceЧi mai jos contul si parola pe care doriЧi sЦ le folosiЧi. DacЦ folosiЧi un proxy server pentru FTP introduceЧi numele sau adresa de IP a serverului proxy pe care doriЧi sЦ-l folosiЧi."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"Daca folositi un proxy server pentru HTTP introduceti numele serverului."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "Daca folositi un proxy server pentru HTTP introduceti numele serverului."
#: ../loader/urls.c:295
msgid "Account name:"
@@ -2617,34 +2221,17 @@ msgstr "HTTP Proxy Port:"
msgid "Loading SCSI driver"
msgstr "нncЦrcare Driver SCSI..."
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "S-a gЦsit un disc avНnd un identificator de volum (disklabel) corupt citind "
-#~ "device-ul %s. Trebuie sЦ folosiЧi fdisk pentru a crea un nou identificator "
-#~ "de volum pentru acest disc."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "S-a gЦsit un disc avНnd un identificator de volum (disklabel) corupt citind device-ul %s. Trebuie sЦ folosiЧi fdisk pentru a crea un nou identificator de volum pentru acest disc."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Identificator de volum Sun corupt"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "O partiЧie de tip Linux Native (ext2) sau RAID-1 trebuie asignatЦ partiЧiei "
-#~ "de boot (/boot) Нnainte ca procesul de instalare sЦ continue."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "O partiЧie de tip Linux Native (ext2) sau RAID-1 trebuie asignatЦ partiЧiei de boot (/boot) Нnainte ca procesul de instalare sЦ continue."
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "нntrucНt aЧi asignat partiЧia de root (/) unui sistem RAID, trebuie sЦ "
-#~ "asignaЧi o directorul de boot (/boot) unei partiЧii de tip Linux native "
-#~ "(ext2) sau unui alt sistem de tip RAID-1 Inainte ca procesul de instalare sЦ "
-#~ "poatЦ continua."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "нntrucНt aЧi asignat partiЧia de root (/) unui sistem RAID, trebuie sЦ asignaЧi o directorul de boot (/boot) unei partiЧii de tip Linux native (ext2) sau unui alt sistem de tip RAID-1 Inainte ca procesul de instalare sЦ poatЦ continua."
#~ msgid "Use fdisk to format drives"
#~ msgstr "Folose╨te fdisk pentru partiЧionare discuri"
@@ -2715,29 +2302,11 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "I can't find the device anywhere on your system!"
#~ msgstr "Nu se poate identifica adaptorul Нn acest calculator!"
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "нn unele cazuri, driverul %s are nevoie de informaЧii Нn plus pentru a "
-#~ "funcЧiona corect, de╨i Нn majoritatea cazurilor nu este nevoie de extra "
-#~ "parametri. DoriЧi sЦ specificaЧi opЧiuni cЦtre driver sau sЦ lЦsaЧi driverul "
-#~ "sЦ detecteze informaЧia de care are nevoie ? нn unele cazuri, detecЧia poate "
-#~ "bloca un calculator, dar nu poate cauza nici un fel de pierderi de date."
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "нn unele cazuri, driverul %s are nevoie de informaЧii Нn plus pentru a funcЧiona corect, de╨i Нn majoritatea cazurilor nu este nevoie de extra parametri. DoriЧi sЦ specificaЧi opЧiuni cЦtre driver sau sЦ lЦsaЧi driverul sЦ detecteze informaЧia de care are nevoie ? нn unele cazuri, detecЧia poate bloca un calculator, dar nu poate cauza nici un fel de pierderi de date."
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "нn unele cazuri, driverul %s are nevoie de extra informaЧii despre "
-#~ "configuraЧia hardware a acestui sistem. DacЦ doriЧi, citeva valori comune "
-#~ "pentru acei parametri vor fi Нncercate. Acest proces poate bloca "
-#~ "calculatorul, ╨i nu poate cauza pierderi de date."
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "нn unele cazuri, driverul %s are nevoie de extra informaЧii despre configuraЧia hardware a acestui sistem. DacЦ doriЧi, citeva valori comune pentru acei parametri vor fi Нncercate. Acest proces poate bloca calculatorul, ╨i nu poate cauza pierderi de date."
#~ msgid "Module options:"
#~ msgstr "OpЧiuni pentru Modul:"
@@ -2770,8 +2339,7 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgstr "╙tergere fi╨iere vechi..."
#~ msgid "Error installing package: cannot open RPM file for %s: %s"
-#~ msgstr ""
-#~ "Eroare la instalarea pachetului: fi╨ierul RPM pentru %s nu existЦ: %s"
+#~ msgstr "Eroare la instalarea pachetului: fi╨ierul RPM pentru %s nu existЦ: %s"
#~ msgid "Force supplemental disk"
#~ msgstr "Force supplemental disk"
@@ -2800,13 +2368,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "PCMCIA Disk"
#~ msgstr "PCMCIA Disk"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Discul nu a putut fi citit. IntroduceЧi discul pentru Red Hat PCMCIA "
-#~ "install, sau selectaЧi Abandon pentru a selecta o metodЦ de instalare "
-#~ "diferitЦ."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Discul nu a putut fi citit. IntroduceЧi discul pentru Red Hat PCMCIA install, sau selectaЧi Abandon pentru a selecta o metodЦ de instalare diferitЦ."
#~ msgid "Loading PCMCIA Support"
#~ msgstr "Se НncarcЦ suportul pentru PCMCIA..."
@@ -2814,13 +2377,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "Supplemental Disk"
#~ msgstr "Supplemental Disk"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Discul nu a putut fi citit. IntroduceЧi discul denumit Red Hat Supplementary "
-#~ "Install, sau selectaЧi Abandon pentru a selecta o metodЦ de instalare "
-#~ "diferitЦ."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Discul nu a putut fi citit. IntroduceЧi discul denumit Red Hat Supplementary Install, sau selectaЧi Abandon pentru a selecta o metodЦ de instalare diferitЦ."
#~ msgid "Loading Supplemental Disk..."
#~ msgstr "нncЦrcare Supplemental Disk..."
@@ -2828,29 +2386,14 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "Driver Disk"
#~ msgstr "Driver Disk"
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "AceastЦ metodЦ de instalare necesitЦ un Driver Disk. SchimbaЧi Supplemental "
-#~ "Disk aflat Нn acest moment Нn unitatea de floppy cu discul denumit Red Hat "
-#~ "Modules Disk."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "AceastЦ metodЦ de instalare necesitЦ un Driver Disk. SchimbaЧi Supplemental Disk aflat Нn acest moment Нn unitatea de floppy cu discul denumit Red Hat Modules Disk."
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Discul nu a putut fi citit. IntroduceЧi discul denumit Red Hat Modules Disk, "
-#~ "sau selectaЧi Abandon pentru a selecta o metodЦ de instalare diferitЦ."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Discul nu a putut fi citit. IntroduceЧi discul denumit Red Hat Modules Disk, sau selectaЧi Abandon pentru a selecta o metodЦ de instalare diferitЦ."
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "AceastЦ metodЦ de instalare necesitЦ douЦ floppy-discuri adiЧionale. "
-#~ "SchimbaЧi discul de boot aflat Нn acest moment Нn unitatea de floppy cu "
-#~ "discul denumit Red Hat Supplementary Install."
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "AceastЦ metodЦ de instalare necesitЦ douЦ floppy-discuri adiЧionale. SchimbaЧi discul de boot aflat Нn acest moment Нn unitatea de floppy cu discul denumit Red Hat Supplementary Install."
#~ msgid "hd command"
#~ msgstr "hd command"
@@ -2889,8 +2432,7 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgstr "PartiЧiile sistemului trebuie sЦ fie de tip Linux Native."
#~ msgid "/usr must be on a Linux Native partition or an NFS volume."
-#~ msgstr ""
-#~ "Directorul /usr trebuie sЦ fie pe o partiЧie Linux Native sau un director NFS"
+#~ msgstr "Directorul /usr trebuie sЦ fie pe o partiЧie Linux Native sau un director NFS"
#~ msgid "Edit Network Mount Point"
#~ msgstr "Editare director de montare Нn reЧea"
@@ -2904,15 +2446,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "mount failed: %s"
#~ msgstr "eroare montare: %s"
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "Tabela de partiЧii de pe discul %s este invalidЦ. Pentru a crea noi partiЧii "
-#~ "aceasta trebuie initializata. PuteЧi specifica \"zerombr yes\" Нn fi╨ierul "
-#~ "de configurare kickstart pentru iniЧializarea automatЦ de catre programul de "
-#~ "instalare."
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "Tabela de partiЧii de pe discul %s este invalidЦ. Pentru a crea noi partiЧii aceasta trebuie initializata. PuteЧi specifica \"zerombr yes\" Нn fi╨ierul de configurare kickstart pentru iniЧializarea automatЦ de catre programul de instalare."
#~ msgid "Zero Partition Table"
#~ msgstr "Initializare Tabela de partiЧii"
@@ -2922,15 +2457,13 @@ msgstr "нncЦrcare Driver SCSI..."
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "parametru invalid pentru comanda zerombr Нn mod kickstart: %s.\n"
-#~ "Parametrul valid este 'on', '1', sau 'yes' pentru activare, 'off', '0', sau "
-#~ "'no' pentru dezactivare."
+#~ "Parametrul valid este 'on', '1', sau 'yes' pentru activare, 'off', '0', sau 'no' pentru dezactivare."
#~ msgid "Clear Partition Command"
#~ msgstr "Comanda IniЧializare partitie"
#~ msgid "bad argument to kickstart clearpart command %s: %s"
-#~ msgstr ""
-#~ "parametru %s este invalid pentru comanda clearpart Нn mod kickstart: %s"
+#~ msgstr "parametru %s este invalid pentru comanda clearpart Нn mod kickstart: %s"
#~ msgid "Partition Command"
#~ msgstr "Comanda de PartiЧionare"
@@ -2941,12 +2474,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "Option Ignored"
#~ msgstr "OpЧiune IgnoratЦ"
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "OpЧiunea --maxsize pentru partiЧia %s a fost ignoratЦ. VerificaЧi dacЦ este "
-#~ "mai mare decНt valoarea specificatЦ la optiunea --size."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "OpЧiunea --maxsize pentru partiЧia %s a fost ignoratЦ. VerificaЧi dacЦ este mai mare decНt valoarea specificatЦ la optiunea --size."
#~ msgid "The mount point %s is already in use."
#~ msgstr "Directorul de montare %s este folosit deja."
@@ -2978,13 +2507,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "The partition %s could not be allocated."
#~ msgstr "PartiЧia %s nu a putut fi alocatЦ."
-#~ msgid ""
-#~ "There are partitions that can be resized nondestructively to make room for "
-#~ "your Red Hat Linux installation. Do you want to resize these partitions now?"
-#~ msgstr ""
-#~ "Pe acest sistem exista partitii care pot fi redimensionate pentru a face loc "
-#~ "pentru instalarea Red Hat Linux. Doriti sa redimensionati aceste partitii "
-#~ "acum?"
+#~ msgid "There are partitions that can be resized nondestructively to make room for your Red Hat Linux installation. Do you want to resize these partitions now?"
+#~ msgstr "Pe acest sistem exista partitii care pot fi redimensionate pentru a face loc pentru instalarea Red Hat Linux. Doriti sa redimensionati aceste partitii acum?"
#~ msgid "Success"
#~ msgstr "Succes"
@@ -3049,19 +2573,11 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "Scanning hard drives..."
#~ msgstr "Inspectare hard discuri..."
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "Nu aveЧi nici un hard disc disponibil! Probabil aЧi uitat sЦ configuraЧi o "
-#~ "placЦ SCSI."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "Nu aveЧi nici un hard disc disponibil! Probabil aЧi uitat sЦ configuraЧi o placЦ SCSI."
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "Pentru instalarea Red Hat Linux trebuie sЦ aveЧi cel puЧin o partiЧie de "
-#~ "minim 150 MB dedicatЦ Linux."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "Pentru instalarea Red Hat Linux trebuie sЦ aveЧi cel puЧin o partiЧie de minim 150 MB dedicatЦ Linux."
#~ msgid "Partition Disks"
#~ msgstr "PartiЧionare discuri"
@@ -3070,22 +2586,13 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgstr "Resetare Necesara"
#~ msgid ""
-#~ "The kernel is unable to read your new partitioning information, probably "
-#~ "because you modified extended partitions. While this is not critical, you "
-#~ "must reboot your machine before proceeding. Insert the Red Hat boot disk now "
-#~ "and press Return to reboot your system.\n"
+#~ "The kernel is unable to read your new partitioning information, probably because you modified extended partitions. While this is not critical, you must reboot your machine before proceeding. Insert the Red Hat boot disk now and press Return to reboot your system.\n"
#~ "\n"
-#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an "
-#~ "empty SCSI drive can also cause this problem."
+#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an empty SCSI drive can also cause this problem."
#~ msgstr ""
-#~ "Kernel-ul nu poate citi noua tabelЦ de partiЧii, probabil din cauzЦ cЦ aЧi "
-#~ "modificat structura partiЧiilor extinse. AceastЦ eroare nu este fatalЦ, НnsЦ "
-#~ "calculatorul trebuie resetat Нnainte de a continua cu instalarea. нncЦrcaЧi "
-#~ "acum Red Hat boot disk Нn unitatea floppy ╨i apЦsaЧi Enter pentru a reseta "
-#~ "systemul.\n"
+#~ "Kernel-ul nu poate citi noua tabelЦ de partiЧii, probabil din cauzЦ cЦ aЧi modificat structura partiЧiilor extinse. AceastЦ eroare nu este fatalЦ, НnsЦ calculatorul trebuie resetat Нnainte de a continua cu instalarea. нncЦrcaЧi acum Red Hat boot disk Нn unitatea floppy ╨i apЦsaЧi Enter pentru a reseta systemul.\n"
#~ "\n"
-#~ "DacЦ aveЧi un drive ZIP sau JAZ asiguraЧi-vЦ ca Нn unitate este un disk; un "
-#~ "drive SCSI fЦrЦ disk poate de asemenea cauza aceastЦ problemЦ"
+#~ "DacЦ aveЧi un drive ZIP sau JAZ asiguraЧi-vЦ ca Нn unitate este un disk; un drive SCSI fЦrЦ disk poate de asemenea cauza aceastЦ problemЦ"
#~ msgid "lilo command"
#~ msgstr "comanda lilo"
@@ -3096,27 +2603,14 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "PCMCIA Support"
#~ msgstr "Suport pentru PCMCIA"
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "AveЧi nevoie de suport pentru PCMCIA Нn timpul instalЦrii? RЦspundeЧi Nu la "
-#~ "aceastЦ Нntrebare numai dacЦ aveЧi nevoie de suport pentru PCMCIA dupЦ "
-#~ "instalare. Nu aveЧi nevoie de suport pentru PCMCIA Нn timpul instalЦrii dacЦ "
-#~ "instalaЧi Red Hat Linux pe un laptop care are o unitate CD-ROM internЦ."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "AveЧi nevoie de suport pentru PCMCIA Нn timpul instalЦrii? RЦspundeЧi Nu la aceastЦ Нntrebare numai dacЦ aveЧi nevoie de suport pentru PCMCIA dupЦ instalare. Nu aveЧi nevoie de suport pentru PCMCIA Нn timpul instalЦrii dacЦ instalaЧi Red Hat Linux pe un laptop care are o unitate CD-ROM internЦ."
#~ msgid "PCMCIA Support Disk"
#~ msgstr "Suport pentru PCMCIA"
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "AceastЦ metodЦ de instalare necesitЦ un disc secundar. SchimbaЧi discul de "
-#~ "boot aflat Нn acest moment Нn unitatea de floppy cu discul denumit Red Hat "
-#~ "PCMCIA support disk."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "AceastЦ metodЦ de instalare necesitЦ un disc secundar. SchimbaЧi discul de boot aflat Нn acest moment Нn unitatea de floppy cu discul denumit Red Hat PCMCIA support disk."
#~ msgid "Starting PCMCIA services..."
#~ msgstr "Se iniЧializeazЦ serviciile PCMCIA..."
@@ -3194,15 +2688,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "Upgrade log"
#~ msgstr "Log actualizare"
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "Un istoric complet al acestei actualizЦri se va gasi Нn /tmp/upgrade.log la "
-#~ "sfНr╨itul procesului de actualizare. Dupa reiniЧializarea sistemului "
-#~ "consultaЧi acest fi╨ier pentru a fi sigur cЦ fi╨ierele de configurare a "
-#~ "sistemului au fost actualizate corect."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "Un istoric complet al acestei actualizЦri se va gasi Нn /tmp/upgrade.log la sfНr╨itul procesului de actualizare. Dupa reiniЧializarea sistemului consultaЧi acest fi╨ier pentru a fi sigur cЦ fi╨ierele de configurare a sistemului au fost actualizate corect."
#~ msgid "rootpw command"
#~ msgstr "rootpw command"
@@ -3219,19 +2706,11 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "Installation Path"
#~ msgstr "Directorul de instalare"
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "DoriЧi sЦ instalaЧi un nou sistem sau sЦ actualizaЧi un sistem care conЧine "
-#~ "deja Red Hat Linux versiunea 2.0 sau mai recentЦ?"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "DoriЧi sЦ instalaЧi un nou sistem sau sЦ actualizaЧi un sistem care conЧine deja Red Hat Linux versiunea 2.0 sau mai recentЦ?"
-#~ msgid ""
-#~ "What type of machine are you installing? For maximum flexibility, choose "
-#~ "\"Custom\"."
-#~ msgstr ""
-#~ "Ce tip de calculator instalaЧi? Pentru flexibilitate maximЦ Нn configurare, "
-#~ "alegeЧi \"Custom\"."
+#~ msgid "What type of machine are you installing? For maximum flexibility, choose \"Custom\"."
+#~ msgstr "Ce tip de calculator instalaЧi? Pentru flexibilitate maximЦ Нn configurare, alegeЧi \"Custom\"."
#~ msgid "Converting RPM database..."
#~ msgstr "Baza de date RPM se actualizeazЦ..."
@@ -3245,28 +2724,17 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
#~ msgstr ""
#~ "A apЦrut o eroare Нn timpul pasului \"%s\" al programului de instalare\n"
#~ "\n"
-#~ "PuteЧi reНncerca aceastЦ etapЦ, sЦ vЦ НntoarceЧi la o etapЦ anterioarЦ Нn "
-#~ "procesul de instalare, sau sЦ obЧineЧi un menu cu toate etapele de instalare "
-#~ "care vЦ va permite sЦ executaЧi diferite etape din procesul de instalare la "
-#~ "alegerea dumneavoastrЦ. Nu este recomandat lucrul cu meniul etapelor de "
-#~ "instalare decНt dacЦ sНnteЧi familiar cu Red Hat Linux. Care este opЧiunea "
-#~ "dumneavoastrЦ?"
+#~ "PuteЧi reНncerca aceastЦ etapЦ, sЦ vЦ НntoarceЧi la o etapЦ anterioarЦ Нn procesul de instalare, sau sЦ obЧineЧi un menu cu toate etapele de instalare care vЦ va permite sЦ executaЧi diferite etape din procesul de instalare la alegerea dumneavoastrЦ. Nu este recomandat lucrul cu meniul etapelor de instalare decНt dacЦ sНnteЧi familiar cu Red Hat Linux. Care este opЧiunea dumneavoastrЦ?"
#~ msgid " Continue with install"
#~ msgstr "Continuarea instalЦrii"
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
-#~ msgstr ""
-#~ "Ce anume doriЧi sЦ executaЧi? Etapele marcate cu * au fost deja executate."
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
+#~ msgstr "Ce anume doriЧi sЦ executaЧi? Etapele marcate cu * au fost deja executate."
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
#~ msgstr "IncЦrcaЧi un floppy disc Нn prima unitate de disc (/dev/fd0)."
@@ -3283,9 +2751,7 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "Kernel"
#~ msgstr "Kernel"
-#~ msgid ""
-#~ "Please insert your boot disk in your first disk drive if it's not already "
-#~ "present."
+#~ msgid "Please insert your boot disk in your first disk drive if it's not already present."
#~ msgstr "IntroduceЧi diskul de boot Нn drive dacЦ nu este deja prezent"
#~ msgid "Copying kernel from floppy..."
@@ -3298,8 +2764,7 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgstr "Eroare la crearea /mnt/tmp/ks.script: %s"
#~ msgid "Failed to write ks post script: %s"
-#~ msgstr ""
-#~ "Eroare la scrierea fi╨ierului de comenzi pentru post-instalarea kickstart: %s"
+#~ msgstr "Eroare la scrierea fi╨ierului de comenzi pentru post-instalarea kickstart: %s"
#~ msgid "Failed to create symlink for package source."
#~ msgstr "Eroare la crearea symlink pentru sursa de pachete."
@@ -3337,12 +2802,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "No Swap Space"
#~ msgstr "Memoria swap nu este definita"
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "Ce partiЧii doriЧi sЦ utilizaЧi ca spaЧiu pentru memoria swap? InformatЧia "
-#~ "existentЦ Нn partiЧiile selectate va fi pierdutЦ Нn urma acestei selecЧii."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "Ce partiЧii doriЧi sЦ utilizaЧi ca spaЧiu pentru memoria swap? InformatЧia existentЦ Нn partiЧiile selectate va fi pierdutЦ Нn urma acestei selecЧii."
#~ msgid "Active Swap Space"
#~ msgstr "SpaЧiu de Swap Activ"
@@ -3359,12 +2820,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "Ethernet Probe"
#~ msgstr "DetecЧie Ethernet"
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
-#~ msgstr ""
-#~ "DetecЧia Ethernet nu a identificat un adaptor de reЧea Нn acest calculator. "
-#~ "ApЦsaЧi <Enter> pentru a configurare manualЦ."
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
+#~ msgstr "DetecЧia Ethernet nu a identificat un adaptor de reЧea Нn acest calculator. ApЦsaЧi <Enter> pentru a configurare manualЦ."
#~ msgid "Static IP address"
#~ msgstr "AdresЦ IP staticЦ"
@@ -3381,12 +2838,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "kickstart network command is missing ip address"
#~ msgstr "comenzii network Нn kickstart Нi lipse╨te adresa de ip"
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
-#~ msgstr ""
-#~ "Cum trebuie setatЦ adresa de IP? DacЦ administratorul de reЧea v-a furnizat "
-#~ "o adresЦ de IP, selectaЧi IP static."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
+#~ msgstr "Cum trebuie setatЦ adresa de IP? DacЦ administratorul de reЧea v-a furnizat o adresЦ de IP, selectaЧi IP static."
#~ msgid "Sending BOOTP request..."
#~ msgstr "Trimitere cerere BOOTP..."
@@ -3395,29 +2848,16 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgstr "Nu se poate crea %s: %s\n"
#~ msgid "cannot create network device config file: %s"
-#~ msgstr ""
-#~ "nu s-a putu crea fi╨ierul de configurare pentru adaptorul de reЧea: %s"
+#~ msgstr "nu s-a putu crea fi╨ierul de configurare pentru adaptorul de reЧea: %s"
#~ msgid "cannot open file: %s"
#~ msgstr "nu s-a putut deschide fi╨ierul: %s"
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
-#~ msgstr ""
-#~ "Nu s-a putut determina numele de host automat. ApasaЧi <Enter> pentru a "
-#~ "introduce informaЧiile despre numele de host."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
+#~ msgstr "Nu s-a putut determina numele de host automat. ApasaЧi <Enter> pentru a introduce informaЧiile despre numele de host."
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
-#~ msgstr ""
-#~ "Introduceti numele de domeniu, numele de host, adresele de IP ale serverelor "
-#~ "DNS adiЧionale. Numele de host trebuie sЦ fie Нn forma completЦ, ca de "
-#~ "exemplu mybox.mylab.myco.com. DacЦ nu aveЧi nevoie de servere de DNS "
-#~ "adiЧionale, nu introduceЧi nimic Нn cНmpurile de editare."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
+#~ msgstr "Introduceti numele de domeniu, numele de host, adresele de IP ale serverelor DNS adiЧionale. Numele de host trebuie sЦ fie Нn forma completЦ, ca de exemplu mybox.mylab.myco.com. DacЦ nu aveЧi nevoie de servere de DNS adiЧionale, nu introduceЧi nimic Нn cНmpurile de editare."
#~ msgid "Host name:"
#~ msgstr "Nume host:"
@@ -3440,9 +2880,7 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "LAN networking has already been configured. Do you want to:"
#~ msgstr "ReЧeaua LAN a fost deja configuratЦ. Cum doriЧi sЦ continuaЧi?"
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
#~ msgstr "DoriЧi sЦ configuraЧi reЧeau LAN (nu dialup!) pentru acest sistem?"
#~ msgid "Cannot open components file: %s"
@@ -3478,13 +2916,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "GNOME"
#~ msgstr "GNOME"
-#~ msgid ""
-#~ "Would you like to have the GNOME desktop installed? It provides an easy to "
-#~ "use interface, including a drag and drop capability and an integrated help "
-#~ "system."
-#~ msgstr ""
-#~ "DoriЧi sЦ instalaЧi interfaЧa graficЦ GNOME? GNOME este o interfaЧЦ graficЦ "
-#~ "u╨or de folosit cu facilitЦЧi de drag and drop ╨i documentaЧie integratЦ."
+#~ msgid "Would you like to have the GNOME desktop installed? It provides an easy to use interface, including a drag and drop capability and an integrated help system."
+#~ msgstr "DoriЧi sЦ instalaЧi interfaЧa graficЦ GNOME? GNOME este o interfaЧЦ graficЦ u╨or de folosit cu facilitЦЧi de drag and drop ╨i documentaЧie integratЦ."
#~ msgid "Choose components to install:"
#~ msgstr "SelectaЧi componentele pentru instalare:"
@@ -3514,8 +2947,7 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgstr "Actualizare Pachete"
#~ msgid "<F1> will give you information on a particular printer type"
-#~ msgstr ""
-#~ "<F1> va produce informaЧii auxiliare despre un model anume de imprimantЦ"
+#~ msgstr "<F1> va produce informaЧii auxiliare despre un model anume de imprimantЦ"
#~ msgid "Configure Printer"
#~ msgstr "Configurare ImprimantЦ"
@@ -3523,11 +2955,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "<F1> will give you information on this printer driver."
#~ msgstr "<F1> va produce informaЧii despre driverul de imprimantЦ selectat."
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
-#~ msgstr ""
-#~ "Acum puteЧi configura dimensiunile paginii standard si rezoluЧia acestei "
-#~ "imprimante."
+#~ msgid "You may now configure the paper size and resolution for this printer."
+#~ msgstr "Acum puteЧi configura dimensiunile paginii standard si rezoluЧia acestei imprimante."
#~ msgid "Paper Size"
#~ msgstr "Dimensiunile paginei"
@@ -3539,8 +2968,7 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgstr "CorecЧie a efectului de imprimare Нn scarЦ?"
#~ msgid "You may now configure the color options for this printer."
-#~ msgstr ""
-#~ "Acum puteЧi configura opЧiunile de culoare pentru aceastЦ imprimantЦ."
+#~ msgstr "Acum puteЧi configura opЧiunile de culoare pentru aceastЦ imprimantЦ."
#~ msgid "You may now configure the uniprint options for this printer."
#~ msgstr "Acum puteЧi configura opЧiunile uniprint pentru aceastЦ imprimantЦ."
@@ -3551,12 +2979,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "Configure Uniprint Driver"
#~ msgstr "Configurare Driver Uniprint"
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
-#~ msgstr ""
-#~ "Pe ce port este imprimanta dumneavoastrЦ conectatЦ (atenЧie, /dev/lp0 este "
-#~ "echivalent cu LPT1:)?"
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr "Pe ce port este imprimanta dumneavoastrЦ conectatЦ (atenЧie, /dev/lp0 este echivalent cu LPT1:)?"
#~ msgid ""
#~ "Auto-detected ports:\n"
@@ -3586,14 +3010,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "Remote lpd Printer Options"
#~ msgstr "OpЧiuni pentru serverul lpd"
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "Pentru a folosi o imprimantЦ de pe un server lpd va trebui sЦ introduceЧi "
-#~ "numele serverului ╨i numele cozii de imprimare disponibilЦ pe acel server "
-#~ "pentru acest calculator."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "Pentru a folosi o imprimantЦ de pe un server lpd va trebui sЦ introduceЧi numele serverului ╨i numele cozii de imprimare disponibilЦ pe acel server pentru acest calculator."
#~ msgid "Printer Server:"
#~ msgstr "Server imprimantЦ:"
@@ -3604,18 +3022,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "NetWare Printer Options"
#~ msgstr "OpЧiuni imprimantЦ Netware"
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "Pentru a folosi o imprimantЦ accesibilЦ pe un server Netware, va trebui sЦ "
-#~ "introduceЧi numele serverului Netware care pune la dispoziЧie aceastЦ "
-#~ "imprimantЦ (nume care nu este Нntotdeauna acela╨i cu adresa de IP a "
-#~ "serverului), adresa de IP a serverului, numele imprimantei partajate Нn "
-#~ "reЧea pe care doriЧi sЦ o accesaЧi de pe acest calculator ca ╨i numele de "
-#~ "cont ╨i parola care vЦ permit accesul la aceastЦ imprimantЦ."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "Pentru a folosi o imprimantЦ accesibilЦ pe un server Netware, va trebui sЦ introduceЧi numele serverului Netware care pune la dispoziЧie aceastЦ imprimantЦ (nume care nu este Нntotdeauna acela╨i cu adresa de IP a serverului), adresa de IP a serverului, numele imprimantei partajate Нn reЧea pe care doriЧi sЦ o accesaЧi de pe acest calculator ca ╨i numele de cont ╨i parola care vЦ permit accesul la aceastЦ imprimantЦ."
#~ msgid "SMB server host:"
#~ msgstr "Nume server SMB:"
@@ -3632,19 +3040,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "SMB/Windows 95/NT Printer Options"
#~ msgstr "OpЧiuni pentru imprimantЦ SMB/Windows 95/NT"
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "Pentru a folosi o imprimantЦ accesibilЦ prin protocolul de reЧea SMB, va "
-#~ "trebui sЦ introduceЧi numele serverului SMB care pune la dispoziЧie aceastЦ "
-#~ "imprimantЦ (nume care nu este Нntotdeauna acela╨i cu adresa de IP a "
-#~ "serverului), adresa de IP a serverului, numele imprimantei partajate Нn "
-#~ "reЧea pe care doriЧi sЦ o accesaЧi de pe acest calculator ca ╨i numele de "
-#~ "cont ╨i parola care vЦ permit accesul la aceastЦ imprimantЦ."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "Pentru a folosi o imprimantЦ accesibilЦ prin protocolul de reЧea SMB, va trebui sЦ introduceЧi numele serverului SMB care pune la dispoziЧie aceastЦ imprimantЦ (nume care nu este Нntotdeauna acela╨i cu adresa de IP a serverului), adresa de IP a serverului, numele imprimantei partajate Нn reЧea pe care doriЧi sЦ o accesaЧi de pe acest calculator ca ╨i numele de cont ╨i parola care vЦ permit accesul la aceastЦ imprimantЦ."
#~ msgid "Spool directory:"
#~ msgstr "Director pentru fi╨iere temporare"
@@ -3652,15 +3049,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "Standard Printer Options"
#~ msgstr "OpЧiuni standard pentru imprimantЦ"
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Fiecare coadЦ de imprimare (care prime╨te documente Нn vederea printЦrii) "
-#~ "are nevoie de un nume (de cele mai mute ori lp) ╨i de un director Нn care se "
-#~ "vor pЦstra fi╨iere temporare Нn timpul printЦrii. Ce nume ╨i ce director "
-#~ "doriЧi sЦ folosiЧi pentru aceastЦ coadЦ de imprimare?"
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Fiecare coadЦ de imprimare (care prime╨te documente Нn vederea printЦrii) are nevoie de un nume (de cele mai mute ori lp) ╨i de un director Нn care se vor pЦstra fi╨iere temporare Нn timpul printЦrii. Ce nume ╨i ce director doriЧi sЦ folosiЧi pentru aceastЦ coadЦ de imprimare?"
#~ msgid "Would you like to configure a printer?"
#~ msgstr "DoriЧi sЦ configuraЧi o imprimantЦ?"
@@ -3708,8 +3098,7 @@ msgstr "нncЦrcare Driver SCSI..."
#~ "Please verify that this printer information is correct:\n"
#~ "\n"
#~ msgstr ""
-#~ "Verificati dacЦ urmЦtoarele informaЧii despre aceastЦ imprimantЦ sНnt "
-#~ "corecte:\n"
+#~ "Verificati dacЦ urmЦtoarele informaЧii despre aceastЦ imprimantЦ sНnt corecte:\n"
#~ "\n"
#~ msgid "Printer device"
@@ -3781,12 +3170,8 @@ msgstr "нncЦrcare Driver SCSI..."
#~ "Eroare la transferul fi╨ierului %s:\n"
#~ "%s"
-#~ msgid ""
-#~ "An error occurred reading the partition table for the block device %s. The "
-#~ "error was:"
-#~ msgstr ""
-#~ "Eroare la citirea tabelei de partiЧii de pe discul %s. Mesajul de eroare "
-#~ "este:"
+#~ msgid "An error occurred reading the partition table for the block device %s. The error was:"
+#~ msgstr "Eroare la citirea tabelei de partiЧii de pe discul %s. Mesajul de eroare este:"
#~ msgid "LAN manager host:"
#~ msgstr "Nume Server LAN manager:"
@@ -3815,8 +3200,7 @@ msgstr "нncЦrcare Driver SCSI..."
#~ msgid "I cannot log into machine: %s\n"
#~ msgstr "Autentificarea a e╨uat: %s\n"
-#~ msgid ""
-#~ "Would you like to install or configure the SILO bootloader on your system?"
+#~ msgid "Would you like to install or configure the SILO bootloader on your system?"
#~ msgstr "DoriЧi sЦ instalaЧi ╨i/sau configuraЧi SILO pe acest sistem?"
#~ msgid "Other"
diff --git a/po/ru.po b/po/ru.po
index 1b840dba6..c69e84b64 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,7 +3,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 1.1\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-04-03 12:20+0200\n"
"Last-Translator: Leon Kanter <leon@geon.donetsk.ua>\n"
"Language-Team: DonLUG <donlug@geon.donetsk.ua>\n"
@@ -12,90 +12,66 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Date: 1999-04-03 12:20+0200\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "Следующий"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Назад"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Показать помощь"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Скрыть помощь"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "Завершить"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "Помощь"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "Выбор языка"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Инсталляторr Red Hat Linux"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Инсталляторr Red Hat Linux"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Инсталляторr Red Hat Linux"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Инсталляторr Red Hat Linux"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr ""
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "Какой язык должен использоваться в процессе инсталляции?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "Ok"
@@ -115,8 +91,7 @@ msgstr "/dev/ttyS1 (COM2 в DOS)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS1 (COM2 в DOS)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Устройство"
@@ -126,26 +101,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "К какому устройству подключена ваша мышь? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "Ok"
@@ -197,12 +153,7 @@ msgstr "Тип инсталляции"
msgid "What type of system would you like to install?"
msgstr "Система какого типа должна быть установлена?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Ошибка"
@@ -223,33 +174,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Уточните пакеты для обновления"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Подготовлен список пакетов, необходимых для обновления ранее установленных. "
-"Хотите ли вы уточнить набор пакетов для обновления?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Подготовлен список пакетов, необходимых для обновления ранее установленных. Хотите ли вы уточнить набор пакетов для обновления?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Да"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Нет"
@@ -261,21 +193,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Добро пожаловать в Red Hat Linux!\n"
"\n"
-"Процесс установки подробно описан в Официальном руководстве по инсталляции "
-"Red Hat Linux, доступном от Red Hat Software. Если у вас есть доступ к этому "
-"руководству, рекомендуется прочесть его перед продолжением инсталляции.\n"
+"Процесс установки подробно описан в Официальном руководстве по инсталляции Red Hat Linux, доступном от Red Hat Software. Если у вас есть доступ к этому руководству, рекомендуется прочесть его перед продолжением инсталляции.\n"
"\n"
-"Если вы приобрели Официальный Red Hat Linux, не забудьте зарегистрировать "
-"вашу покупку на нашем web-сайте, http://www.redhat.com."
+"Если вы приобрели Официальный Red Hat Linux, не забудьте зарегистрировать вашу покупку на нашем web-сайте, http://www.redhat.com."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -314,35 +240,21 @@ msgid "Hostname Configuration"
msgstr "Имя компьютера"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"Необходимо указать имя вашего компьютера. Если компьютер подключен к сети, "
-"имя компьютера может быть уже назначено вашим сетевым администратором."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "Необходимо указать имя вашего компьютера. Если компьютер подключен к сети, имя компьютера может быть уже назначено вашим сетевым администратором."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Имя хоста"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"С помощью загрузочного диска вы сможете загружать Linux точно так же, как и "
-"стандартным загрузчиком. Это может быть полезно, если вы не хотите "
-"устанавливать lilo, если другая операционная система удалила lilo, или lilo "
-"не может работать в вашей конфигурации. Загрузочный диск также может быть "
-"использован с ремонтной дискетой Red Hat, которая намного облегчит "
-"восстановление системы после сбоя.\n"
+"С помощью загрузочного диска вы сможете загружать Linux точно так же, как и стандартным загрузчиком. Это может быть полезно, если вы не хотите устанавливать lilo, если другая операционная система удалила lilo, или lilo не может работать в вашей конфигурации. Загрузочный диск также может быть использован с ремонтной дискетой Red Hat, которая намного облегчит восстановление системы после сбоя.\n"
"\n"
"Хотите создать загрузочный диск сейчас?"
@@ -386,12 +298,8 @@ msgid "Installation to begin"
msgstr "Начало инсталляции"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Полный протокол инсталляции вашей системы после перезагрузки будет "
-"находиться в /tmp/install.log. Возможно вам понадобится к нему обратиться."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Полный протокол инсталляции вашей системы после перезагрузки будет находиться в /tmp/install.log. Возможно вам понадобится к нему обратиться."
#: ../text.py:606
msgid "Complete"
@@ -401,42 +309,27 @@ msgstr "Готово"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"Поздравляем, установка завершена.\n"
"\n"
-"Удалите дискету из дисковода и нажмите <Enter> для перезагрузки. Информация "
-"об исправлениях, доступных для данного выпуска Red Hat Linux, доступна в "
-"разделе Errata на http://www.redhat.com.\n"
+"Удалите дискету из дисковода и нажмите <Enter> для перезагрузки. Информация об исправлениях, доступных для данного выпуска Red Hat Linux, доступна в разделе Errata на http://www.redhat.com.\n"
"\n"
-"Информацию о конфигурировании вашей системы после установки можно почерпнуть "
-"из Официального руководства пользователя Red Hat Linux."
+"Информацию о конфигурировании вашей системы после установки можно почерпнуть из Официального руководства пользователя Red Hat Linux."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Вставьте отформатированную дискету в первый дисковод. Все данные на этой "
-"дискете при создании загрузочного диска будут уничтожены."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Вставьте отформатированную дискету в первый дисковод. Все данные на этой дискете при создании загрузочного диска будут уничтожены."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Пропустить"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"При создании загрузочного диска произошла ошибка. Убедитесь, что "
-"отформатированная дискета вставлена в первый дисковод."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "При создании загрузочного диска произошла ошибка. Убедитесь, что отформатированная дискета вставлена в первый дисковод."
#: ../text.py:697
msgid "Package Installation"
@@ -499,18 +392,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> между элементами | <Space> выбор | <F12> следующий экран "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> между элементами | <Space> выбор | <F12> следующий экран "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Welcome"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "Разбиение"
@@ -530,8 +419,7 @@ msgstr "Swap"
msgid "Filesystem Formatting"
msgstr "Форматирование файловых систем"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "Конфигурация LILO"
@@ -595,8 +483,7 @@ msgstr "Инсталляция системы"
msgid "Installation Complete"
msgstr "Инсталляция завершена"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "Конфигурация LILO"
@@ -626,171 +513,170 @@ msgstr "Отмена"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr ""
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "Ошибка открытия: файл kickstart %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "Ошибка открытия: файл kickstart %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Удалить устройство RAID?"
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Форматирование файловых систем"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, c-format
msgid "Formatting %s filesystem..."
msgstr ""
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Создать загрузочный диск"
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Осталось"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "Посылаю запрос конфигурации IP..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr ""
-#: ../todo.py:1012
+#: ../todo.py:1016
msgid "Searching"
msgstr ""
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Ошибка открытия: файл kickstart %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Осталось"
-#: ../todo.py:1060
+#: ../todo.py:1064
#, fuzzy
msgid "Finding packages to upgrade..."
msgstr "Уточните пакеты для обновления"
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr ""
-#: ../todo.py:1249
+#: ../todo.py:1253
msgid "Preparing to install..."
msgstr ""
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Осталось"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr ""
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr ""
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Инсталляция пакетов"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Точка монтирования:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr ""
-#: ../todo.py:1439
+#: ../todo.py:1453
#, fuzzy
msgid "Disk Space"
msgstr "Разбиение диска"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Инсталляция"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "Проверить эту конфигурацию"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "Видеокарта"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Видео ОЗУ"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Сервер"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Невозможно получить виртуальный диск второго этапа"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Монитор"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "Частоты строчной развертки"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "Частоты кадровой развертки"
@@ -819,8 +705,7 @@ msgstr "Пароль"
msgid "Password (confirm)"
msgstr "Подтвердите пароль"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Полное имя"
@@ -828,15 +713,11 @@ msgstr "Полное имя"
msgid "Add"
msgstr "Добавить"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Редактировать"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Удалить"
@@ -952,8 +833,7 @@ msgstr "Рабочая станция GNOME"
msgid "KDE Workstation"
msgstr "Рабочая станция KDE"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Сервер"
@@ -997,7 +877,7 @@ msgstr "Вариант"
msgid "Test your selection here:"
msgstr "Проверьте ваш выбор здесь:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Какой язык должен использоваться в процессе инсталляции?"
@@ -1037,19 +917,15 @@ msgstr "Создать загрузочный диск"
msgid "Do not install LILO"
msgstr "Не устанавливать LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "По умолчанию"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Тип раздела"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Метка загрузки"
@@ -1058,43 +934,43 @@ msgstr "Метка загрузки"
msgid "Emulate 3 Buttons"
msgstr "Эмулировать 3 кнопки?"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Использовать DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Активизировать при загрузке"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "Адрес IP"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Маска подсети"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Сеть"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Бродкаст"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Шлюз"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "Первичный DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "Вторичный DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "Третичный DNS"
@@ -1179,14 +1055,8 @@ msgid "Low Memory"
msgstr "Мало памяти"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Поскольку на вашей машине недостаточно ОЗУ, необходимо подключить "
-"пространство свопинга немедленно. Для этого нужно записать на диск вновь "
-"созданную таблицу разделов. Вы согласны?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Поскольку на вашей машине недостаточно ОЗУ, необходимо подключить пространство свопинга немедленно. Для этого нужно записать на диск вновь созданную таблицу разделов. Вы согласны?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1197,21 +1067,17 @@ msgstr "Автоматическое разбиение"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Удалить данные"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "Ручное разбиение"
@@ -1272,7 +1138,7 @@ msgstr "Частоты кадровой развертки"
msgid "Test failed"
msgstr "Сбой теста"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "Уточнение конфигурации X"
@@ -1280,62 +1146,43 @@ msgstr "Уточнение конфигурации X"
msgid "Bits per Pixel"
msgstr "Бит на пиксель"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Проверить эту конфигурацию"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"В большинстве случаев оптимальные настройки вашей видеокарты и монитора "
-"могут быть установлены автоматически."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "В большинстве случаев оптимальные настройки вашей видеокарты и монитора могут быть установлены автоматически."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "Результат автоопределения:"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"Ваш монитор не может быть определен автоматически. Выберите его из списка:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "Ваш монитор не может быть определен автоматически. Выберите его из списка:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Использовать графический вход в систему"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "Пропустить конфигурацию Х"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"В некоторых системах необходимо передать ядру специальные параметры при "
-"загрузке. Если вам требуются такие параметры, введите их сейчас. Если "
-"указывать дополнительные параметры не требуется или вы не знаете, что это "
-"такое, оставьте это поле пустым."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "В некоторых системах необходимо передать ядру специальные параметры при загрузке. Если вам требуются такие параметры, введите их сейчас. Если указывать дополнительные параметры не требуется или вы не знаете, что это такое, оставьте это поле пустым."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Куда вы хотите установить начальный загрузчик?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Очистить"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Отмена"
@@ -1344,24 +1191,12 @@ msgid "Edit Boot Label"
msgstr "Изменить метку загрузки"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Менеджер загрузки Red Hat может загружать также другие операционные системы. "
-"Укажите загрузочные разделы и метки, которые вы будете использовать при "
-"обращении к ним."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Менеджер загрузки Red Hat может загружать также другие операционные системы. Укажите загрузочные разделы и метки, которые вы будете использовать при обращении к ним."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Для инсталляции некоторых выбранных вами пакетов требуются другие пакеты, "
-"которые не были выбраны. Если вы просто нажмете ', будут установлены все "
-"необходимые пакеты."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Для инсталляции некоторых выбранных вами пакетов требуются другие пакеты, которые не были выбраны. Если вы просто нажмете ', будут установлены все необходимые пакеты."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1369,32 +1204,19 @@ msgstr "Разбиение диска"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Утилита Disk Druid предназначена для разбиения диска и установки точек "
-"монтирования. Она легче в использовании по сравнению с классическим fdisk, "
-"поставляемым с Linux, и более функциональна. Несмотря на это, в некоторых "
-"случаях предпочтение может быть отдано утилите fdisk.\n"
+"Утилита Disk Druid предназначена для разбиения диска и установки точек монтирования. Она легче в использовании по сравнению с классическим fdisk, поставляемым с Linux, и более функциональна. Несмотря на это, в некоторых случаях предпочтение может быть отдано утилите fdisk.\n"
"\n"
"Какую утилиту вы будете использовать?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Для инсталляции Red Hat Linux вам необходим хотя бы один раздел в 150 MB, "
-"выделенный под Linux. Мы рекомендуем расположить этот раздел на одном из "
-"двух первых жестких дисков вашей системы, чтобы вы могли загружать Linux с "
-"помощью LILO."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Для инсталляции Red Hat Linux вам необходим хотя бы один раздел в 150 MB, выделенный под Linux. Мы рекомендуем расположить этот раздел на одном из двух первых жестких дисков вашей системы, чтобы вы могли загружать Linux с помощью LILO."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Готово"
@@ -1403,16 +1225,8 @@ msgid "Continue"
msgstr "Продолжить"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Какие разделы вы хотите отформатировать? Рекомендуется форматировать все "
-"системные разделы, включая /, /usr и /var. Такие разделы как /home или "
-"/usr/local можно не форматировать, особенно если они сконфигурированы при "
-"предыдущей установке."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Какие разделы вы хотите отформатировать? Рекомендуется форматировать все системные разделы, включая /, /usr и /var. Такие разделы как /home или /usr/local можно не форматировать, особенно если они сконфигурированы при предыдущей установке."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1432,14 +1246,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Выберите пароль пользователя root. Вы должны ввести его дважды, чтобы "
-"исключить ошибку при вводе. Помните, что пароль пользователя root - ключевой "
-"момент безопасности системы!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Выберите пароль пользователя root. Вы должны ввести его дважды, чтобы исключить ошибку при вводе. Помните, что пароль пользователя root - ключевой момент безопасности системы!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1490,24 +1298,12 @@ msgid "This user id already exists. Choose another."
msgstr "Пользователь с таким ID существует. Выберите другой ID"
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"Для постоянной работы в системе вы должны создать учетную запись "
-"пользователя, отличного от root. Не работая под именем root постоянно, вы "
-"снизите риск случайного разрушения конфигурации системы."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "Для постоянной работы в системе вы должны создать учетную запись пользователя, отличного от root. Не работая под именем root постоянно, вы снизите риск случайного разрушения конфигурации системы."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"какую учетную запись вы хотите иметь в системе? Для нормальной работы "
-"достаточно одной учетной записи, отличной от root, но многопользовательская "
-"система может иметь любое количество учетных записей."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "какую учетную запись вы хотите иметь в системе? Для нормальной работы достаточно одной учетной записи, отличной от root, но многопользовательская система может иметь любое количество учетных записей."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1545,8 +1341,7 @@ msgstr "или использовать:"
msgid "Request server via broadcast"
msgstr "Запрос сервера через бродкаст"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Неверная точка монтирования"
@@ -1615,44 +1410,26 @@ msgid "Too Many Drives"
msgstr "Слишком много дисков"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Число дисков больше, чем поддерживает программа. Используйте стандартный "
-"fdisk для задания разделов и проинформируйте Red Hat, что вы видели это "
-"сообщение."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Число дисков больше, чем поддерживает программа. Используйте стандартный fdisk для задания разделов и проинформируйте Red Hat, что вы видели это сообщение."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Диски не найдены"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Произошла ошибка: устройства для создания новых файловых систем не найдены. "
-"Проверьте оборудование для обнаружения вероятной причины."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Произошла ошибка: устройства для создания новых файловых систем не найдены. Проверьте оборудование для обнаружения вероятной причины."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Произошла ошибка чтения таблицы разделов на блочном устройстве %s. Ошибка:"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Произошла ошибка чтения таблицы разделов на блочном устройстве %s. Ошибка:"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Таблица разделов на устройстве %s повреждена. Для создания новых разделов "
-"устройство должно быть инициализировано. ВСЕ ДАННЫЕ на этом устройстве будут "
-"потеряны."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Таблица разделов на устройстве %s повреждена. Для создания новых разделов устройство должно быть инициализировано. ВСЕ ДАННЫЕ на этом устройстве будут потеряны."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1675,15 +1452,8 @@ msgid "BSD Disklabel"
msgstr "Дисковая метка BSD"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"Обнаружен диск с дисковой меткой BSD. Программа установки Red Hat "
-"поддерживает такие диски в режиме `только чтение', но вы можете выбрать "
-"специальную установку и воспользоваться утилитой fdisk (вместо Disk Druid) "
-"для компьютеров с дисковой меткой BSD."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "Обнаружен диск с дисковой меткой BSD. Программа установки Red Hat поддерживает такие диски в режиме `только чтение', но вы можете выбрать специальную установку и воспользоваться утилитой fdisk (вместо Disk Druid) для компьютеров с дисковой меткой BSD."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1710,10 +1480,7 @@ msgstr "Удалить этот раздел?"
msgid "Are you sure you want to delete this partition?"
msgstr "Вы уверены, что хотите удалить этот раздел?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Редактировать раздел"
@@ -1753,58 +1520,38 @@ msgstr "Тип раздела"
msgid "Allowable Drives:"
msgstr "Доступные устройства:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Нет точки монтирования"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Вы не выбрали точку монтирования для этого раздела. Оставить раздел без "
-"точки монтирования?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Вы не выбрали точку монтирования для этого раздела. Оставить раздел без точки монтирования?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Ошибка точки монтирования"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Либо точка монтирования имеет неверный путь, либо она уже используется. "
-"Укажите правильную точку монтирования."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Либо точка монтирования имеет неверный путь, либо она уже используется. Укажите правильную точку монтирования."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "Ошибка размера"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"Запрошенный размер указан неверно. Размер должен быть больше нуля и должен "
-"быть указан в десятичном формате."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "Запрошенный размер указан неверно. Размер должен быть больше нуля и должен быть указан в десятичном формате."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Ошибка размера свопинга"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Созданный вами раздел свопинга слишком велик. Размер раздела свопинга не "
-"должен превышать %ld мегабайт."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Созданный вами раздел свопинга слишком велик. Размер раздела свопинга не должен превышать %ld мегабайт."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1812,12 +1559,10 @@ msgstr "Устройство RAID не сконфигурировано"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
-"Вы сконфигурировали раздел RAID, но не приписали его к единому устройству "
-"RAID.\n"
+"Вы сконфигурировали раздел RAID, но не приписали его к единому устройству RAID.\n"
" Вы уверены?"
#: ../libfdisk/gnomefsedit.c:1114
@@ -1825,12 +1570,8 @@ msgid "Close"
msgstr "Закрыть"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Вы сконфигурировали раздел RAID, но не приписали его к единому устройству "
-"RAID. Выберите устройство, к которому будет принадлежать этот раздел."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Вы сконфигурировали раздел RAID, но не приписали его к единому устройству RAID. Выберите устройство, к которому будет принадлежать этот раздел."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1840,31 +1581,17 @@ msgstr "Описание RAID не завершено"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"Устройство RAID /dev/%s содержит нераспределенные разделы. Оно будет разбито "
-"на разделы-компоненты. Пересоздайте устройство RAID с распределенными "
-"разделами."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "Устройство RAID /dev/%s содержит нераспределенные разделы. Оно будет разбито на разделы-компоненты. Пересоздайте устройство RAID с распределенными разделами."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Нераспределенные разделы"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Таблица разделов содержит нераспределенные разделы. Ниже перечислены "
-"нераспределенные разделы с указанием причин, по которым они не были "
-"распределены."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Таблица разделов содержит нераспределенные разделы. Ниже перечислены нераспределенные разделы с указанием причин, по которым они не были распределены."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1887,23 +1614,16 @@ msgid "You have not selected a mount point. A mount point is required."
msgstr "Вы не выбрали точку монтирования. Точка монтирования необходима."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Точка монтирования уже используется. Укажите правильную точку монтирования."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Точка монтирования уже используется. Укажите правильную точку монтирования."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "Предупреждение загрузки с RAID"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Вы сконфигурировали это устройство RAID как загрузочный раздел. Убедитесь, "
-"что все его компоненты могут быть загружаемыми."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Вы сконфигурировали это устройство RAID как загрузочный раздел. Убедитесь, что все его компоненты могут быть загружаемыми."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1919,20 +1639,15 @@ msgstr "Использованное устройство RAID"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"Устройство RAID \"/dev/%s\" уже сконфигурировано. Выберите другое устройство."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "Устройство RAID \"/dev/%s\" уже сконфигурировано. Выберите другое устройство."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Не достаточно разделов"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr "Сконфигурировано недостаточно разделов для выбранного типа RAID."
#: ../libfdisk/gnomefsedit.c:1942
@@ -1945,14 +1660,8 @@ msgstr "Загрузочные разделы (/boot) допускаются только на RAID-1."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"Раздел %s - существующий раздел в наборе разделов этого устройства RAID. "
-"Точка монтирования установлена в /boot. Вы уверены что возможна загрузка "
-"сэтого раздела?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "Раздел %s - существующий раздел в наборе разделов этого устройства RAID. Точка монтирования установлена в /boot. Вы уверены что возможна загрузка сэтого раздела?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2016,12 +1725,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "Существуют нераспределенные разделы..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Вы должны назначить назначить корневой (/) раздел на раздел Linux native "
-"(ext2) или раздел RAID для продолжения инсталляции."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Вы должны назначить назначить корневой (/) раздел на раздел Linux native (ext2) или раздел RAID для продолжения инсталляции."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2072,12 +1777,8 @@ msgid "No Root Partition"
msgstr "Не указан корневой раздел"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Для продолжения установки необходимо назначить корневому (/) разделу тип "
-"Linux Native (ext2)."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Для продолжения установки необходимо назначить корневому (/) разделу тип Linux Native (ext2)."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2089,13 +1790,11 @@ msgstr "Необходимо назначить раздел свопинга для продолжения установки."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"Остались нераспределенные разделы. При выходе из программы они не будут "
-"записаны на диск.\n"
+"Остались нераспределенные разделы. При выходе из программы они не будут записаны на диск.\n"
"\n"
"Вы хотите выйти из программы?"
@@ -2132,20 +1831,14 @@ msgid "Miscellaneous"
msgstr "Разное"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Этот модуль может воспринимать параметры, влияют на на его работу. Если вы "
-"не знаете, какие параметры передать, пропустите этот экран, нажав \"OK\"."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Этот модуль может воспринимать параметры, влияют на на его работу. Если вы не знаете, какие параметры передать, пропустите этот экран, нажав \"OK\"."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "Параметры модуля"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "Устройства"
@@ -2158,20 +1851,12 @@ msgid "Failed to mount floppy disk."
msgstr "Ошибка монтирования дискеты."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"Вставленная вами дискета не является диском драйверов от этой версии Red Hat "
-"Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "Вставленная вами дискета не является диском драйверов от этой версии Red Hat Linux."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Какой драйвер необходимо попробовать? Если необходимого драйвера нет в "
-"списке и имеется дополнительный диск драйверов, нажмите F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Какой драйвер необходимо попробовать? Если необходимого драйвера нет в списке и имеется дополнительный диск драйверов, нажмите F2."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2200,15 +1885,15 @@ msgstr "Ошибка чтения содержимого файла kickstart %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Ошибка в строке %d файла kickstart %s"
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "Выберите язык"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Тип клавиатуры"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Укажите тип клавиатуры"
@@ -2224,136 +1909,116 @@ msgstr "Образ NFS"
msgid "Hard drive"
msgstr "Жесткий диск"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Добро пожаловать в Red Hat Linux"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> между элементами | <Space> выбор | <F12> следующий экран "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> между элементами | <Space> выбор | <F12> следующий экран "
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Устройство какого типа вы хотите добавить?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "В вашей системе удалось обнаружить следующие устройства:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "Добавить устройство"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"Не загружено ни одного драйвера специальных устройств. Вы хотите загрузить "
-"их сейчас?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "Не загружено ни одного драйвера специальных устройств. Вы хотите загрузить их сейчас?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "Загрузка"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "Загружается виртуальный диск..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Ошибка загрузки виртуального диска"
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Жесткие диски"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"В вашей системе не обнаружен ни один жесткий диск. Хотите ли вы "
-"сконфигурировать дополнительные устройства?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "В вашей системе не обнаружен ни один жесткий диск. Хотите ли вы сконфигурировать дополнительные устройства?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Укажите раздел и каталог на этом разделе, который содержит подкаталоги "
-"RedHat/RPMS и RedHat/base. Если диск отсутствует в списке, нажмите F2 для "
-"конфигурирования дополнительных устройств."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Укажите раздел и каталог на этом разделе, который содержит подкаталоги RedHat/RPMS и RedHat/base. Если диск отсутствует в списке, нажмите F2 для конфигурирования дополнительных устройств."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Каталог, содержащий Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Выбор раздела"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "Устройство %s не содержит инсталляционное дерево Red Hat."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"Ни в одном из ваших приводов CD-ROM не удалось найти Red Hat CD-ROM. "
-"Пожалуйста вставьте Red Hat CD и нажмите \"OK\" для продолжения."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "Ни в одном из ваших приводов CD-ROM не удалось найти Red Hat CD-ROM. Пожалуйста вставьте Red Hat CD и нажмите \"OK\" для продолжения."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Этот каталог не содержит инсталляционное дерево Red Hat."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Невозможно смонтировать этот каталог с сервера"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Невозможно получить виртуальный диск второго этапа"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "Метод восстановления"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "Метод инсталляции"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Какой носитель содержит спасательный образ?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Носитель какого типа содержит пакеты для инсталляции?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Невозможно найти ks.cfg на загрузочной дискете."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC Card"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "Инициализация устройств PC Card..."
@@ -2384,12 +2049,8 @@ msgstr ""
" Red Hat Linux для вашей архитектуры"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Введите конфигурацию протокола IP для этой машины. Каждый элемент должен "
-"быть введен как IP адрес в десятично-точечной записи (например 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Введите конфигурацию протокола IP для этой машины. Каждый элемент должен быть введен как IP адрес в десятично-точечной записи (например 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2453,11 +2114,8 @@ msgid "Network device"
msgstr "Сетевое устройство"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> между элементами | <Space> выбор | <F12> следующий экран "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> между элементами | <Space> выбор | <F12> следующий экран "
#: ../loader/net.c:699
#, c-format
@@ -2537,19 +2195,11 @@ msgid "You must enter a directory."
msgstr "Вы должны указать каталог."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Если вы не используете анонимный ftp, введите ниже имя пользователя и пароль "
-"для доступа к серверу ftp. При необходимости введите также адрес сервера FTP "
-"proxy."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Если вы не используете анонимный ftp, введите ниже имя пользователя и пароль для доступа к серверу ftp. При необходимости введите также адрес сервера FTP proxy."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
msgstr "Если вы используете HTTP proxy-сервер, укажите его имя или адрес IP"
#: ../loader/urls.c:295
@@ -2576,33 +2226,17 @@ msgstr "Порт HTTP Proxy:"
msgid "Loading SCSI driver"
msgstr "Загрузка драйвера SCSI"
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "При чтении блочного устройства %s найден диск с поврежденной меткой Sun. Вам "
-#~ "необходимо использовать fdisk для создания и записи новой метки на это "
-#~ "устройство."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "При чтении блочного устройства %s найден диск с поврежденной меткой Sun. Вам необходимо использовать fdisk для создания и записи новой метки на это устройство."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Поврежденная дисковая метка Sun"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Вы должны назначить загрузочный (/boot) раздел на раздел Linux native "
-#~ "(ext2)или раздел RAID-1 для продолжения инсталляции."
-
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Поскольку вы назначили корневой раздел (/) на устройство RAID, вы должны "
-#~ "также назначить загрузочный раздел (boot) на раздел Linux native (ext2) или "
-#~ "на раздел RAID-1 для продолжения инсталляции."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Вы должны назначить загрузочный (/boot) раздел на раздел Linux native (ext2)или раздел RAID-1 для продолжения инсталляции."
+
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Поскольку вы назначили корневой раздел (/) на устройство RAID, вы должны также назначить загрузочный раздел (boot) на раздел Linux native (ext2) или на раздел RAID-1 для продолжения инсталляции."
#~ msgid "Use fdisk to format drives"
#~ msgstr "Использовать fdisk для разбиения дисков"
diff --git a/po/se.po b/po/se.po
index 6a6c79bc6..e40924123 100644
--- a/po/se.po
+++ b/po/se.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Cristioan Gafton <gafton@redhat.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -9,66 +9,60 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr ""
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Tillbaka"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr ""
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr ""
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr ""
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr ""
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr ""
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr ""
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "VДlkommen till Red Hat Linux"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "VДlkommen till Red Hat Linux"
+
+#: ../gui.py:491
+#, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr ""
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr "Du Дr pЕ vДg att fЖrlora data. дr du sДker att du vill gЖra detta? "
#: ../text.py:50
@@ -76,25 +70,7 @@ msgstr "Du Дr pЕ vДg att fЖrlora data. дr du sДker att du vill gЖra detta? "
msgid "What language would you like to use during the installation process?"
msgstr "Vilka paket skall installeras?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr ""
@@ -114,8 +90,7 @@ msgstr ""
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Enhet"
@@ -125,26 +100,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr ""
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "Ok"
@@ -205,12 +161,7 @@ msgstr "Installationssteg"
msgid "What type of system would you like to install?"
msgstr "Vilket installationsmedium innehЕller paketen som skall installeras?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Fel"
@@ -233,34 +184,14 @@ msgid "Customize Packages to Upgrade"
msgstr "VДlj ut paket som skall uppgraderas"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Paketen du har installerat, och andra paket som Дr nЖdvДndiga fЖr att "
-"installera dem, har blivit utvalda fЖr uppgradering. Vill du anpassa vilka "
-"paket som ska bli uppgraderade?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Paketen du har installerat, och andra paket som Дr nЖdvДndiga fЖr att installera dem, har blivit utvalda fЖr uppgradering. Vill du anpassa vilka paket som ska bli uppgraderade?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Ja"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Nej"
@@ -274,22 +205,15 @@ msgstr "VДlkommen till Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"VДlkommen til Red Hat Linux!\n"
"\n"
-"Denna installationsprocess Дr beskriven i detalj i den officiella Red Hat "
-"Linux-installationsguiden, som Дr tillgДnglig frЕn Red Hat Software. Om du "
-"har tillgЕng till denna manual bЖr du lДsa igenom sektionen om installation "
-"innan du fortsДtter.\n"
+"Denna installationsprocess Дr beskriven i detalj i den officiella Red Hat Linux-installationsguiden, som Дr tillgДnglig frЕn Red Hat Software. Om du har tillgЕng till denna manual bЖr du lДsa igenom sektionen om installation innan du fortsДtter.\n"
"\n"
-"Om du har kЖpt \"Official Red Hat Linux\", kom ihЕg att registera dig pЕ vЕr "
-"websida, http://www.redhat.com"
+"Om du har kЖpt \"Official Red Hat Linux\", kom ihЕg att registera dig pЕ vЕr websida, http://www.redhat.com"
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -331,33 +255,21 @@ msgid "Hostname Configuration"
msgstr "SCSI-konfigurering"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
msgstr ""
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "VДrdnamn"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"En bootdisk lЕter dig boota linuxsystemet utan att vara beroende av den "
-"vanliga bootladdaren. Det Дr anvДndbart om du inte vill installera lilo, om "
-"nЕgot annat operativsystem tar bort lilo eller om lilo inte fungerar med din "
-"hЕrdvara. En anpassad bootdisk kan ocksЕ anvДndas tillsammans med Red Hat "
-"rescue-disk, vilket gЖr det enklare att ЕterstДlla systemet efter allvarliga "
-"fel.\n"
+"En bootdisk lЕter dig boota linuxsystemet utan att vara beroende av den vanliga bootladdaren. Det Дr anvДndbart om du inte vill installera lilo, om nЕgot annat operativsystem tar bort lilo eller om lilo inte fungerar med din hЕrdvara. En anpassad bootdisk kan ocksЕ anvДndas tillsammans med Red Hat rescue-disk, vilket gЖr det enklare att ЕterstДlla systemet efter allvarliga fel.\n"
"\n"
"Vill du skapa en bootdisk till ditt system?"
@@ -407,12 +319,8 @@ msgid "Installation to begin"
msgstr "Installationssteg"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"En komplett log av installationen kan hittas i /tmp/install.log efter "
-"omstart av systemet. Den kan vara bra att anvДnda som referens."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "En komplett log av installationen kan hittas i /tmp/install.log efter omstart av systemet. Den kan vara bra att anvДnda som referens."
#: ../text.py:606
msgid "Complete"
@@ -423,37 +331,26 @@ msgstr "FДrdig"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"Gratulerar, installationen Дr fДrdig.\n"
"\n"
-"Ta ut disketten ifrЕn diskettstationen och tryck <enter> fЖr att starta "
-"om.FЖr att hitta information om uppdateringar fЖr denna utgЕvan av Red Hat "
-"Linux, ta en titt pЕ fellista som du finner pЕ http://www.redhat.com \n"
+"Ta ut disketten ifrЕn diskettstationen och tryck <enter> fЖr att starta om.FЖr att hitta information om uppdateringar fЖr denna utgЕvan av Red Hat Linux, ta en titt pЕ fellista som du finner pЕ http://www.redhat.com \n"
"\n"
-"Information om konfigurering kan du hitta i \"The Official Red Hat Linux "
-"User's Guide\"."
+"Information om konfigurering kan du hitta i \"The Official Red Hat Linux User's Guide\"."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
msgstr ""
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Hoppa Жver"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
msgstr ""
#: ../text.py:697
@@ -523,18 +420,14 @@ msgstr ""
#: ../text.py:907
#, fuzzy
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> mellan element | <Space> vДljer | <F12> nДsta skДrm "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> mellan element | <Space> vДljer | <F12> nДsta skДrm "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr ""
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
#, fuzzy
msgid "Partition"
msgstr "Partitionera om"
@@ -558,8 +451,7 @@ msgstr ""
msgid "Filesystem Formatting"
msgstr "Formatterar"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
#, fuzzy
msgid "LILO Configuration"
msgstr "SCSI-konfigurering"
@@ -635,8 +527,7 @@ msgstr "Installera system"
msgid "Installation Complete"
msgstr "Installationsklass"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "SCSI-konfigurering"
@@ -665,176 +556,173 @@ msgstr "Avbrytet"
#: ../text.py:1040
msgid "I can't go to the previous step from here. You will have to try again."
-msgstr ""
-"FЖrsЖket att ЕtergЕ till fЖregЕende steg hДrifrЕn misslyckades. Prova igen."
+msgstr "FЖrsЖket att ЕtergЕ till fЖregЕende steg hДrifrЕn misslyckades. Prova igen."
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "Fel vid Жppning: kickstart-fil %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "Fel vid Жppning: kickstart-fil %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Skapar bootdisk..."
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Formatterar"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "Skapar ext2"
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Skapar bootdisk..."
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "HДmtar"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "SДnder DHCP-fЖrfrЕgan..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "inget fЖrslag"
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "Allt"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Fel vid Жppning: kickstart-fil %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "HДmtar"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "Letar efter paket att uppgradera..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr ""
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Letar efter paket att uppgradera..."
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "HДmtar"
-#: ../todo.py:1344
+#: ../todo.py:1358
#, fuzzy
msgid "Rebuilding RPM database..."
msgstr "Konverterar RPM-databasen..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
-msgstr ""
-"Ombyggning av RPM databas misslyckades. Eventuellt slut pЕ diskutrymme?"
+msgstr "Ombyggning av RPM databas misslyckades. Eventuellt slut pЕ diskutrymme?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Installerar"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Ingen monteringspunkt"
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Space Needed"
msgstr "Omstart krДvs"
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "Diskutrymme"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Installera"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "SCSI-konfigurering"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr ""
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr ""
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "PrimДr namnserver:"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Skapar initiell ramdisk.."
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr ""
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
msgid "Horizontal frequency range"
msgstr ""
-#: ../xf86config.py:248
+#: ../xf86config.py:252
msgid "Vertical frequency range"
msgstr ""
@@ -868,8 +756,7 @@ msgstr "LЖsenord:"
msgid "Password (confirm)"
msgstr "LЖsenord (en gЕng till):"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr ""
@@ -877,15 +764,11 @@ msgstr ""
msgid "Add"
msgstr "LДgg till"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "дndra"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Radera"
@@ -1013,8 +896,7 @@ msgstr "Arbetsstation"
msgid "KDE Workstation"
msgstr "Arbetsstation"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr ""
@@ -1062,7 +944,7 @@ msgstr ""
msgid "Test your selection here:"
msgstr "Tangentbords-typ"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
#, fuzzy
msgid "What language should be used during the installation process?"
msgstr "Vilka paket skall installeras?"
@@ -1107,19 +989,15 @@ msgstr "Skapa bootdisk"
msgid "Do not install LILO"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr ""
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Partitionstyp"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Bootnamn"
@@ -1127,46 +1005,46 @@ msgstr "Bootnamn"
msgid "Emulate 3 Buttons"
msgstr ""
-#: ../iw/network.py:141
+#: ../iw/network.py:148
#, fuzzy
msgid "Configure using DHCP"
msgstr "Konfigurera tidzon"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr ""
-#: ../iw/network.py:155
+#: ../iw/network.py:163
#, fuzzy
msgid "IP Address"
msgstr "IP-adress:"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
#, fuzzy
msgid "Netmask"
msgstr "NДtmask"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr ""
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr ""
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr ""
@@ -1263,10 +1141,7 @@ msgid "Low Memory"
msgstr ""
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
msgstr ""
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
@@ -1279,17 +1154,15 @@ msgstr "дndra partition"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
#, fuzzy
msgid "Remove data"
msgstr "Server:"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
#, fuzzy
msgid "Manually partition"
msgstr "Partitionera om"
@@ -1350,7 +1223,7 @@ msgstr ""
msgid "Test failed"
msgstr ""
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
#, fuzzy
msgid "Customize X Configuration"
msgstr "SCSI-konfigurering"
@@ -1359,61 +1232,46 @@ msgstr "SCSI-konfigurering"
msgid "Bits per Pixel"
msgstr ""
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
#, fuzzy
msgid "Test this configuration"
msgstr "SCSI-konfigurering"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
msgstr ""
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
#, fuzzy
msgid "Autoprobe results:"
msgstr "Testa"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
msgstr ""
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr ""
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
#, fuzzy
msgid "Skip X Configuration"
msgstr "SCSI-konfigurering"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"NЕgra system behЖver speciella tillval till kДrnan vid uppstart fЖr att "
-"systemet skall fungerar ordentligt. Om du behЖver sЕdana, skriv in dem nu.Om "
-"du inte behЖver nЕgra, eller om du inte Дr sДker, lЕt fДltet vara tomt."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "NЕgra system behЖver speciella tillval till kДrnan vid uppstart fЖr att systemet skall fungerar ordentligt. Om du behЖver sЕdana, skriv in dem nu.Om du inte behЖver nЕgra, eller om du inte Дr sДker, lЕt fДltet vara tomt."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Var vill du placera bootladdaren?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "NollstДll"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Avbryt"
@@ -1422,23 +1280,12 @@ msgid "Edit Boot Label"
msgstr "SДtt bootnamn"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Boothanteraren Red Hat anvДnder kan ocksЕ starta andra operativsystem. "
-"BerДtta vilka andra partition du Жnskar att boota och vilket bootnamn du "
-"vill anvДnda fЖr att boota dem."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Boothanteraren Red Hat anvДnder kan ocksЕ starta andra operativsystem. BerДtta vilka andra partition du Жnskar att boota och vilket bootnamn du vill anvДnda fЖr att boota dem."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Vissa paket du har valt att installera behЖver paket du inte valt. Om du "
-"vДljer 'Ok' kommer Дven dessa paket installeras."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Vissa paket du har valt att installera behЖver paket du inte valt. Om du vДljer 'Ok' kommer Дven dessa paket installeras."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1446,29 +1293,17 @@ msgstr "HЕrddisk instДllningar"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
-msgstr ""
-"Disk Druid Дr ett verktyg fЖr att partitionera och/eller konfiguration. Det "
-"Дr utvecklat fЖr att vara enklare Дn det traditionella partitionerings "
-"programmet, fdisk. Det finns emellertid situationer dДr fdisk passar bДttre."
+msgstr "Disk Druid Дr ett verktyg fЖr att partitionera och/eller konfiguration. Det Дr utvecklat fЖr att vara enklare Дn det traditionella partitionerings programmet, fdisk. Det finns emellertid situationer dДr fdisk passar bДttre."
#: ../textw/partitioning.py:58
#, fuzzy
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"FЖr att installera Red Hat Linux behЖver du minst en partition pЕ 50 MB Vi "
-"fЖreslЕr att du placerar denna pЕ den fЖrsta hЕrddisken i ditt system sЕ du "
-"kan starta Linux med LILO."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "FЖr att installera Red Hat Linux behЖver du minst en partition pЕ 50 MB Vi fЖreslЕr att du placerar denna pЕ den fЖrsta hЕrddisken i ditt system sЕ du kan starta Linux med LILO."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "FДrdig"
@@ -1477,15 +1312,8 @@ msgid "Continue"
msgstr "FortsДtt"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Vilka partitioner vill du formattera? Vi rekommenderar varmt att samtliga "
-"systempartitioner, speciellt /, /usr /var. Du behЖver inte formattera /home "
-"eller /usr/local om de redan Дr konfigurerade av en tidigare installation"
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Vilka partitioner vill du formattera? Vi rekommenderar varmt att samtliga systempartitioner, speciellt /, /usr /var. Du behЖver inte formattera /home eller /usr/local om de redan Дr konfigurerade av en tidigare installation"
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1506,14 +1334,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"VДlj ett root-lЖsenord. DU skall skriva det tvЕ gЕnger fЖr att vara sДker "
-"att du inte skrev fel. Kom ihЕg att root-lЖsenordet Дr den viktigaste delen "
-"av systemets sДkerhet!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "VДlj ett root-lЖsenord. DU skall skriva det tvЕ gЕnger fЖr att vara sДker att du inte skrev fel. Kom ihЕg att root-lЖsenordet Дr den viktigaste delen av systemets sДkerhet!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1569,17 +1391,11 @@ msgid "This user id already exists. Choose another."
msgstr ""
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
msgstr ""
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
msgstr ""
#: ../textw/userauth.py:160
@@ -1623,8 +1439,7 @@ msgstr ""
msgid "Request server via broadcast"
msgstr ""
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Felaktig monteringspunkt"
@@ -1693,44 +1508,26 @@ msgid "Too Many Drives"
msgstr "FЖr mЕnga hЕrddiskar"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Du har fЖr mЕnga hЕrddiskar fЖr att kunna anvДnda detta programmet. anvДnd "
-"fdisk till att partitionera hЕrddiskarna. VДnligen skicka en notis till Red "
-"Hat Software att du fick detta meddelande."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Du har fЖr mЕnga hЕrddiskar fЖr att kunna anvДnda detta programmet. anvДnd fdisk till att partitionera hЕrddiskarna. VДnligen skicka en notis till Red Hat Software att du fick detta meddelande."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Inga hЕrddiskar funna"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Ett fel har uppstЕtt - inga giltiga enheter som kan anvДndas till filsystem "
-"kunde hittas. Kolla om hЕrdvaran Дr orsaken till problemet."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Ett fel har uppstЕtt - inga giltiga enheter som kan anvДndas till filsystem kunde hittas. Kolla om hЕrdvaran Дr orsaken till problemet."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, fuzzy, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Det uppstog ett fel vid lДsning av partitionstabellen fЖr block-enhet %s "
-"felet var: "
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Det uppstog ett fel vid lДsning av partitionstabellen fЖr block-enhet %s felet var: "
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Partitionstabellen pЕ enhet %s Дr fЖrstЖrd. FЖr att skapa nya partitioner "
-"mЕste den initialiseras, det kommer fЖrstЖra ALL INFORMATION pЕ denna enhet."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Partitionstabellen pЕ enhet %s Дr fЖrstЖrd. FЖr att skapa nya partitioner mЕste den initialiseras, det kommer fЖrstЖra ALL INFORMATION pЕ denna enhet."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1754,14 +1551,8 @@ msgid "BSD Disklabel"
msgstr "Bootnamn"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"En disk med BSD ettiket har upptДcks. Red Hat installation stЖdjer enbart "
-"BSD ettiketter i read-only lДget, sЕ du mЕste anvДnda en anpassad install "
-"och fdisk (istДllet fЖr disk druid) fЖr maskiner med BSD ettiketter."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "En disk med BSD ettiket har upptДcks. Red Hat installation stЖdjer enbart BSD ettiketter i read-only lДget, sЕ du mЕste anvДnda en anpassad install och fdisk (istДllet fЖr disk druid) fЖr maskiner med BSD ettiketter."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1791,10 +1582,7 @@ msgstr "Radera partition"
msgid "Are you sure you want to delete this partition?"
msgstr "дr du sДker pЕ att du vill radera denna partition?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "дndra partition"
@@ -1837,31 +1625,21 @@ msgstr "Partitionstyp"
msgid "Allowable Drives:"
msgstr ""
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Ingen monteringspunkt"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"DU har inte valt nЕgon monteringspunkt fЖr denna partitionen. дr du sДker pЕ "
-"att det Дr det du vill?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "DU har inte valt nЕgon monteringspunkt fЖr denna partitionen. дr du sДker pЕ att det Дr det du vill?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Monteringspunktsfel"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Monteringspunkten du bad om Дr antingen inte tillЕten eller redan i bruk. "
-"VДlj en ny."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Monteringspunkten du bad om Дr antingen inte tillЕten eller redan i bruk. VДlj en ny."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
@@ -1869,27 +1647,17 @@ msgstr "Fel storlek"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
#, fuzzy
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"Storleken du bad om Дr inte tillЕten. Den mЕste vara stЖrre Дn 0, och "
-"angiven i decimalt heltal (bas 10)."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "Storleken du bad om Дr inte tillЕten. Den mЕste vara stЖrre Дn 0, och angiven i decimalt heltal (bas 10)."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Fel swapstorlek"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, fuzzy, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Du har skapat en alldeles fЖr stor swappartition. Max storleken pЕ en swap "
-"partitioner Дr %d (du kan ha flera)."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Du har skapat en alldeles fЖr stor swappartition. Max storleken pЕ en swap partitioner Дr %d (du kan ha flera)."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1898,12 +1666,9 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1108
#, fuzzy
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
-msgstr ""
-"DU har inte valt nЕgon monteringspunkt fЖr denna partitionen. дr du sДker pЕ "
-"att det Дr det du vill?"
+msgstr "DU har inte valt nЕgon monteringspunkt fЖr denna partitionen. дr du sДker pЕ att det Дr det du vill?"
#: ../libfdisk/gnomefsedit.c:1114
#, fuzzy
@@ -1911,9 +1676,7 @@ msgid "Close"
msgstr "NollstДll"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
msgstr ""
#. XXXXX - for now destroy the raid entry since it
@@ -1924,27 +1687,17 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
msgstr ""
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "OanvДnda partitioner"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Det finns oanvДnda partitioner i listan. Dessa visas nedan, tillsammans med "
-"anledningen till varfЖr de inte blev allokerade."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Det finns oanvДnda partitioner i listan. Dessa visas nedan, tillsammans med anledningen till varfЖr de inte blev allokerade."
#: ../libfdisk/gnomefsedit.c:1673
#, fuzzy
@@ -1967,27 +1720,19 @@ msgstr "Partitioner som skal formateras"
#: ../libfdisk/gnomefsedit.c:1880
#, fuzzy
msgid "You have not selected a mount point. A mount point is required."
-msgstr ""
-"DU har inte valt nЕgon monteringspunkt fЖr denna partitionen. дr du sДker pЕ "
-"att det Дr det du vill?"
+msgstr "DU har inte valt nЕgon monteringspunkt fЖr denna partitionen. дr du sДker pЕ att det Дr det du vill?"
#: ../libfdisk/gnomefsedit.c:1888
#, fuzzy
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Monteringspunkten du bad om Дr antingen inte tillЕten eller redan i bruk. "
-"VДlj en ny."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Monteringspunkten du bad om Дr antingen inte tillЕten eller redan i bruk. VДlj en ny."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr ""
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1912
@@ -2005,9 +1750,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1933
@@ -2016,9 +1759,7 @@ msgid "Not Enough Partitions"
msgstr "Ingen rotpartition"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr ""
#: ../libfdisk/gnomefsedit.c:1942
@@ -2031,10 +1772,7 @@ msgstr ""
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
msgstr ""
#: ../libfdisk/gnomefsedit.c:2034
@@ -2105,12 +1843,8 @@ msgstr "OanvДnda partitioner"
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
#, fuzzy
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Du mЕste ha en Linux native partition (ext2) som rot (/) partition innan du "
-"kan fortsДtta."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Du mЕste ha en Linux native partition (ext2) som rot (/) partition innan du kan fortsДtta."
#: ../libfdisk/gnomefsedit.c:3157
#, fuzzy
@@ -2168,12 +1902,8 @@ msgid "No Root Partition"
msgstr "Ingen rotpartition"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Du mЕste ha en Linux native partition (ext2) som rot (/) partition innan du "
-"kan fortsДtta."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Du mЕste ha en Linux native partition (ext2) som rot (/) partition innan du kan fortsДtta."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2185,13 +1915,11 @@ msgstr "Du mЕste skapa en swappartition fЖr att fortsДtta installationen."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"Det finns oanvДnda partitioner kvar. Om du slutar nu kommer de inte skrivas "
-"till disken.\n"
+"Det finns oanvДnda partitioner kvar. Om du slutar nu kommer de inte skrivas till disken.\n"
"\n"
"дr du sДker pЕ att du vill avsluta?"
@@ -2229,10 +1957,7 @@ msgid "Miscellaneous"
msgstr "Diverse parametrar:"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
msgstr ""
#: ../loader/devices.c:65
@@ -2240,8 +1965,7 @@ msgstr ""
msgid "Module Parameters"
msgstr "Modulparametrar"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
#, fuzzy
msgid "Devices"
msgstr "Enhet"
@@ -2256,15 +1980,11 @@ msgid "Failed to mount floppy disk."
msgstr "UpprДttandet av en fЖrbindelse till FTP-servern misslyckades"
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
msgstr ""
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
msgstr ""
#: ../loader/devices.c:211
@@ -2295,17 +2015,17 @@ msgstr "Fel vid inlДsning av kickstart-fil %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Fel pЕ linje %d i kickstart-fil %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
#, fuzzy
msgid "Choose a Language"
msgstr "UndersЖk en grupp:"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
#, fuzzy
msgid "Keyboard Type"
msgstr "Tangentbords-typ"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
#, fuzzy
msgid "What type of keyboard do you have?"
msgstr "VIlken skrivartyp har du?"
@@ -2323,146 +2043,130 @@ msgstr ""
msgid "Hard drive"
msgstr "HЕrddiskar"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
#, fuzzy
msgid "Welcome to Red Hat Linux"
msgstr "VДlkommen till Red Hat Linux"
-#: ../loader/loader.c:126
+#: ../loader/loader.c:129
#, fuzzy
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> mellan element | <Space> vДljer | <F12> nДsta skДrm "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> mellan element | <Space> vДljer | <F12> nДsta skДrm "
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr ""
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
#, fuzzy
msgid "What kind of device would you like to add"
msgstr "Vilket installationsmedium innehЕller paketen som skall installeras?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
#, fuzzy
msgid "I have found the following devices in your system:"
msgstr ""
"FЖljande SCSI-adaptorar hittades i ditt system:\n"
"\n"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
#, fuzzy
msgid "Add Device"
msgstr "Enhet"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
msgstr ""
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
#, fuzzy
msgid "Loading"
msgstr "Arbetsstation"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
#, fuzzy
msgid "Loading second stage ramdisk..."
msgstr "Supplimenteringsdiskett"
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
#, fuzzy
msgid "Error loading ramdisk."
msgstr "Skapar initiell ramdisk.."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "HЕrddiskar"
-#: ../loader/loader.c:594
+#: ../loader/loader.c:597
#, fuzzy
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"Du har inte definierat swap utrymme. Vill du fortsДtta eller partitionera om "
-"disken?"
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "Du har inte definierat swap utrymme. Vill du fortsДtta eller partitionera om disken?"
-#: ../loader/loader.c:607
+#: ../loader/loader.c:610
#, fuzzy
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Hvilken partisjon og katalog pЕ den partisjonen inneholder RedHat/RPMS og "
-"RedHat/Base-katalogene?"
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Hvilken partisjon og katalog pЕ den partisjonen inneholder RedHat/RPMS og RedHat/Base-katalogene?"
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Katalog som innehЕller Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "VДlj partition"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
-msgstr ""
-"Enhet %s ser inte ut att innehЕlla installationstrДd fЖr Red Hat Linux."
+msgstr "Enhet %s ser inte ut att innehЕlla installationstrДd fЖr Red Hat Linux."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
msgstr ""
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Den katalogen verkar inte innehЕlla ett Red Hat-installationsstrДd."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "FЖrsЖket att montera den katalogen frЕn servern misslyckades."
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr ""
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
#, fuzzy
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Skapar initiell ramdisk.."
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr ""
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "Installeringsmetod"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr ""
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
#, fuzzy
msgid "What type of media contains the packages to be installed?"
msgstr "Vilket installationsmedium innehЕller paketen som skall installeras?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Hittade inte ks.cfg pЕ bootdisketten"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr ""
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
#, fuzzy
msgid "Initializing PC Card Devices..."
msgstr "Initialiserar CDROM..."
@@ -2496,12 +2200,8 @@ msgstr ""
" Red Hat Linux fЖr din plattform"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Skriv in IP-konfigurationen fЖr denna datorn. Varje adress skall skrivas som "
-"en IP adress (T ex. 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Skriv in IP-konfigurationen fЖr denna datorn. Varje adress skall skrivas som en IP adress (T ex. 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2575,11 +2275,8 @@ msgstr "NFS-konfiguration"
#: ../loader/net.c:698
#, fuzzy
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> mellan element | <Space> vДljer | <F12> nДsta skДrm "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> mellan element | <Space> vДljer | <F12> nДsta skДrm "
#: ../loader/net.c:699
#, c-format
@@ -2665,18 +2362,11 @@ msgid "You must enter a directory."
msgstr ""
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Om du anvДnder icke-anonym ftp, skriv in anvДndarnamnet och lЖsenord. Om du "
-"anvДnder en proxy-server, skriv in namnet pЕ den."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Om du anvДnder icke-anonym ftp, skriv in anvДndarnamnet och lЖsenord. Om du anvДnder en proxy-server, skriv in namnet pЕ den."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
msgstr ""
#: ../loader/urls.c:295
@@ -2708,35 +2398,20 @@ msgstr "FTP proxy-server"
msgid "Loading SCSI driver"
msgstr "Supplimenteringsdiskett"
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "En disk med en korrupt Sun ettiket upptДcktes under lДsning av block-enhet "
-#~ "%s. Du mЕste anvДnda fdisk fЖr att skapa och skriva en ny ettiket till denna "
-#~ "enhet."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "En disk med en korrupt Sun ettiket upptДcktes under lДsning av block-enhet %s. Du mЕste anvДnda fdisk fЖr att skapa och skriva en ny ettiket till denna enhet."
#, fuzzy
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Felaktig Sun diskettiket"
#, fuzzy
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Du mЕste ha en Linux native partition (ext2) som rot (/) partition innan du "
-#~ "kan fortsДtta."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Du mЕste ha en Linux native partition (ext2) som rot (/) partition innan du kan fortsДtta."
#, fuzzy
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Du mЕste ha en Linux native partition (ext2) som rot (/) partition innan du "
-#~ "kan fortsДtta."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Du mЕste ha en Linux native partition (ext2) som rot (/) partition innan du kan fortsДtta."
#, fuzzy
#~ msgid "Root Partition Selection"
@@ -2814,27 +2489,11 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "I can't find the device anywhere on your system!"
#~ msgstr "Kan inte hitta enheten i ditt system."
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "I vissa fall, behЖver %s drivrutinen extra info fЖr att fungera korrekt, men "
-#~ "vanligtvis fungerar det ДndЕ. Vill du specificera extra info eller lЕta "
-#~ "drivrutinen testa ut den extra informationen sjДlv? Ibland kan testen lЕsa "
-#~ "datorn, men det borde inte stДlla till nЕn skada."
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "I vissa fall, behЖver %s drivrutinen extra info fЖr att fungera korrekt, men vanligtvis fungerar det ДndЕ. Vill du specificera extra info eller lЕta drivrutinen testa ut den extra informationen sjДlv? Ibland kan testen lЕsa datorn, men det borde inte stДlla till nЕn skada."
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "I mЕnga fall behЖver %s drivrutinen extra information om din dator. Om du "
-#~ "fЖredrar, nЕgra vanliga vДrden fЖr dessa parametrar blir undersЖkta. Detta "
-#~ "kan innebДra att din dator kraschar, men det bЖr inte stДlla till nЕn skada"
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "I mЕnga fall behЖver %s drivrutinen extra information om din dator. Om du fЖredrar, nЕgra vanliga vДrden fЖr dessa parametrar blir undersЖkta. Detta kan innebДra att din dator kraschar, men det bЖr inte stДlla till nЕn skada"
#~ msgid "Module options:"
#~ msgstr "Modulparametrar:"
@@ -2843,8 +2502,7 @@ msgstr "Supplimenteringsdiskett"
#~ msgstr "Kan inte Жppna /proc/filesystems: %d"
#~ msgid "Failed to open %s. No upgrade log will be kept."
-#~ msgstr ""
-#~ "Misslyckades med att Жppna %s. Ingen uppgraderingslogg kommer sparas."
+#~ msgstr "Misslyckades med att Жppna %s. Ingen uppgraderingslogg kommer sparas."
#~ msgid "Fatal error opening RPM database"
#~ msgstr "OЕterkallerligt fel uppstod under Жppning av RPM-databasen"
@@ -2897,13 +2555,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgstr "OfullstДndigt NFS-kommando"
#, fuzzy
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Jag misslyckades med att montera diskette. SДtt in disketten Red Hat "
-#~ "Supplementary Install disk, eller vДlj Avbryt och vДlj en annan "
-#~ "installationsmetod."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Jag misslyckades med att montera diskette. SДtt in disketten Red Hat Supplementary Install disk, eller vДlj Avbryt och vДlj en annan installationsmetod."
#, fuzzy
#~ msgid "Loading PCMCIA Support"
@@ -2912,13 +2565,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "Supplemental Disk"
#~ msgstr "Supplimenteringsdiskett"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Jag misslyckades med att montera diskette. SДtt in disketten Red Hat "
-#~ "Supplementary Install disk, eller vДlj Avbryt och vДlj en annan "
-#~ "installationsmetod."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Jag misslyckades med att montera diskette. SДtt in disketten Red Hat Supplementary Install disk, eller vДlj Avbryt och vДlj en annan installationsmetod."
#, fuzzy
#~ msgid "Loading Supplemental Disk..."
@@ -2929,30 +2577,16 @@ msgstr "Supplimenteringsdiskett"
#~ msgstr "HЕrddisk-summering"
#, fuzzy
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "Denna installationsmetod krДver en andra diskett. Ta ut boot-disketten ifrЕn "
-#~ "diskettstationen och sДtt in Red Hats Supplementary Install disk."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "Denna installationsmetod krДver en andra diskett. Ta ut boot-disketten ifrЕn diskettstationen och sДtt in Red Hats Supplementary Install disk."
#, fuzzy
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Jag misslyckades med att montera diskette. SДtt in disketten Red Hat "
-#~ "Supplementary Install disk, eller vДlj Avbryt och vДlj en annan "
-#~ "installationsmetod."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Jag misslyckades med att montera diskette. SДtt in disketten Red Hat Supplementary Install disk, eller vДlj Avbryt och vДlj en annan installationsmetod."
#, fuzzy
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "Denna installationsmetod krДver en andra diskett. Ta ut boot-disketten ifrЕn "
-#~ "diskettstationen och sДtt in Red Hats Supplementary Install disk."
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "Denna installationsmetod krДver en andra diskett. Ta ut boot-disketten ifrЕn diskettstationen och sДtt in Red Hats Supplementary Install disk."
#, fuzzy
#~ msgid "hd command"
@@ -3009,14 +2643,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "mount failed: %s"
#~ msgstr "montering misslyckades: %s"
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "Partitionstabellen pЕ enhet %s Дr fЖrstЖrd. FЖr att skapa ny partitioner "
-#~ "mЕste den initialiseras. Du kan specificera \"zerombr yes\" i "
-#~ "kickstart-filen fЖr att gЖra detta automatiskt."
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "Partitionstabellen pЕ enhet %s Дr fЖrstЖrd. FЖr att skapa ny partitioner mЕste den initialiseras. Du kan specificera \"zerombr yes\" i kickstart-filen fЖr att gЖra detta automatiskt."
#~ msgid "Zero Partition Table"
#~ msgstr "NollstДll partitionstabellen"
@@ -3026,8 +2654,7 @@ msgstr "Supplimenteringsdiskett"
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "Fel argument till kickstart 'zerombr'-kommando: %s\n"
-#~ "MЕste vara 'on', '1', eller 'yes' fЖr att vara pЕslaget, eller 'off','0' "
-#~ "eller 'no' fЖr avslaget."
+#~ "MЕste vara 'on', '1', eller 'yes' fЖr att vara pЕslaget, eller 'off','0' eller 'no' fЖr avslaget."
#~ msgid "Clear Partition Command"
#~ msgstr "Radera partition-kommando"
@@ -3044,12 +2671,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "Option Ignored"
#~ msgstr "Valet ignorerades"
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "\"--maxsize\"-valet fЖr partition %s blev ignorerat. Kontrollera att denДr "
-#~ "stЖrre Дn \"--size\"-valet."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "\"--maxsize\"-valet fЖr partition %s blev ignorerat. Kontrollera att denДr stЖrre Дn \"--size\"-valet."
#~ msgid "The mount point %s is already in use."
#~ msgstr "Monteringspunkt %s anvДnds redan."
@@ -3110,19 +2733,12 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "Scanning hard drives..."
#~ msgstr "GenomsЖker hЕrddiskarna..."
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "Du har ingen harddisk tilgДnglig!. Du glЖmde fЖrmodligen att konfigurera en "
-#~ "SCSI adapter."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "Du har ingen harddisk tilgДnglig!. Du glЖmde fЖrmodligen att konfigurera en SCSI adapter."
#, fuzzy
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "FЖr att installera Red Hat Linux behЖvs en dedikerad partition med 50MB."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "FЖr att installera Red Hat Linux behЖvs en dedikerad partition med 50MB."
#~ msgid "Partition Disks"
#~ msgstr "Partitionera hЕrddiskar"
@@ -3131,21 +2747,13 @@ msgstr "Supplimenteringsdiskett"
#~ msgstr "Omstart krДvs"
#~ msgid ""
-#~ "The kernel is unable to read your new partitioning information, probably "
-#~ "because you modified extended partitions. While this is not critical, you "
-#~ "must reboot your machine before proceeding. Insert the Red Hat boot disk now "
-#~ "and press Return to reboot your system.\n"
+#~ "The kernel is unable to read your new partitioning information, probably because you modified extended partitions. While this is not critical, you must reboot your machine before proceeding. Insert the Red Hat boot disk now and press Return to reboot your system.\n"
#~ "\n"
-#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an "
-#~ "empty SCSI drive can also cause this problem."
+#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an empty SCSI drive can also cause this problem."
#~ msgstr ""
-#~ "KДrnan kan inte lДsa den nya partitionsinformationen, antagligen eftersom "
-#~ "att du modifierade utЖkade partitioner. Trots att detta inte Дr kritiskt "
-#~ "mЕste du starta om din dator innan du fortsДtter. SДtt in Red Hat bootdisk "
-#~ "nu och tryck RETURN fЖr att starta om.\n"
+#~ "KДrnan kan inte lДsa den nya partitionsinformationen, antagligen eftersom att du modifierade utЖkade partitioner. Trots att detta inte Дr kritiskt mЕste du starta om din dator innan du fortsДtter. SДtt in Red Hat bootdisk nu och tryck RETURN fЖr att starta om.\n"
#~ "\n"
-#~ "Om du har en ZIP eller JAZ drive, fЖrsДkra dig om att dДr Дr en diskett i "
-#~ "enheten, tomma SCSI enheter kan ocksЕ orsaka detta problem."
+#~ "Om du har en ZIP eller JAZ drive, fЖrsДkra dig om att dДr Дr en diskett i enheten, tomma SCSI enheter kan ocksЕ orsaka detta problem."
#~ msgid "lilo command"
#~ msgstr "lilo-kommando"
@@ -3157,27 +2765,16 @@ msgstr "Supplimenteringsdiskett"
#~ msgstr "PCMCIA-stЖd"
#, fuzzy
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "BehЖver du PCMCIA-enheter under installationen? Svara nej om du bara behЖver "
-#~ "PCMCIA stЖd efter installation. Du behЖver inte PCMCIA stЖd om du "
-#~ "installerar Red Hat Linux pЕ en bДrbar PC med cdrom-lДsare."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "BehЖver du PCMCIA-enheter under installationen? Svara nej om du bara behЖver PCMCIA stЖd efter installation. Du behЖver inte PCMCIA stЖd om du installerar Red Hat Linux pЕ en bДrbar PC med cdrom-lДsare."
#, fuzzy
#~ msgid "PCMCIA Support Disk"
#~ msgstr "PCMCIA-stЖd"
#, fuzzy
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "Denna installationsmetod krДver en andra diskett. Ta ut boot-disketten ifrЕn "
-#~ "diskettstationen och sДtt in Red Hats Supplementary Install disk."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "Denna installationsmetod krДver en andra diskett. Ta ut boot-disketten ifrЕn diskettstationen och sДtt in Red Hats Supplementary Install disk."
#~ msgid "Starting PCMCIA services..."
#~ msgstr "Startar PCMCIA-tjДnster..."
@@ -3257,14 +2854,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "Upgrade log"
#~ msgstr "Uppgraderingslogg"
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "En komplett loggfill Жver uppgraderingen finns i /tmp/upgrade.log nДr "
-#~ "uppgraderingen Дr fДrdig. Efter omstart bЖr du lДsa igenom den fЖr att kolla "
-#~ "om konfigurationsfilerna Дr korrekt hanterade."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "En komplett loggfill Жver uppgraderingen finns i /tmp/upgrade.log nДr uppgraderingen Дr fДrdig. Efter omstart bЖr du lДsa igenom den fЖr att kolla om konfigurationsfilerna Дr korrekt hanterade."
#~ msgid "rootpw command"
#~ msgstr "rootlЖsenords-kommando"
@@ -3281,18 +2872,11 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "Installation Path"
#~ msgstr "InstallationssЖkvДg"
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "Vill du installera ett nytt system eller uppgradera ett befintligt Red Hat "
-#~ "Linux 2.0 eller nyare?"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "Vill du installera ett nytt system eller uppgradera ett befintligt Red Hat Linux 2.0 eller nyare?"
-#~ msgid ""
-#~ "What type of machine are you installing? For maximum flexibility, choose "
-#~ "\"Custom\"."
-#~ msgstr ""
-#~ "Vilken maskintyp installerar du? FЖr maximal flexibilitet, vДlj \"Custom\"."
+#~ msgid "What type of machine are you installing? For maximum flexibility, choose \"Custom\"."
+#~ msgstr "Vilken maskintyp installerar du? FЖr maximal flexibilitet, vДlj \"Custom\"."
#~ msgid "Converting RPM database..."
#~ msgstr "Konverterar RPM-databasen..."
@@ -3306,24 +2890,16 @@ msgstr "Supplimenteringsdiskett"
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
#~ msgstr ""
#~ "Dett uppstod ett fel under steget \"%s\" av installationen.\n"
#~ "\n"
-#~ "Du kan prova igen, gЕ tillbaka till fЖrra steget eller se en meny av "
-#~ "installationssteg som tillЕter dig att sjДlv vДlja i vilken ordning de olika "
-#~ "stegen skall utfЖras. Om du inte Дr bekant med Red Hat Linux rekommenderar "
-#~ "vi inte menyn. Vad vill du gЖra?"
+#~ "Du kan prova igen, gЕ tillbaka till fЖrra steget eller se en meny av installationssteg som tillЕter dig att sjДlv vДlja i vilken ordning de olika stegen skall utfЖras. Om du inte Дr bekant med Red Hat Linux rekommenderar vi inte menyn. Vad vill du gЖra?"
#~ msgid " Continue with install"
#~ msgstr " FortsДtt med installationen"
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
#~ msgstr "Vilket steg vill du kЖra? Steg med en * innan Дr redan utfЖrt."
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
@@ -3378,12 +2954,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "No Swap Space"
#~ msgstr "Inget swap utrymme"
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "VIlka partitioner vill du anvДnda till swap? Detta kommer fЖrstЖra all info "
-#~ "som finns pЕ partitionen."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "VIlka partitioner vill du anvДnda till swap? Detta kommer fЖrstЖra all info som finns pЕ partitionen."
#~ msgid "Active Swap Space"
#~ msgstr "Aktivt swap utrymme"
@@ -3400,11 +2972,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "Ethernet Probe"
#~ msgstr "SЖker efter nДtverkskort"
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
-#~ msgstr ""
-#~ "Hittade inget nДtverkskort. Tryck <Enter> fЖr att konfigurera ett manuellt."
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
+#~ msgstr "Hittade inget nДtverkskort. Tryck <Enter> fЖr att konfigurera ett manuellt."
#~ msgid "Static IP address"
#~ msgstr "Statisk IP-adress"
@@ -3415,12 +2984,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "kickstart network command is missing ip address"
#~ msgstr "kickstarts nДtverkskommando behЖver en IP-adress."
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
-#~ msgstr ""
-#~ "Hur skall IP-konfigurationen sДttas? Om din systemadministratЖr gav dig en "
-#~ "IP-adress, vДlj \"static IP\"."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
+#~ msgstr "Hur skall IP-konfigurationen sДttas? Om din systemadministratЖr gav dig en IP-adress, vДlj \"static IP\"."
#~ msgid "Sending BOOTP request..."
#~ msgstr "SДnder BOOTP-fЖrfrЕgan..."
@@ -3434,21 +2999,11 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "cannot open file: %s"
#~ msgstr "Kan inte Жppna fil: %s"
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
-#~ msgstr ""
-#~ "Kan inte finna vДrdnamnet. Tryck <Enter> fЖr att skriva in det sjДlv."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
+#~ msgstr "Kan inte finna vДrdnamnet. Tryck <Enter> fЖr att skriva in det sjДlv."
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
-#~ msgstr ""
-#~ "Skriv in domДnnamn, vДrdnamn och IP-adressen till extra namnservar. "
-#~ "VДrdnamnet skall vara ett fullt vДrdnamn, t ex \"mindator.mindoman.se\". Om "
-#~ "du inte har nЕgon extra namnserver, lДmna dessa fДlt tomma."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
+#~ msgstr "Skriv in domДnnamn, vДrdnamn och IP-adressen till extra namnservar. VДrdnamnet skall vara ett fullt vДrdnamn, t ex \"mindator.mindoman.se\". Om du inte har nЕgon extra namnserver, lДmna dessa fДlt tomma."
#~ msgid "Host name:"
#~ msgstr "VДrdnamn:"
@@ -3471,9 +3026,7 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "LAN networking has already been configured. Do you want to:"
#~ msgstr "LAN-nДtverk har redan konfigurerats. Vill du:"
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
#~ msgstr "Vill du konfigurera ditt system fЖr nДtverk (inte uppringning)? "
#~ msgid "Cannot open components file: %s"
@@ -3538,8 +3091,7 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "<F1> will give you information on this printer driver."
#~ msgstr "<F1> ger dig mer information om denna skrivardrivrutin."
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
+#~ msgid "You may now configure the paper size and resolution for this printer."
#~ msgstr "Konfigurera pappersstorlek och upplЖsning fЖr denna skrivaren."
#~ msgid "Paper Size"
@@ -3565,12 +3117,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "Configure Uniprint Driver"
#~ msgstr "Konfigurera skrivare"
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
-#~ msgstr ""
-#~ "Vilken enhet Дr skrivaren kopplad till (notera att /dev/lp0 Дr samma som "
-#~ "LPT1:)?"
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr "Vilken enhet Дr skrivaren kopplad till (notera att /dev/lp0 Дr samma som LPT1:)?"
#~ msgid ""
#~ "Auto-detected ports:\n"
@@ -3600,13 +3148,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "Remote lpd Printer Options"
#~ msgstr "Tillval till lpd:"
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "FЖr att anvДnda en lpd skrivarkЖ pЕ en annan maskin behЖver du uppge namnet "
-#~ "pЕ den andra maskinen och kЖn dДr jobben skall placeras."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "FЖr att anvДnda en lpd skrivarkЖ pЕ en annan maskin behЖver du uppge namnet pЕ den andra maskinen och kЖn dДr jobben skall placeras."
#, fuzzy
#~ msgid "Printer Server:"
@@ -3621,16 +3164,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgstr "Standard skrivartillval"
#, fuzzy
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "FЖr att skriva ut pЕ en LAN Manager-skrivare ska du uppge namnet pЕ LAN "
-#~ "manager-maskinen (detta Дr inte alltid samma som DNS namnet) och om mЖjligt "
-#~ "IP adressen till skrivarservern, Дven delningsnamnet fЖr skrivare du vill ha "
-#~ "tillgЕng till och anvДndarnamn med lЖsenord."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "FЖr att skriva ut pЕ en LAN Manager-skrivare ska du uppge namnet pЕ LAN manager-maskinen (detta Дr inte alltid samma som DNS namnet) och om mЖjligt IP adressen till skrivarservern, Дven delningsnamnet fЖr skrivare du vill ha tillgЕng till och anvДndarnamn med lЖsenord."
#, fuzzy
#~ msgid "SMB server host:"
@@ -3648,17 +3183,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgstr "Standard skrivartillval"
#, fuzzy
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "FЖr att skriva ut pЕ en LAN Manager-skrivare ska du uppge namnet pЕ LAN "
-#~ "manager-maskinen (detta Дr inte alltid samma som DNS namnet) och om mЖjligt "
-#~ "IP adressen till skrivarservern, Дven delningsnamnet fЖr skrivare du vill ha "
-#~ "tillgЕng till och anvДndarnamn med lЖsenord."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "FЖr att skriva ut pЕ en LAN Manager-skrivare ska du uppge namnet pЕ LAN manager-maskinen (detta Дr inte alltid samma som DNS namnet) och om mЖjligt IP adressen till skrivarservern, Дven delningsnamnet fЖr skrivare du vill ha tillgЕng till och anvДndarnamn med lЖsenord."
#~ msgid "Spool directory:"
#~ msgstr "Spool-katalog:"
@@ -3666,13 +3192,8 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "Standard Printer Options"
#~ msgstr "Standard skrivartillval"
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Varje skrivarkЖ behЖver ett namn, (ofta 'lp') och en katalog. Vilket namn "
-#~ "och vilken katalog skall anvДndas till denna kЖn?"
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Varje skrivarkЖ behЖver ett namn, (ofta 'lp') och en katalog. Vilket namn och vilken katalog skall anvДndas till denna kЖn?"
#~ msgid "Would you like to configure a printer?"
#~ msgstr "Vill du konfigurera en skrivare?"
@@ -3770,12 +3291,8 @@ msgstr "Supplimenteringsdiskett"
#~ "%s"
#~ msgstr "Fel vid Жppning: kickstart-fil %s: %s"
-#~ msgid ""
-#~ "An error occurred reading the partition table for the block device %s. The "
-#~ "error was:"
-#~ msgstr ""
-#~ "Det uppstog ett fel vid lДsning av partitionstabellen fЖr block-enhet %s "
-#~ "felet var: "
+#~ msgid "An error occurred reading the partition table for the block device %s. The error was:"
+#~ msgstr "Det uppstog ett fel vid lДsning av partitionstabellen fЖr block-enhet %s felet var: "
#~ msgid "LAN Manager Printer Options"
#~ msgstr "LAN Manager skrivartillval"
@@ -3798,7 +3315,5 @@ msgstr "Supplimenteringsdiskett"
#~ msgid "I cannot log into machine: %s\n"
#~ msgstr "Kunde inte logga in pЕ maskinen: %s\n"
-#~ msgid ""
-#~ "Would you like to install or configure the SILO bootloader on your system?"
-#~ msgstr ""
-#~ "Vil du installere eller konfiguere SILO-bootloaderen pЕ systemet ditt?"
+#~ msgid "Would you like to install or configure the SILO bootloader on your system?"
+#~ msgstr "Vil du installere eller konfiguere SILO-bootloaderen pЕ systemet ditt?"
diff --git a/po/sk.po b/po/sk.po
index b768a7d6f..76f0337c8 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,7 +3,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rhinstall unknown\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-09-18 08:45+02:00\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@@ -11,90 +11,66 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "оalej"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "SpД╩"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Zobrazi╩ pomТcky"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Skry╩ pomТcky"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "UkonХi╩"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "Online pomТcky"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "VЩber jazyka"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Red Hat Linux in╧talАtor"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Red Hat Linux in╧talАtor"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Red Hat Linux in╧talАtor"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Red Hat Linux in╧talАtor"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr ""
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "KtorЩ jazyk mА by╩ pou╬itЩ poХas procesu in╧talАcie?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "OK"
@@ -114,8 +90,7 @@ msgstr "/dev/ttyS2 (COM3 v DOS-e)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 v DOS-e)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Zariadenie"
@@ -125,26 +100,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "Na ktorИ zariadenie je va╧a my╧ pripojenА? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "OK"
@@ -196,12 +152,7 @@ msgstr "Typ in╧talАcie"
msgid "What type of system would you like to install?"
msgstr "AkЩ typ systИmu si ╬elАte nain╧talova╩?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Chyba"
@@ -222,34 +173,14 @@ msgid "Customize Packages to Upgrade"
msgstr "VЩber balМkov pre aktualizАciu"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"BalМky, ktorИ mАte nain╧talovanИ, a v╧etky balМky, od ktorЩch zАvisia, boli "
-"zvolenИ pre in╧talАciu. ╝elАte si upravi╩ zoznam balМkov, ktorИ majЗ by╩ "
-"aktualizovanИ?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "BalМky, ktorИ mАte nain╧talovanИ, a v╧etky balМky, od ktorЩch zАvisia, boli zvolenИ pre in╧talАciu. ╝elАte si upravi╩ zoznam balМkov, ktorИ majЗ by╩ aktualizovanИ?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "аno"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Nie"
@@ -261,22 +192,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Vita vАs Red Hat Linux!\n"
"\n"
-"Postup in╧talАcie je podrobne popМsanЩ v prМruХke Official Red Hat Linux "
-"Installation Guide, ktorЗ je mo╬nИ zМska╩ od spoloХnosti Red Hat Software. "
-"Pokia╣ mАte k tejto prМruХke prМstup, mali by ste si preХМta╩ kapitolu o "
-"in╧talАcii, kЩm budete pokraХova╩.\n"
+"Postup in╧talАcie je podrobne popМsanЩ v prМruХke Official Red Hat Linux Installation Guide, ktorЗ je mo╬nИ zМska╩ od spoloХnosti Red Hat Software. Pokia╣ mАte k tejto prМruХke prМstup, mali by ste si preХМta╩ kapitolu o in╧talАcii, kЩm budete pokraХova╩.\n"
"\n"
-"Pokia╣ ste si zakЗpili Official Red Hat Linux, nezabudnite svoju kЗpu "
-"zaregistrova╩ prostrednМctvom na╧ej Web strАnky http://www.redhat.com/."
+"Pokia╣ ste si zakЗpili Official Red Hat Linux, nezabudnite svoju kЗpu zaregistrova╩ prostrednМctvom na╧ej Web strАnky http://www.redhat.com/."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -315,35 +239,21 @@ msgid "Hostname Configuration"
msgstr "KonfigurАcia nАzvu poХМtaХa"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"NАzov poХМtaХa pomenovАva vА╧ poХМtaХ. Pokia╣ je pripojenЩ do siete, je "
-"mo╬nИ, ╬e nАzov pride╣uje sprАvca siete."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "NАzov poХМtaХa pomenovАva vА╧ poХМtaХ. Pokia╣ je pripojenЩ do siete, je mo╬nИ, ╬e nАzov pride╣uje sprАvca siete."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "NАzov poХМtaХa"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"IndividuАlna zavАdzacia disketa poskytuje mo╬nos╩ zavies╩ vА╧ systИm Linux "
-"bez zАvislosti na obvyklom zavАdzaХi. HodМ sa to, pokia╣ nechcete na va╧om "
-"systИme in╧talova╩ LILO, inЩ operaХnЩ systИm LILO odstrАni, alebo LILO "
-"nepracuje s va╧Мm hardware. IndividuАlna zavАdzacia disketa mТ╬e by╩ tie╬ "
-"pou╬itА pre Red Hat zАchrannЗ disketu, Хo podstatne u╣ahХМ zotavenie sa z "
-"vА╬nych chЩb systИmu.\n"
+"IndividuАlna zavАdzacia disketa poskytuje mo╬nos╩ zavies╩ vА╧ systИm Linux bez zАvislosti na obvyklom zavАdzaХi. HodМ sa to, pokia╣ nechcete na va╧om systИme in╧talova╩ LILO, inЩ operaХnЩ systИm LILO odstrАni, alebo LILO nepracuje s va╧Мm hardware. IndividuАlna zavАdzacia disketa mТ╬e by╩ tie╬ pou╬itА pre Red Hat zАchrannЗ disketu, Хo podstatne u╣ahХМ zotavenie sa z vА╬nych chЩb systИmu.\n"
"\n"
"╝elАte si vytvori╩ zavАdzaciu disketu pre vА╧ systИm?"
@@ -387,12 +297,8 @@ msgid "Installation to begin"
msgstr "ZaХiatok in╧talАcie"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"KompletnЩ protokol o in╧talАcii nАjdete po re╧tartovanМ systИmu v sЗbore "
-"/tmp/install.log. Tento sЗbor sa mТ╬e hodi╩ pre neskor╧iu referenciu."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "KompletnЩ protokol o in╧talАcii nАjdete po re╧tartovanМ systИmu v sЗbore /tmp/install.log. Tento sЗbor sa mТ╬e hodi╩ pre neskor╧iu referenciu."
#: ../text.py:606
msgid "Complete"
@@ -402,42 +308,27 @@ msgstr "Hotovo"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"Gratulujeme, in╧talАcia je ukonХenА.\n"
"\n"
-"OdstrАРte zavАdzacie mИdium z mechaniky a stlaХte return pre re╧tartovanie "
-"systИmu. Pre informАcie o opravАch pre tЗto verziu systИmu Red Hat Linux "
-"nazrite do Erraty, dostupnej na http://www.redhat.com.\n"
+"OdstrАРte zavАdzacie mИdium z mechaniky a stlaХte return pre re╧tartovanie systИmu. Pre informАcie o opravАch pre tЗto verziu systИmu Red Hat Linux nazrite do Erraty, dostupnej na http://www.redhat.com.\n"
"\n"
-"InformАcie o konfigurАcii vА╧ho systИmu je dostupnА v post install kapitole "
-"prМruХky Official Red Hat Linux User's Guide."
+"InformАcie o konfigurАcii vА╧ho systИmu je dostupnА v post install kapitole prМruХky Official Red Hat Linux User's Guide."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Vlo╬te prАzdnu disketu do prvej disketovej mechaniky. PoХas tvorby "
-"zavАdzacej diskety budЗ v╧etky Зdaje na nej vymazanИ."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Vlo╬te prАzdnu disketu do prvej disketovej mechaniky. PoХas tvorby zavАdzacej diskety budЗ v╧etky Зdaje na nej vymazanИ."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Vynecha╩"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"PoХas tvorby zavАdzacej diskety sa vyskytla chyba. Uistite sa, ╬e je v prvej "
-"disketovej mechanike vlo╬enА naformАtovanА disketa."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "PoХas tvorby zavАdzacej diskety sa vyskytla chyba. Uistite sa, ╬e je v prvej disketovej mechanike vlo╬enА naformАtovanА disketa."
#: ../text.py:697
msgid "Package Installation"
@@ -500,19 +391,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> medzi polo╬kami | <Space> vyberА | <F12> nasl. "
-"obr. "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> medzi polo╬kami | <Space> vyberА | <F12> nasl. obr. "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Vitajte"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "Oddiel"
@@ -532,8 +418,7 @@ msgstr "Swap"
msgid "Filesystem Formatting"
msgstr "FormАtovanie sЗborovИho systИmu"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "KonfigurАcia LILO"
@@ -597,8 +482,7 @@ msgstr "In╧talАcia systИmu"
msgid "Installation Complete"
msgstr "In╧talАcia ukonХenА"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "KonfigurАcia LILO"
@@ -628,171 +512,170 @@ msgstr "Zru╧i╩"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr ""
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "Chyba pri otvАranМ kickstart sЗboru %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "Chyba pri otvАranМ kickstart sЗboru %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Zru╧i╩ RAID zariadenie?"
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "FormАtovanie sЗborovИho systИmu"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, c-format
msgid "Formatting %s filesystem..."
msgstr ""
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Vytvori╩ zavАdzaciu disketu"
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "ZostАva"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "Posiela sa ╬iados╩ o IP informАciu..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr ""
-#: ../todo.py:1012
+#: ../todo.py:1016
msgid "Searching"
msgstr ""
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "Chyba pri otvАranМ kickstart sЗboru %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "ZostАva"
-#: ../todo.py:1060
+#: ../todo.py:1064
#, fuzzy
msgid "Finding packages to upgrade..."
msgstr "VЩber balМkov pre aktualizАciu"
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr ""
-#: ../todo.py:1249
+#: ../todo.py:1253
msgid "Preparing to install..."
msgstr ""
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "ZostАva"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr ""
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr ""
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "In╧talАcia balМkov"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Bod pripojenia:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr ""
-#: ../todo.py:1439
+#: ../todo.py:1453
#, fuzzy
msgid "Disk Space"
msgstr "Nastavenie diskov"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "In╧talova╩"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "Otestova╩ tЗto konfigurАciu"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "Videokarta"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "VideopamД╩"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Server"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Nepodarilo sa naХМta╩ ramdisk druhej fАzy"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Monitor"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "Rozsah horizontАlnych frekvenciМ"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "Rozsah vertikАlnych frekvenciМ"
@@ -821,8 +704,7 @@ msgstr "Heslo"
msgid "Password (confirm)"
msgstr "Heslo (znovu)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "зplnИ meno"
@@ -830,15 +712,11 @@ msgstr "зplnИ meno"
msgid "Add"
msgstr "Prida╩"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Upravi╩"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Zru╧i╩"
@@ -954,8 +832,7 @@ msgstr "PracovnА stanica GNOME"
msgid "KDE Workstation"
msgstr "PracovnА stanica KDE"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Server"
@@ -999,7 +876,7 @@ msgstr "Varianta"
msgid "Test your selection here:"
msgstr "Otestujte tu vА╧ vЩber:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "KtorЩ jazyk mА by╩ pou╬itЩ poХas procesu in╧talАcie?"
@@ -1039,19 +916,15 @@ msgstr "Vytvori╩ zavАdzaciu disketu"
msgid "Do not install LILO"
msgstr "Nein╧talova╩ LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Predvo╣ba"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Typ oddielu"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Popis"
@@ -1059,43 +932,43 @@ msgstr "Popis"
msgid "Emulate 3 Buttons"
msgstr "Emulova╩ 3 tlaХМtka"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "KonfigurАcia s pou╬itМm DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Aktivova╩ pri ╧tarte systИmu"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "IP adresa"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Maska siete"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Sie╩"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Broadcast"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "BrАna"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "PrimАrny DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "SekundАrny DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "TerciАrny DNS"
@@ -1180,14 +1053,8 @@ msgid "Low Memory"
msgstr "MАlo pamДti"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"KeО╬e vo va╧om poХМtaХi nemАte dostatok pamДti, je potrebnИ aktivova╩ "
-"odkladacМ priestor u╬ teraz. Aby to bolo mo╬nИ urobi╩, va╧a novА tabu╣ka "
-"rozdelenia sa zapМ╧e na disk okam╬ite. Je to v poriadku?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "KeО╬e vo va╧om poХМtaХi nemАte dostatok pamДti, je potrebnИ aktivova╩ odkladacМ priestor u╬ teraz. Aby to bolo mo╬nИ urobi╩, va╧a novА tabu╣ka rozdelenia sa zapМ╧e na disk okam╬ite. Je to v poriadku?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1198,20 +1065,17 @@ msgstr "AutomatickИ rozdelenie oddielov"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"Pokia╣ to nechcete urobi╩, mТ╬ete vykona╩ rozdelenie ruХne, alebo sa mТ╬ete "
-"vrАti╩ spД╩ a vykona╩ in╧talАciu pod╣a vlastnИho vЩberu."
+"Pokia╣ to nechcete urobi╩, mТ╬ete vykona╩ rozdelenie ruХne, alebo sa mТ╬ete vrАti╩ spД╩ a vykona╩ in╧talАciu pod╣a vlastnИho vЩberu."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "OdstrАni╩ Зdaje"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "ManuАlne rozdelenie"
@@ -1272,7 +1136,7 @@ msgstr "Rozsah vertikАlnych frekvenciМ"
msgid "Test failed"
msgstr "Test zlyhal"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "зprava X konfigurАcie"
@@ -1280,61 +1144,43 @@ msgstr "зprava X konfigurАcie"
msgid "Bits per Pixel"
msgstr "Bitov na pixel"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Otestova╩ tЗto konfigurАciu"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"Vo vДХ╧ine prМpadov je mo╬nИ automaticky zisti╩ typ vА╧ho hardvИru a zМska╩ "
-"tak optimАlne nastavenie pre vА╧ displej."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "Vo vДХ╧ine prМpadov je mo╬nИ automaticky zisti╩ typ vА╧ho hardvИru a zМska╩ tak optimАlne nastavenie pre vА╧ displej."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "VЩsledky automatickИho zistenia:"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"VА╧ monitor nemohol by╩ zistenЩ. Vyberte si prosМm z nasledujЗceho zoznamu:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "VА╧ monitor nemohol by╩ zistenЩ. Vyberte si prosМm z nasledujЗceho zoznamu:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Pou╬Мva╩ grafickИ prihlasovanie sa"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "Vynecha╩ konfigurАciu X"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"NiektorИ systИmy potrebujЗ zada╩ jadru poХas bootovania ╧peciАlne vo╣by. "
-"Pokia╣ ich potrebujete, zadajte ich; pokia╣ nie alebo neviete, nezadАvajte "
-"niХ."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "NiektorИ systИmy potrebujЗ zada╩ jadru poХas bootovania ╧peciАlne vo╣by. Pokia╣ ich potrebujete, zadajte ich; pokia╣ nie alebo neviete, nezadАvajte niХ."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Kam si ╬elАte nain╧talova╩ zavАdzaХ?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Vynulova╩"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Zru╧i╩"
@@ -1343,23 +1189,12 @@ msgid "Edit Boot Label"
msgstr "Upravi╩ zavАdzacМ popis"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"ZavАdzaХ pou╬МvanЩ systИmom Red Hat je schopnЩ zavies╩ aj inИ operaХnИ "
-"systИmy. Potrebujete zada╩ oddiely, na ktorЩch sa nachАdzajЗ zavedite╣nИ "
-"systИmy a popis, ktorЩ pre ne chcete pou╬i╩."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "ZavАdzaХ pou╬МvanЩ systИmom Red Hat je schopnЩ zavies╩ aj inИ operaХnИ systИmy. Potrebujete zada╩ oddiely, na ktorЩch sa nachАdzajЗ zavedite╣nИ systИmy a popis, ktorЩ pre ne chcete pou╬i╩."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"NiektorИ vami vybranИ balМky potrebujЗ ku svojej Хinnosti balМky, ktorИ ste "
-"nevybrali. Pokia╣ zvolМte OK, potrebnИ balМky sa nain╧talujЗ."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "NiektorИ vami vybranИ balМky potrebujЗ ku svojej Хinnosti balМky, ktorИ ste nevybrali. Pokia╣ zvolМte OK, potrebnИ balМky sa nain╧talujЗ."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1367,32 +1202,19 @@ msgstr "Nastavenie diskov"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid je nАstroj pre rozdelenie disku na oddiely a nastavenie bodov "
-"pripojenia. Je vytvorenЩ tak, aby bolo jeho pou╬itie jednoduch╧ie ako "
-"tradiХnЩ fdisk a aby poskytoval viac mo╬nostМ. ExistujЗ v╧ak prМpady, kedy "
-"mТ╬e by╩ vhodnej╧М fdisk.\n"
+"Disk Druid je nАstroj pre rozdelenie disku na oddiely a nastavenie bodov pripojenia. Je vytvorenЩ tak, aby bolo jeho pou╬itie jednoduch╧ie ako tradiХnЩ fdisk a aby poskytoval viac mo╬nostМ. ExistujЗ v╧ak prМpady, kedy mТ╬e by╩ vhodnej╧М fdisk.\n"
"\n"
"KtorЩ nАstroj chcete pou╬i╩?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Pre in╧talАciu Red Hat Linuxu potrebujete aspoР jeden 150 MB oddiel "
-"vyhradenЩ pre Linux. OdporЗХame umiestni╩ tento oddiel na jeden z prvЩch "
-"dvoch pevnЩch diskov vo va╧om systИme, aby bolo mo╬nИ zavies╩ Linux pomocou "
-"LILO zavАdzaХa."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Pre in╧talАciu Red Hat Linuxu potrebujete aspoР jeden 150 MB oddiel vyhradenЩ pre Linux. OdporЗХame umiestni╩ tento oddiel na jeden z prvЩch dvoch pevnЩch diskov vo va╧om systИme, aby bolo mo╬nИ zavies╩ Linux pomocou LILO zavАdzaХa."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Hotovo"
@@ -1401,16 +1223,8 @@ msgid "Continue"
msgstr "PokraХova╩"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"KtorИ oddiely chcete naformАtova╩? Silne sa odporЗХa naformАtova╩ v╧etky "
-"systИmovИ oddiely, vrАtane /, /usr a /var. BРNie je potrebnИ formАtova╩ "
-"/home alebo /usr/local, pokia╣ boli u╬ nakonfigurovanИ poХas predchАdzajЗcej "
-"in╧talАcie."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "KtorИ oddiely chcete naformАtova╩? Silne sa odporЗХa naformАtova╩ v╧etky systИmovИ oddiely, vrАtane /, /usr a /var. BРNie je potrebnИ formАtova╩ /home alebo /usr/local, pokia╣ boli u╬ nakonfigurovanИ poХas predchАdzajЗcej in╧talАcie."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1430,14 +1244,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Zvo╣te si heslo root-a. MusМte ho napМsa╩ dvakrАt, aby ste sa uistili, ╬e ho "
-"poznАte a ╬e ste pri zАpise neurobili preklep. PamДtajte na top, ╬e toto "
-"heslo je kritickou Хas╩ou bezpeХnosti systИmu!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Zvo╣te si heslo root-a. MusМte ho napМsa╩ dvakrАt, aby ste sa uistili, ╬e ho poznАte a ╬e ste pri zАpise neurobili preklep. PamДtajte na top, ╬e toto heslo je kritickou Хas╩ou bezpeХnosti systИmu!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1488,24 +1296,12 @@ msgid "This user id already exists. Choose another."
msgstr "Toto id pou╬Мvate╣a u╬ existuje - zvo╣te inИ."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"Pre vДХ╧inu ХinnostМ na va╧om systИme by ste mali pou╬Мva╩ be╬nЩ "
-"pou╬Мvate╣skЩ ЗХet. Pokia╣ si zvyknete nepracova╩ be╬ne ako superpou╬Мvate╣, "
-"zmen╧Мte tЩm pravdepodobnos╩ po╧kodenia konfigurАcie vА╧ho systИmu."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "Pre vДХ╧inu ХinnostМ na va╧om systИme by ste mali pou╬Мva╩ be╬nЩ pou╬Мvate╣skЩ ЗХet. Pokia╣ si zvyknete nepracova╩ be╬ne ako superpou╬Мvate╣, zmen╧Мte tЩm pravdepodobnos╩ po╧kodenia konfigurАcie vА╧ho systИmu."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"AkЩ pou╬Мvate╣skЩ ЗХet chcete ma╩ na va╧om systИme: Mali by ste ma╩ aspoР "
-"jeden nie-superpou╬Мvate╣skЩ ЗХet pre be╬nЗ prАcu, ale viacpou╬Мvate╣skИ "
-"systИmy ich mТ╬u ma╩ ╣ubovo╣nИ mno╬stvo."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "AkЩ pou╬Мvate╣skЩ ЗХet chcete ma╩ na va╧om systИme: Mali by ste ma╩ aspoР jeden nie-superpou╬Мvate╣skЩ ЗХet pre be╬nЗ prАcu, ale viacpou╬Мvate╣skИ systИmy ich mТ╬u ma╩ ╣ubovo╣nИ mno╬stvo."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1543,8 +1339,7 @@ msgstr "alebo pou╬i╩:"
msgid "Request server via broadcast"
msgstr "Po╬iada╩ o server broadcastom"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "ChybnЩ bod pripojenia"
@@ -1613,45 +1408,26 @@ msgid "Too Many Drives"
msgstr "Prive╣a jednotiek"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"MАte viac diskovЩch jednotiek, ako tento program podporuje. Pou╬ite "
-"╧tandardnЩ program fdisk pre konfigurАciu va╧ich diskov a oznАmte Red Hat "
-"Software, ╬e ste tЗto hlА╧ku videli."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "MАte viac diskovЩch jednotiek, ako tento program podporuje. Pou╬ite ╧tandardnЩ program fdisk pre konfigurАciu va╧ich diskov a oznАmte Red Hat Software, ╬e ste tЗto hlА╧ku videli."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Neboli nАjdenИ ╬iadne jednotky"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Vyskytla sa chyba - neboli nАjdenИ ╬iadne platnИ zariadenia, na ktorЩch je "
-"mo╬nИ vytvori╩ novИ sЗborovИ systИmy. Skontrolujte vА╧ hardware pre zistenie "
-"prМХiny problИmu."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Vyskytla sa chyba - neboli nАjdenИ ╬iadne platnИ zariadenia, na ktorЩch je mo╬nИ vytvori╩ novИ sЗborovИ systИmy. Skontrolujte vА╧ hardware pre zistenie prМХiny problИmu."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Pri ХМtanМ tabu╣ky rozdelenia blokovИho zariadenia %s sa vyskytla chyba: "
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Pri ХМtanМ tabu╣ky rozdelenia blokovИho zariadenia %s sa vyskytla chyba: "
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Tabu╣ka rozdelenia na zariadenМ %s je po╧kodenА. Pre vytvorenie novЩch "
-"oddielov musМ by╩ inicializovanА, Хo spТsobМ stratu V╘ETKщCH зDAJOV na tomto "
-"disku."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Tabu╣ka rozdelenia na zariadenМ %s je po╧kodenА. Pre vytvorenie novЩch oddielov musМ by╩ inicializovanА, Хo spТsobМ stratu V╘ETKщCH зDAJOV na tomto disku."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1674,14 +1450,8 @@ msgid "BSD Disklabel"
msgstr "BSD popis disku"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"Bol nАjdenЩ disk s popisom vytvorenЩm systИmom BSD. In╧talАcia Red Hat "
-"podporuje pre BSD popisy len ХМtanie, tak╬e musМte pou╬i╩ manuАlnu "
-"in╧talАciu a fdisk (namiesto Disk Druida)."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "Bol nАjdenЩ disk s popisom vytvorenЩm systИmom BSD. In╧talАcia Red Hat podporuje pre BSD popisy len ХМtanie, tak╬e musМte pou╬i╩ manuАlnu in╧talАciu a fdisk (namiesto Disk Druida)."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1708,10 +1478,7 @@ msgstr "Zru╧enie oddielu"
msgid "Are you sure you want to delete this partition?"
msgstr "SkutoХne chcete zru╧i╩ tento oddiel?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "зprava oddielu"
@@ -1751,56 +1518,38 @@ msgstr "Typ oddielu:"
msgid "Allowable Drives:"
msgstr "PovolenИ jednotky:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "ChЩba bod pripojenia"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
msgstr "Nezadali ste bod pripojenia tohoto oddielu. Naozaj to tak chcete?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Chyba bodu pripojenia"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Bod pripojenia buО chybnЗ cestu, alebo je u╬ pou╬itЩ. Zadajte platnЩ bod "
-"pripojenia."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Bod pripojenia buО chybnЗ cestu, alebo je u╬ pou╬itЩ. Zadajte platnЩ bod pripojenia."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "ChybnА ve╣kos╩"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"Po╬adovanА ve╣kos╩ je chybnА. Uistite sa, ╬e je ve╣kos╩ vДХ╧ia ako nula (0) "
-"a je zadanА ako celИ ХМslo v dekadickej sЗstave."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "Po╬adovanА ve╣kos╩ je chybnА. Uistite sa, ╬e je ve╣kos╩ vДХ╧ia ako nula (0) a je zadanА ako celИ ХМslo v dekadickej sЗstave."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "ChybnА ve╣kos╩ odkladacieho priestoru"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Vytvorili ste oddiel odkladacieho priestoru, ktorЩ je prМli╧ ve╣kЩ. "
-"MaximАlna ve╣kos╩ je %ld megabajtov."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Vytvorili ste oddiel odkladacieho priestoru, ktorЩ je prМli╧ ve╣kЩ. MaximАlna ve╣kos╩ je %ld megabajtov."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1808,8 +1557,7 @@ msgstr "╝iadne obmedzenie RAID disku"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
"Nakonfigurovali ste RAID oddiel bez jeho obmedzenia na jeden disk.\n"
@@ -1820,12 +1568,8 @@ msgid "Close"
msgstr "Zavrie╩"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Nakonfigurovali ste RAID oddiel bez jeho obmedzenia na jeden disk. Zadajte "
-"disk, na ktorЩ bude tento oddiel obmedzenЩ."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Nakonfigurovali ste RAID oddiel bez jeho obmedzenia na jeden disk. Zadajte disk, na ktorЩ bude tento oddiel obmedzenЩ."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1835,30 +1579,17 @@ msgstr "RAID polo╬ka neЗplnА"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"Zariadenie raid /dev/%s teraz obsahuje nepridelenИ oddiely. Zariadenie raid "
-"/dev/%s teraz bude rozlo╬enИ na oddiely, z ktorЩch je zlo╬enИ. Poskladajte "
-"prosМm raid zariadenie z pridelenЩch oddielov."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "Zariadenie raid /dev/%s teraz obsahuje nepridelenИ oddiely. Zariadenie raid /dev/%s teraz bude rozlo╬enИ na oddiely, z ktorЩch je zlo╬enИ. Poskladajte prosМm raid zariadenie z pridelenЩch oddielov."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "NepridelenИ oddiely"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"V zozname ╬iadanЩch oddielov existuje nepridelenЩ oddiel. NepridelenИ "
-"oddiely sЗ zobrazenИ ni╬╧ie spolu s dТvodom, preХo neboli pridelenИ."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "V zozname ╬iadanЩch oddielov existuje nepridelenЩ oddiel. NepridelenИ oddiely sЗ zobrazenИ ni╬╧ie spolu s dТvodom, preХo neboli pridelenИ."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1881,24 +1612,16 @@ msgid "You have not selected a mount point. A mount point is required."
msgstr "Nezadali ste bod pripojenia. Bod pripojenia je vy╬adovanЩ."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Po╬adovanЩ bod pripojenia je u╬ pou╬itЩ. Zadajte platnЩ bod pripojenia."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Po╬adovanЩ bod pripojenia je u╬ pou╬itЩ. Zadajte platnЩ bod pripojenia."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "Varovanie zavАdzania z RAID"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Toto zariadenie raid ste zadefinovali ako zariadenie, z ktorИho sa zavedie "
-"systИm. Skontrolujte prosМm, Хi sЗ v╧etky oddiely, z ktorЩch je zlo╬enИ, "
-"zavАdzacie."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Toto zariadenie raid ste zadefinovali ako zariadenie, z ktorИho sa zavedie systИm. Skontrolujte prosМm, Хi sЗ v╧etky oddiely, z ktorЩch je zlo╬enИ, zavАdzacie."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1914,21 +1637,15 @@ msgstr "Pou╬itИ RAID zariadenie"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"Raid zariadenie \"/dev/%s\" je u╬ nakonfigurovanИ ako raid zariadenie. "
-"Vyberte prosМm inИ."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "Raid zariadenie \"/dev/%s\" je u╬ nakonfigurovanИ ako raid zariadenie. Vyberte prosМm inИ."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Nie je dostatok oddielov"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr "Nenakonfigurovali ste dostatok oddielov pre vybranЩ typ RAID."
#: ../libfdisk/gnomefsedit.c:1942
@@ -1941,14 +1658,8 @@ msgstr "ZavАdzacie oddiely (/boot) sЗ povolenИ iba na RAID-1."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"Oddiel %s je existujЗci oddiel v sade oddielov pre toto RAID zariadenie. Bod "
-"pripojenia je nastavenЩ na /boot. Ste si istЩ/А, ╬e je mo╬nИ z tohoto "
-"oddielu zavАdza╩ systИm?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "Oddiel %s je existujЗci oddiel v sade oddielov pre toto RAID zariadenie. Bod pripojenia je nastavenЩ na /boot. Ste si istЩ/А, ╬e je mo╬nИ z tohoto oddielu zavАdza╩ systИm?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2012,12 +1723,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "ExistujЗ nepridelenИ oddiely..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"MusМte priradi╩ koreРovЩ (/) oddiel oddielu typu Linux native (ext2) alebo "
-"RAID oddiel, aby bolo mo╬nИ pokraХova╩ v in╧talАcii."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "MusМte priradi╩ koreРovЩ (/) oddiel oddielu typu Linux native (ext2) alebo RAID oddiel, aby bolo mo╬nИ pokraХova╩ v in╧talАcii."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2068,12 +1775,8 @@ msgid "No Root Partition"
msgstr "ChЩba koreРovЩ oddiel"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"MusМte priradi╩ koreРovЩ (/) oddiel oddielu typu Linux native (ext2), aby "
-"bolo mo╬nИ pokraХova╩ v in╧talАcii."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "MusМte priradi╩ koreРovЩ (/) oddiel oddielu typu Linux native (ext2), aby bolo mo╬nИ pokraХova╩ v in╧talАcii."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2081,18 +1784,15 @@ msgstr "╝iadny odkladacМ priestor"
#: ../libfdisk/newtfsedit.c:1446
msgid "You must assign a swap partition for the install to proceed."
-msgstr ""
-"MusМte prideli╩ odkladacМ priestor, aby bolo mo╬nИ pokraХova╩ v in╧talАcii."
+msgstr "MusМte prideli╩ odkladacМ priestor, aby bolo mo╬nИ pokraХova╩ v in╧talАcii."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"ExistujЗ nepridelenИ oddiely. Pokia╣ teraz skonХМte, nebudЗ na disk "
-"zapМsanИ.\n"
+"ExistujЗ nepridelenИ oddiely. Pokia╣ teraz skonХМte, nebudЗ na disk zapМsanИ.\n"
"\n"
"Naozaj chcete skonХi╩?"
@@ -2129,20 +1829,14 @@ msgid "Miscellaneous"
msgstr "RТzne"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Tomuto modulu je mo╬nИ zada╩ parametre, ovplyvРujЗce jeho Хinnos╩. Pokia╣ "
-"ich nepoznАte, preskoХte tЗto obrazovku stlaХenМm tlaХМtka \"OK\"."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Tomuto modulu je mo╬nИ zada╩ parametre, ovplyvРujЗce jeho Хinnos╩. Pokia╣ ich nepoznАte, preskoХte tЗto obrazovku stlaХenМm tlaХМtka \"OK\"."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "Parametre modulu"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "Zariadenia"
@@ -2155,20 +1849,12 @@ msgid "Failed to mount floppy disk."
msgstr "Nepodarilo sa mi pripoji╩ disketu."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"Disketa, ktorЗ ste vlo╬ili, nie je sprАvna disketa s ovlАdaХmi pre tЗto "
-"verziu Red Hat Linuxu."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "Disketa, ktorЗ ste vlo╬ili, nie je sprАvna disketa s ovlАdaХmi pre tЗto verziu Red Hat Linuxu."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"KtorЩ ovlАdaХ by som mal vyskЗ╧a╩? Ak ovlАdaХ, ktorЩ potrebujete nie je na "
-"tomto zozname a mАte druhЗ disketu s ovlАdaХmi, prosМm stlaХte F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "KtorЩ ovlАdaХ by som mal vyskЗ╧a╩? Ak ovlАdaХ, ktorЩ potrebujete nie je na tomto zozname a mАte druhЗ disketu s ovlАdaХmi, prosМm stlaХte F2."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2197,15 +1883,15 @@ msgstr "Chyba pri ХМtanМ obsahu kickstart sЗboru %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Chyba na riadku %d kickstart sЗboru %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "VЩber jazyka"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Typ klАvesnice"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "AkЩ typ klАvesnice mАte?"
@@ -2221,136 +1907,116 @@ msgstr "NFS obraz"
msgid "Hard drive"
msgstr "PevnЩ disk"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "VМta vАs Red Hat Linux"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> medzi polo╬kami | <Space> vyberА | <F12> nasl. obr. "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> medzi polo╬kami | <Space> vyberА | <F12> nasl. obr. "
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "AkЩ typ zariadenia si ╬elАte prida╩?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "Na va╧om systИme boli nАjdenИ nasledovnИ zariadenia:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "Prida╩ zariadenie"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"Pre vА╧ systИm nie sЗ naХМtanИ ╬iadne ╧peciАlne ovlАdaХe. ╝elАte si teraz "
-"nejakИ zavies╩?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "Pre vА╧ systИm nie sЗ naХМtanИ ╬iadne ╧peciАlne ovlАdaХe. ╝elАte si teraz nejakИ zavies╩?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "NaХМtanie"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "NaХМtava sa ramdisk druhej fАzy..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Chyba pri ХМtanМ ramdisku. "
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "PevnИ disky"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"ZdА sa, ╬e na va╧om systИme nemАte ╬iadne pevnИ disky! ╝elАte si "
-"nakonfigurova╩ prМdavnИ zariadenia?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "ZdА sa, ╬e na va╧om systИme nemАte ╬iadne pevnИ disky! ╝elАte si nakonfigurova╩ prМdavnИ zariadenia?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"KtorЩ oddiel a adresАr v tomto oddieli obsahuje adresАre RedHat/RPMS a "
-"RedHat/base? Pokia╣ tu nevidМte zariadenie, ktorИ pou╬Мvate, stlaХte F2 a "
-"nakonfigurujte prМdavnИ zariadenia."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "KtorЩ oddiel a adresАr v tomto oddieli obsahuje adresАre RedHat/RPMS a RedHat/base? Pokia╣ tu nevidМte zariadenie, ktorИ pou╬Мvate, stlaХte F2 a nakonfigurujte prМdavnИ zariadenia."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "AdresАr obsahujЗci Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "VЩber oddielu"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "Zariadenie %s zrejme neobsahuje in╧talaХnЩ strom Red Hat distribЗcie."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"V ╬iadnej z va╧ich CDROM mechanМk nebolo nАjdenИ CD s Red Hat Linuxom. "
-"Vlo╬te prosМm Red Hat CD a stlaХte \"OK\" pre novЩ pokus."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "V ╬iadnej z va╧ich CDROM mechanМk nebolo nАjdenИ CD s Red Hat Linuxom. Vlo╬te prosМm Red Hat CD a stlaХte \"OK\" pre novЩ pokus."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Tento adresАr zrejme neobsahuje in╧talaХnЩ strom Red Hat distribЗcie."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Nie je mo╬nИ pripoji╩ tento adresАr zo servera"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Nepodarilo sa naХМta╩ ramdisk druhej fАzy"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "ZАchrannА metСda"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "SpТsob in╧talАcie"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "AkЩ typ mИdia obsahuje zАchrannЩ obraz systИmu?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "AkЩ typ mИdia obsahuje balМky, ktorИ si ╬elАte nain╧talova╩?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Na zavАdzacej diskete nie je mo╬nИ nАjs╩ sЗbor ks.cfg."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC Card"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "InicializzАcia PC Card zariadenМ..."
@@ -2381,12 +2047,8 @@ msgstr ""
" Red Hat Linux pre va╧u architektЗru"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Zadajte IP konfigurАciu tohoto poХМtaХa. Ka╬dЩ zАznam by mal by╩ zadanЩ ako "
-"IP adresa v dekadickom tvare oddelenom bodkami (napr. 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Zadajte IP konfigurАciu tohoto poХМtaХa. Ka╬dЩ zАznam by mal by╩ zadanЩ ako IP adresa v dekadickom tvare oddelenom bodkami (napr. 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2450,12 +2112,8 @@ msgid "Network device"
msgstr "Sie╩ovИ zariadenie"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> medzi polo╬kami | <Space> vyberА | <F12> nasl. "
-"obr. "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> medzi polo╬kami | <Space> vyberА | <F12> nasl. obr. "
#: ../loader/net.c:699
#, c-format
@@ -2535,22 +2193,12 @@ msgid "You must enter a directory."
msgstr "MusМte zada╩ adresАr."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Pokia╣ pou╬Мvate neanonymnИ ftp, zadajte konto a heslo, ktorИ chcete pou╬i╩. "
-"Pokia╣ pou╬Мvate FTP proxy, zadajte nАzov FTP proxy servera, ktorЩ chcete "
-"pou╬i╩."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Pokia╣ pou╬Мvate neanonymnИ ftp, zadajte konto a heslo, ktorИ chcete pou╬i╩. Pokia╣ pou╬Мvate FTP proxy, zadajte nАzov FTP proxy servera, ktorЩ chcete pou╬i╩."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"Pokia╣ pou╬Мvate HTTP proxy, zadajte nАzov HTTP proxy servera, ktorЩ chcete "
-"pou╬i╩."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "Pokia╣ pou╬Мvate HTTP proxy, zadajte nАzov HTTP proxy servera, ktorЩ chcete pou╬i╩."
#: ../loader/urls.c:295
msgid "Account name:"
@@ -2576,29 +2224,14 @@ msgstr "HTTP proxy port:"
msgid "Loading SCSI driver"
msgstr "NaХМtava sa SCSI ovlАdaХ"
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "PoХas ХМtania blokovИho zariadenia %s bol nАjdenЩ po╧kodenЩ Sun popis disku. "
-#~ "Pre vytvorenie a zАpis novИho popisu na toto zariadenie musМte pou╬i╩ fdisk."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "PoХas ХМtania blokovИho zariadenia %s bol nАjdenЩ po╧kodenЩ Sun popis disku. Pre vytvorenie a zАpis novИho popisu na toto zariadenie musМte pou╬i╩ fdisk."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Po╧kodenЩ Sun popis disku"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "MusМte priradi╩ zavАdzacМ (/boot) oddiel oddielu typu Linux native (ext2) "
-#~ "alebo RAID-1 oddiel, aby bolo mo╬nИ pokraХova╩ v in╧talАcii."
-
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Preto╬e ste priradili koreРovЩ oddiel zariadeniu RAID, musМte tie╬ prideli╩ "
-#~ "zavАzdacМ (/boot) oddiel oddielu typu Linux native (ext2) alebo RAID-1 "
-#~ "oddielu, aby bolo mo╬nИ pokraХova╩ v in╧talАcii."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "MusМte priradi╩ zavАdzacМ (/boot) oddiel oddielu typu Linux native (ext2) alebo RAID-1 oddiel, aby bolo mo╬nИ pokraХova╩ v in╧talАcii."
+
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Preto╬e ste priradili koreРovЩ oddiel zariadeniu RAID, musМte tie╬ prideli╩ zavАzdacМ (/boot) oddiel oddielu typu Linux native (ext2) alebo RAID-1 oddielu, aby bolo mo╬nИ pokraХova╩ v in╧talАcii."
diff --git a/po/sl.po b/po/sl.po
index 2178f05c6..13266dc95 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: install 6.1\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-09-22 08:22+0200\n"
"Last-Translator: Roman Maurer <roman.maurer@hermes.si>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@@ -15,91 +15,67 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "Naprej"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Nazaj"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Prika╬i pomoХ"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Skrij pomoХ"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "Konec"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "PomoХ na zvezi"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "Izbira jezika"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Namestitveni program Red Hat Linuxa"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Namestitveni program Red Hat Linuxa"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Namestitveni program Red Hat Linuxa"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Namestitveni program Red Hat Linuxa"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr "Izgubili boste podatke! Ste prepriХani, da ╬elite to storiti?"
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "Kateri jezik bi radi uporabljali med namestitvenim postopkom?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "V redu"
@@ -119,8 +95,7 @@ msgstr "/dev/ttyS2 (COM3 v DOS-u)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 v DOS-u)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Naprava"
@@ -130,26 +105,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "Na katero napravo je prikljuХena mi╧ka? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "V redu"
@@ -201,12 +157,7 @@ msgstr "Vrsta namestitve"
msgid "What type of system would you like to install?"
msgstr "Katero vrsto sistema bi radi namestili?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Napaka"
@@ -227,34 +178,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Prikrojitev paketov za nadgradnjo"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Name╧Хeni paketi in paketi, ki so potrebni za zadovoljitev njihovih "
-"odvisnosti, so bili izbrani za namestitev. Bi radi prilagodili nabor "
-"paketov, ki naj se nadgradijo?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Name╧Хeni paketi in paketi, ki so potrebni za zadovoljitev njihovih odvisnosti, so bili izbrani za namestitev. Bi radi prilagodili nabor paketov, ki naj se nadgradijo?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Da"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Ne"
@@ -266,22 +197,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Dobrodo╧li v Red Hat Linuxu!\n"
"\n"
-"Ta naХin namestitve je podrobno razlo╬en v vodniku za namestitev sistema "
-"Official Red Hat Linux, ki jo lahko dobite pri podjetju Red Hat Software. хe "
-"imate dostop do tega priroХnika, naj bi ╧e pred nadaljevanjem prebrali "
-"razdelek o namestitvi.\n"
+"Ta naХin namestitve je podrobno razlo╬en v vodniku za namestitev sistema Official Red Hat Linux, ki jo lahko dobite pri podjetju Red Hat Software. хe imate dostop do tega priroХnika, naj bi ╧e pred nadaljevanjem prebrali razdelek o namestitvi.\n"
"\n"
-"хe ste kupili Official Red Hat Linux, registrirajte va╧ izvod v na╧em "
-"spleti╧Хu, http://www.redhat.com/."
+"хe ste kupili Official Red Hat Linux, registrirajte va╧ izvod v na╧em spleti╧Хu, http://www.redhat.com/."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -320,35 +244,21 @@ msgid "Hostname Configuration"
msgstr "Nastavitev imena raХunalnika"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"Ime raХunalnika (ang. hostname) je paХ vzdevek va╧ega raХunalnika. хe je "
-"raХunalnik prikljuХen v omre╬je, vam ga morda dodeli upravitelj omre╬ja."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "Ime raХunalnika (ang. hostname) je paХ vzdevek va╧ega raХunalnika. хe je raХunalnik prikljuХen v omre╬je, vam ga morda dodeli upravitelj omre╬ja."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Ime raХunalnika"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"Prilagojena zagonska disketa poskrbi za zagon sistema Linux ne glede na "
-"obiХajni zaganjalnik. To je uporabno, Хe v sistem ne ╬elite namestiti "
-"zaganjalnika LILO, Хe kak drug operacijski sistem odstrani LILO, ali LILO ne "
-"deluje z va╧o strojno opremo. Prilagojeno zagonsko disketo lahko uporabljate "
-"tudi z re╧ilno sliko Red Hata, kar omogoХa s katero mnogo la╬jo obnovitev "
-"sistema po resnem sesutju.\n"
+"Prilagojena zagonska disketa poskrbi za zagon sistema Linux ne glede na obiХajni zaganjalnik. To je uporabno, Хe v sistem ne ╬elite namestiti zaganjalnika LILO, Хe kak drug operacijski sistem odstrani LILO, ali LILO ne deluje z va╧o strojno opremo. Prilagojeno zagonsko disketo lahko uporabljate tudi z re╧ilno sliko Red Hata, kar omogoХa s katero mnogo la╬jo obnovitev sistema po resnem sesutju.\n"
"\n"
"Bi zdaj radi ustvarili zagonsko disketo, prilagojeno za va╧ sistem?"
@@ -392,13 +302,8 @@ msgid "Installation to begin"
msgstr "ZaХetek namestitve"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Popoln dnevnik namestitve boste na╧li v datoteki /tmp/install.log takoj, ko "
-"boste ponovno zagnali sistem. Morda boste ╬eleli obdr╬ati to datoteko za "
-"poznej╧i ogled."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Popoln dnevnik namestitve boste na╧li v datoteki /tmp/install.log takoj, ko boste ponovno zagnali sistem. Morda boste ╬eleli obdr╬ati to datoteko za poznej╧i ogled."
#: ../text.py:606
msgid "Complete"
@@ -408,43 +313,27 @@ msgstr "Opravljeno"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"хestitamo, namestitev je konХana.\n"
"\n"
-"Odstranite disketo iz disketnika in pritisnite <Enter>, da se bo raХunalnik "
-"resetiral. Za informacije o popravkih te razliХice Red Hat Linuxa, ki so na "
-"voljo, poglejte razdelek Errata, ki ga najdete na http://www.redhat.com.\n"
+"Odstranite disketo iz disketnika in pritisnite <Enter>, da se bo raХunalnik resetiral. Za informacije o popravkih te razliХice Red Hat Linuxa, ki so na voljo, poglejte razdelek Errata, ki ga najdete na http://www.redhat.com.\n"
"\n"
-"Informacije o prikrojitvi sistema lahko najdete v poglavju v Uradnem "
-"uporabni╧kem priroХniku za Red Hat Linux, ki opisuje prikrojevanje po "
-"namestitvi."
+"Informacije o prikrojitvi sistema lahko najdete v poglavju v Uradnem uporabni╧kem priroХniku za Red Hat Linux, ki opisuje prikrojevanje po namestitvi."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"V prvi disketnik vstavite prazno disketo. Med izdelavo zagonske diskete "
-"bodo na njej izbrisani vsi obstojeХi podatki."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "V prvi disketnik vstavite prazno disketo. Med izdelavo zagonske diskete bodo na njej izbrisani vsi obstojeХi podatki."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "PreskoХi"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"Med izdelavo zagonske diskete je pri╧lo do napake. Prosim prepriХajte se, "
-"da je v prvem disketniku formatirana disketa."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "Med izdelavo zagonske diskete je pri╧lo do napake. Prosim prepriХajte se, da je v prvem disketniku formatirana disketa."
#: ../text.py:697
msgid "Package Installation"
@@ -507,18 +396,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> med elementi | <Space> izbere | <F12> naslednji zaslon"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> med elementi | <Space> izbere | <F12> naslednji zaslon"
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Dobrodo╧li"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "Razdelitev diska"
@@ -538,8 +423,7 @@ msgstr "Izmenjalna"
msgid "Filesystem Formatting"
msgstr "Formatiranje datoteХnega sistema"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "Nastavitev LILO"
@@ -603,8 +487,7 @@ msgstr "Namesti sistem"
msgid "Installation Complete"
msgstr "Namestitev je konХana"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "Nastavitev LILO"
@@ -633,176 +516,173 @@ msgstr "Preklicano"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "Ne morem se vrniti na prej╧nji korak. Poskusiti boste morali ponovno."
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "napaka pri pisanju v datoteko %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "napaka pri pisanju v datoteko %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Ustvarjam zagonski disk..."
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Formatiranje datoteХnega sistema"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "Ustvarjamo datoteХni sistem ext2 na /dev%s..."
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Ustvarjam zagonski disk..."
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Preostanek"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "Po╧iljam zahtevo po podatkih IP..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "ni predloga"
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "Vse"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "napaka pri pisanju v datoteko %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Preostanek"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "I╧Хem pakete za nadgradnjo..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr "Obdelujemo"
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Preiskujemo datoteke pred namestitvijo..."
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Preostanek"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr "Ponovno gradim bazo podataka o RPM..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
-msgstr ""
-"Ponovna gradnja baze podatkov o RPM neuspe╧na. Morda zmanjkuje prostora na "
-"disku?"
+msgstr "Ponovna gradnja baze podatkov o RPM neuspe╧na. Morda zmanjkuje prostora na disku?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Name╧Хamo pakete"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
"Ka╬e, da za pakete, ki ste jih izbrali, ni dovolj prostora na disku.\n"
"Potrebujete veХ prostora na naslednjem datoteХnem sistemu:\n"
"\n"
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "ToХka priklopa:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr "Potreben prostor"
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "Prostor na disku"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Namestitev"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "Preizkus te nastavitve"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "GrafiХna kartica"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Video RAM"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Stre╬nik"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Ne moremo nalo╬iti drugostopenjskega pomnilni╧kega diska: %s"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Monitor"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "Obseg horizontalnih frekvenc"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "Obseg vertikalnih frekvenc"
@@ -831,8 +711,7 @@ msgstr "Geslo"
msgid "Password (confirm)"
msgstr "Geslo (potrditev)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Polno ime"
@@ -840,15 +719,11 @@ msgstr "Polno ime"
msgid "Add"
msgstr "Dodaj"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Uredi"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Pobri╧i"
@@ -964,8 +839,7 @@ msgstr "Delovna postaja GNOME"
msgid "KDE Workstation"
msgstr "Delovna postaja KDE"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Stre╬nik"
@@ -1009,7 +883,7 @@ msgstr "RazliХica"
msgid "Test your selection here:"
msgstr "Tukaj preverite va╧o izbiro:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Kateri jezik boste uporabljali med namestitvenim postopkom?"
@@ -1049,19 +923,15 @@ msgstr "Izdelava zagonske diskete"
msgid "Do not install LILO"
msgstr "Ne name╧Хaj zaganjalnika LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Privzeta"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Vrsta razdelitve"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Zagonska oznaka"
@@ -1069,43 +939,43 @@ msgstr "Zagonska oznaka"
msgid "Emulate 3 Buttons"
msgstr "Opona╧anje treh tipk"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Nastavitev z uporabo DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Aktivacija ob zagonu"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "Naslov IP"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Omre╬na maska"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Mre╬a"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Oddajanje"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Prehod"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "Primarni DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "Sekundarni DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "Terciarni DNS"
@@ -1190,13 +1060,8 @@ msgid "Low Memory"
msgstr "Premajhen pomnilnik"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Ker nimate dovolj pomnilnika, moramo takoj ugasniti izmenjalni prostor. Za "
-"to bomo morali takoj zapisati razdelitveno tabelo na disk. Je to v redu?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Ker nimate dovolj pomnilnika, moramo takoj ugasniti izmenjalni prostor. Za to bomo morali takoj zapisati razdelitveno tabelo na disk. Je to v redu?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1207,21 +1072,17 @@ msgstr "Samodejna razdelitev"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"хe ne ╬elite storiti tega, lahko nadaljujete z namestitvijo tako, da roХno "
-"razdelite disk, ali pa se lahko vrnete in izberete popolnoma prilagojeno "
-"namestitev."
+"хe ne ╬elite storiti tega, lahko nadaljujete z namestitvijo tako, da roХno razdelite disk, ali pa se lahko vrnete in izberete popolnoma prilagojeno namestitev."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Odstranitev podatkov"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "RoХna razdelitev"
@@ -1282,7 +1143,7 @@ msgstr "Obseg vertikalnih frekvenc"
msgid "Test failed"
msgstr "Preizkus neuspe╧en"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "Prilagoditev nastavitve X"
@@ -1290,63 +1151,43 @@ msgstr "Prilagoditev nastavitve X"
msgid "Bits per Pixel"
msgstr "Bitov na piko"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Preizkus te nastavitve"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"V veХini primerov lahko samodejno preizkusimo grafiХno strojno opremo in "
-"ugotovimo najbolj╧e nastavitve za va╧ zaslon."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "V veХini primerov lahko samodejno preizkusimo grafiХno strojno opremo in ugotovimo najbolj╧e nastavitve za va╧ zaslon."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "Izidi samodejnega preizkusa:"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"Monitorja ni mogoХe samodejno zaznati. Prosim, izberite ga iz spodnjega "
-"seznama:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "Monitorja ni mogoХe samodejno zaznati. Prosim, izberite ga iz spodnjega seznama:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Uporaba grafiХne prijave"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "Preskok nastavitve X"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"Nekateri sistemi morajo v Хasu zagona podati jedru posebne parametre, Хe naj "
-"sistem deluje pravilno. хe morate podati jedru posebne zagonske parametre, "
-"jih zdaj vstavite. хe to ni potrebno ali pa niste prepriХani, pustite to "
-"polje prazno."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "Nekateri sistemi morajo v Хasu zagona podati jedru posebne parametre, Хe naj sistem deluje pravilno. хe morate podati jedru posebne zagonske parametre, jih zdaj vstavite. хe to ni potrebno ali pa niste prepriХani, pustite to polje prazno."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Kam bi radi namestili zaganjalnik sistema?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Pobri╧i"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "PrekliХi"
@@ -1355,24 +1196,12 @@ msgid "Edit Boot Label"
msgstr "Uredi zagonsko oznako"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Zagonski upravljalnik, ki ga uporablja Red Hat, lahko zaganja tudi druge "
-"operacijske sisteme. DoloХiti morate, s katerih razdelitev bi radi zaganjali "
-"sistem in kak╧ne oznake bi radi uporabljali za njih."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Zagonski upravljalnik, ki ga uporablja Red Hat, lahko zaganja tudi druge operacijske sisteme. DoloХiti morate, s katerih razdelitev bi radi zaganjali sistem in kak╧ne oznake bi radi uporabljali za njih."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Nekateri paketi, ki ste jih izbrali za namestitev, potrebujejo pakete, ki "
-"jih niste izbrali. хe le pritisnete \"V redu\", bodo vsi ti potrebni paketi "
-"samodejno name╧Хeni."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Nekateri paketi, ki ste jih izbrali za namestitev, potrebujejo pakete, ki jih niste izbrali. хe le pritisnete \"V redu\", bodo vsi ti potrebni paketi samodejno name╧Хeni."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1380,32 +1209,19 @@ msgstr "Prikrojitev diska"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"хarovnik za diske je orodje za razdelitev in vzpostavljanje toХk priklopa. "
-"Zasnovano je tako, da ga bo la╬je uporabljati kot obiХajni program za "
-"razdelitev diska za Linux, fdisk, in da bo bolj zmogljivo. Vendar obstajajo "
-"doloХeni primeri, kjer je lahko fdisk bolj za╬elen.\n"
+"хarovnik za diske je orodje za razdelitev in vzpostavljanje toХk priklopa. Zasnovano je tako, da ga bo la╬je uporabljati kot obiХajni program za razdelitev diska za Linux, fdisk, in da bo bolj zmogljivo. Vendar obstajajo doloХeni primeri, kjer je lahko fdisk bolj za╬elen.\n"
"\n"
"Katero orodje ╬elite uporabljati?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Za namestitev Red Hat Linuxa, morate imeti zanj posveХeno najmanj eno "
-"razdelitev velikosti 150 MB. PriporoХamo vam, da je ta razdelitev na enem od "
-"prvih dveh diskov v va╧em sistemu, da boste lahko zaganjali Linux z "
-"nalagalnikom LILO."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Za namestitev Red Hat Linuxa, morate imeti zanj posveХeno najmanj eno razdelitev velikosti 150 MB. PriporoХamo vam, da je ta razdelitev na enem od prvih dveh diskov v va╧em sistemu, da boste lahko zaganjali Linux z nalagalnikom LILO."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Opravljeno"
@@ -1414,16 +1230,8 @@ msgid "Continue"
msgstr "Nadaljevanje"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Katere razdelitve bi ╬eleli formatirati? MoХno priporoХamo formatiranje vseh "
-"sistemskih razdelitev, vkljuХno z /, /usr in /var. Formatiranje razdelitev "
-"/home ali /usr/local ni potrebno, Хe so bile nastavljene med prej╧no "
-"namestitvijo."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Katere razdelitve bi ╬eleli formatirati? MoХno priporoХamo formatiranje vseh sistemskih razdelitev, vkljuХno z /, /usr in /var. Formatiranje razdelitev /home ali /usr/local ni potrebno, Хe so bile nastavljene med prej╧no namestitvijo."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1443,14 +1251,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Izberite geslo roota. Morate ga vpisati dvakrat, da izkljuХite mo╬nost "
-"tipkarske napake. Ne pozabite, da je korensko geslo kritiХen del varnosti "
-"sistema!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Izberite geslo roota. Morate ga vpisati dvakrat, da izkljuХite mo╬nost tipkarske napake. Ne pozabite, da je korensko geslo kritiХen del varnosti sistema!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1501,24 +1303,12 @@ msgid "This user id already exists. Choose another."
msgstr "Uporabnik s to identiteto ╬e obstaja. Izberite drugega."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"Za veХino dela na sistemu bi morali uporabljati obiХajni uporabni╧ki raХun. "
-"хe ne boste venomer uporabljali raХuna root, bo manj verjetno, da boste po "
-"pomoti pokvarili sistemske nastavitve."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "Za veХino dela na sistemu bi morali uporabljati obiХajni uporabni╧ki raХun. хe ne boste venomer uporabljali raХuna root, bo manj verjetno, da boste po pomoti pokvarili sistemske nastavitve."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"Kateri uporabni╧ki raХun bi radi imeli v sistemu? Za obiХajno delo naj bi "
-"imeli vsaj en raХun, razliХen od root, veХuporabni╧ki sistemi pa imajo lahko "
-"name╧Хeno poljubno ╧tevilo raХunov."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "Kateri uporabni╧ki raХun bi radi imeli v sistemu? Za obiХajno delo naj bi imeli vsaj en raХun, razliХen od root, veХuporabni╧ki sistemi pa imajo lahko name╧Хeno poljubno ╧tevilo raХunov."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1556,8 +1346,7 @@ msgstr "ali pa uporabite:"
msgid "Request server via broadcast"
msgstr "Zahtevajte stre╬nik z oddajanjem"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Nepravilna toХka priklopa"
@@ -1626,46 +1415,26 @@ msgid "Too Many Drives"
msgstr "PreveХ pogonov"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Imate veХ diskov kot jih podpira ta program. Prosim uporabite obiХajni "
-"program fdisk za nastavitev va╧ih diskov in prosim obvestite Red Hat "
-"Software, da ste videli to sporoХilo."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Imate veХ diskov kot jih podpira ta program. Prosim uporabite obiХajni program fdisk za nastavitev va╧ih diskov in prosim obvestite Red Hat Software, da ste videli to sporoХilo."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Noben pogon ni bil najden"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Pri╧lo je do napake - nismo na╧li veljavne naprave, na kateri bi lahko "
-"ustvarili nove datoteХne sisteme. Prosim preverite va╧o strojno opremo za "
-"razlog te te╬ave."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Pri╧lo je do napake - nismo na╧li veljavne naprave, na kateri bi lahko ustvarili nove datoteХne sisteme. Prosim preverite va╧o strojno opremo za razlog te te╬ave."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Med branjem razdelitvene tabele blokovne naprave je pri╧lo do napake. Napaka "
-"je bila"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Med branjem razdelitvene tabele blokovne naprave je pri╧lo do napake. Napaka je bila"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Razdelitvena tabela naprave %s je po╧kodovana. хe ╬elite ustvarjati na njej "
-"nove razdelitve, jo morate inicializirati, kar bo povzroХilo izgubo VSEH "
-"PODATKOV na tem pogonu."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Razdelitvena tabela naprave %s je po╧kodovana. хe ╬elite ustvarjati na njej nove razdelitve, jo morate inicializirati, kar bo povzroХilo izgubo VSEH PODATKOV na tem pogonu."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1688,14 +1457,8 @@ msgid "BSD Disklabel"
msgstr "Oznaka diska BSD"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"Najden je bil disk z oznako diska BSD. Namestitev Red Hat podpira oznake "
-"diska BSD le v naХinu samo za branje, zato morate za stroje z oznakami diska "
-"BSD uporabiti prilagojeno namestitev in fdisk (ne Disk Druida)."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "Najden je bil disk z oznako diska BSD. Namestitev Red Hat podpira oznake diska BSD le v naХinu samo za branje, zato morate za stroje z oznakami diska BSD uporabiti prilagojeno namestitev in fdisk (ne Disk Druida)."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1722,10 +1485,7 @@ msgstr "Odstranitev razdelitve"
msgid "Are you sure you want to delete this partition?"
msgstr "Ste prepriХani, da ╬elite odstraniti to razdelitev?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Uredi razdelitev"
@@ -1765,58 +1525,38 @@ msgstr "Vrsta razdelitve:"
msgid "Allowable Drives:"
msgstr "Dovoljeni diski:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Ni toХke priklopa"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Niste izbrali toХke priklopa za to razdelitev. Ste prepriХani, da ╬elite to "
-"storiti?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Niste izbrali toХke priklopa za to razdelitev. Ste prepriХani, da ╬elite to storiti?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Napaka zaradi toХke priklopa"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Zahtevana toХka priklopa je bodisi nedovoljena pot ali je ╬e v uporabi. "
-"Prosim izberite veljavno toХko priklopa."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Zahtevana toХka priklopa je bodisi nedovoljena pot ali je ╬e v uporabi. Prosim izberite veljavno toХko priklopa."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "Napaka zaradi velikosti"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"Zahtevana velikost ni dovoljena. Proverite, da je velikost veХja od niХ (0) "
-"in da je navedena v decimalnem zapisu (v bazi 10)."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "Zahtevana velikost ni dovoljena. Proverite, da je velikost veХja od niХ (0) in da je navedena v decimalnem zapisu (v bazi 10)."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Napaka zaradi velikosti izmenjalnega prostora"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Napravili ste preveliko izmenjalno razdelitev. Maksimalna velikost te "
-"razdelitve je %ld megabajtov."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Napravili ste preveliko izmenjalno razdelitev. Maksimalna velikost te razdelitve je %ld megabajtov."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1824,8 +1564,7 @@ msgstr "Ni omejitev za pogone RAID"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
"Nastavili ste razdelitev RAID ne da bi omejili razdelitev na en sam disk.\n"
@@ -1836,12 +1575,8 @@ msgid "Close"
msgstr "Zapri"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Nastavili ste razdelitev RAID ne da bi omejili razdelitev na en sam disk. "
-"Prosim, izberite disk na katerega boste omejili razdelitev."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Nastavili ste razdelitev RAID ne da bi omejili razdelitev na en sam disk. Prosim, izberite disk na katerega boste omejili razdelitev."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1851,30 +1586,17 @@ msgstr "Vnos za RAID nepopoln"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"Naprava RAID /dev/%s zdaj vsebuje nedodeljene razdelitve. Naprava RAID bo "
-"razbita na njene sestavne razdelitve. Prosim, preuredite napravo RAID z "
-"dodeljenimi razdelitvami."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "Naprava RAID /dev/%s zdaj vsebuje nedodeljene razdelitve. Naprava RAID bo razbita na njene sestavne razdelitve. Prosim, preuredite napravo RAID z dodeljenimi razdelitvami."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Nedodeljene razdelitve"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Trenutno spisek zahtevanih razdelitev vsebuje nedodeljene razdelitve. Te so "
-"prikazane spodaj, skupaj z razlogom, zakaj niso bile dodeljene."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Trenutno spisek zahtevanih razdelitev vsebuje nedodeljene razdelitve. Te so prikazane spodaj, skupaj z razlogom, zakaj niso bile dodeljene."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1897,24 +1619,16 @@ msgid "You have not selected a mount point. A mount point is required."
msgstr "Niste izbrali toХke priklopa, ki je nujno potrebna."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Zahtevana toХka priklopa je uporabljena. Prosim, izberite veljavno toХko "
-"priklopa."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Zahtevana toХka priklopa je uporabljena. Prosim, izberite veljavno toХko priklopa."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "Opozorilo zaganjanja z RAID"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Napravili ste, da se bo naprava RAID priklopila kot zagonska razdelitev. "
-"Prosim, preverite, da so vse sestavne razdelitve zagonske."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Napravili ste, da se bo naprava RAID priklopila kot zagonska razdelitev. Prosim, preverite, da so vse sestavne razdelitve zagonske."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1930,21 +1644,15 @@ msgstr "Uporabljena naprava RAID"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"Naprava RAID \"/dev/%s\" je ╬e nastavljena kot naprava RAID. Prosim, "
-"izberite drugo."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "Naprava RAID \"/dev/%s\" je ╬e nastavljena kot naprava RAID. Prosim, izberite drugo."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Ni dovolj razdelitev"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr "Niste nastavili dovolj razdelitev za vrsto RAID, ki ste jo izbrali."
#: ../libfdisk/gnomefsedit.c:1942
@@ -1957,14 +1665,8 @@ msgstr "Zagonske razdelitve (/boot) so dovoljene le z RAID-1."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"Razdelitev %s je ╬e obstojeХa razdelitev v naboru razdelitev za to napravo "
-"RAID. ToХka priklopa je nastavljena na /boot. Ste prepriХani, da je s te "
-"razdelitve mogoХe zagnati sistem?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "Razdelitev %s je ╬e obstojeХa razdelitev v naboru razdelitev za to napravo RAID. ToХka priklopa je nastavljena na /boot. Ste prepriХani, da je s te razdelitve mogoХe zagnati sistem?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2028,12 +1730,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "Obstajajo nerazporejene razdelitve..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Eni od razdelitev Linuxa (ext2) morate dodeliti korensko razdelitev (/) ali "
-"razdelitev RAID, da se namestitev lahko nadaljuje."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Eni od razdelitev Linuxa (ext2) morate dodeliti korensko razdelitev (/) ali razdelitev RAID, da se namestitev lahko nadaljuje."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2084,12 +1782,8 @@ msgid "No Root Partition"
msgstr "Korenske razdelitve ni"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Eni od razdelitev tipa Linux morate dodeliti korensko (/) razdelitev, da se "
-"lahko namestitev nadaljuje."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Eni od razdelitev tipa Linux morate dodeliti korensko (/) razdelitev, da se lahko namestitev nadaljuje."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2097,18 +1791,15 @@ msgstr "Izmenjalne razdelitve ni"
#: ../libfdisk/newtfsedit.c:1446
msgid "You must assign a swap partition for the install to proceed."
-msgstr ""
-"Dodeliti morate izmenjalno razdelitev, da se lahko namestitev nadaljuje."
+msgstr "Dodeliti morate izmenjalno razdelitev, da se lahko namestitev nadaljuje."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"╘e nekaj nedodeljenih razdelitev je ostalo. хe zapustimo program, ne bodo "
-"zapisane na disk.\n"
+"╘e nekaj nedodeljenih razdelitev je ostalo. хe zapustimo program, ne bodo zapisane na disk.\n"
"\n"
"Naj res zapustimo program?"
@@ -2145,21 +1836,14 @@ msgid "Miscellaneous"
msgstr "RazliХno"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Tem modulu lahko podate parametre, ki vplivajo na njegovo obna╧anje. хe ne "
-"veste kak╧ne parametre bi podali, le preskoХite ta zaslon s pritiskom gumba "
-"\"V redu\"."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Tem modulu lahko podate parametre, ki vplivajo na njegovo obna╧anje. хe ne veste kak╧ne parametre bi podali, le preskoХite ta zaslon s pritiskom gumba \"V redu\"."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "Parametri modulov"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "Naprave"
@@ -2172,20 +1856,12 @@ msgid "Failed to mount floppy disk."
msgstr "Ne moremo priklopiti diskete."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"Disketa, ki ste jo vstavili, ni veljavna disketa z gonilnikom za to izdajo "
-"Red Hat Linuxa."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "Disketa, ki ste jo vstavili, ni veljavna disketa z gonilnikom za to izdajo Red Hat Linuxa."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Kateri gonilnik naj vzamem? хe gonilnika, ki ga potrebujete, ni v tem "
-"seznamu in imate posebno disketo z gonilnikom, prosim pritisnite F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Kateri gonilnik naj vzamem? хe gonilnika, ki ga potrebujete, ni v tem seznamu in imate posebno disketo z gonilnikom, prosim pritisnite F2."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2214,15 +1890,15 @@ msgstr "Napaka pri branju vsebine datoteke za hitri zagon %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Napaka v vrstici %d datoteke za hitri zagon %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "Izberite jezik"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Vrsta tipkovnice"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Kak╧no tipkovnico imate?"
@@ -2238,136 +1914,116 @@ msgstr "Slika NFS"
msgid "Hard drive"
msgstr "Trdi disk"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Dobrodo╧li v Red Hat Linuxu"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> med elementi | <Space> izbere | <F12> naslednji zaslon"
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> med elementi | <Space> izbere | <F12> naslednji zaslon"
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Kak╧no napravo bi radi dodali?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "V sistemu so bile najdene naslednje naprave:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "Dodaj napravo"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"Za va╧ sistem ╧e ni nalo╬enih posebnih gonilnikov. Bi jih radi nalo╬ili "
-"zdaj?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "Za va╧ sistem ╧e ni nalo╬enih posebnih gonilnikov. Bi jih radi nalo╬ili zdaj?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "Nalaganje"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "Nalagamo drugo stopnjo pomnilni╧kega diska..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Napaka pri nalaganju pomnilni╧kega diska."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Trdi diski"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"Ni videti, da bi imeli na sistemu trde diske! Bi radi nastavili dodatne "
-"naprave?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "Ni videti, da bi imeli na sistemu trde diske! Bi radi nastavili dodatne naprave?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Na kateri razdelitvi in v katerem imeniku se nahajata imenika RedHat/RPMS in "
-"RedHat/base? хe ne vidite diskovnega pogona, ki ste ga tukaj navedli, "
-"pritisnite F2 za nastavitev dodatnih naprav."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Na kateri razdelitvi in v katerem imeniku se nahajata imenika RedHat/RPMS in RedHat/base? хe ne vidite diskovnega pogona, ki ste ga tukaj navedli, pritisnite F2 za nastavitev dodatnih naprav."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Imenik z Red Hatom:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Izberite razdelitev"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "Videti je, da naprava %s ne vsebuje namestitvenega drevesa Red Hat,"
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"CD-ROM-a z Red Hat Linuxom ne najdem v nobenem od va╧ih pogonov CD-ROM. "
-"Prosim vstavite CD Red Hata in pritisnite \"V redu\" za ponoven poskus."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "CD-ROM-a z Red Hat Linuxom ne najdem v nobenem od va╧ih pogonov CD-ROM. Prosim vstavite CD Red Hata in pritisnite \"V redu\" za ponoven poskus."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Ni videti, da bi ta imenik vseboval namestitveno drevo Red Hat."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Priklop imenika v stre╬nik ni uspel"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Ne moremo nalo╬iti drugostopenjskega pomnilni╧kega diska: %s"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "Metoda re╧itve"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "Metoda namestitve"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Kak╧ne vrste nosilec vsebuje re╧ilno sliko?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Katero vrsto nosilca vsebuje paket, ki bi ga radi namestili?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Ne morem najti ks.cfg na zagonski disketi."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "Kartica za PC"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "Inicializiramo kartice za PC..."
@@ -2398,12 +2054,8 @@ msgstr ""
" za va╧o arhitekturo"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Prosim vnesite nastavitev IP za ta stroj. Vsako postavko vnesite kot naslov "
-"IP v zapisu decimalnih ╧tevilk, loХenih s piko (na primer 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Prosim vnesite nastavitev IP za ta stroj. Vsako postavko vnesite kot naslov IP v zapisu decimalnih ╧tevilk, loХenih s piko (na primer 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2467,11 +2119,8 @@ msgid "Network device"
msgstr "Omre╬na naprava"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> med elementi | <Space> izbere | <F12> naslednji zaslon"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> med elementi | <Space> izbere | <F12> naslednji zaslon"
#: ../loader/net.c:699
#, c-format
@@ -2551,22 +2200,12 @@ msgid "You must enter a directory."
msgstr "Vnesti morate imenik."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"хe uporabljate neanonimni FTP, v spodnje polje vnesite ime raХuna in geslo. "
-"хe uporabljate nadomestni stre╬nik za FTP (proxy), vnesite ime nadomestnega "
-"stre╬nika FTP, ki ga uporabljate."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "хe uporabljate neanonimni FTP, v spodnje polje vnesite ime raХuna in geslo. хe uporabljate nadomestni stre╬nik za FTP (proxy), vnesite ime nadomestnega stre╬nika FTP, ki ga uporabljate."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"хe uporabljate nadomestni stre╬nik za HTTP (proxy), vnesite ime nadomestnega "
-"stre╬nika HTTP, ki ga uporabljate."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "хe uporabljate nadomestni stre╬nik za HTTP (proxy), vnesite ime nadomestnega stre╬nika HTTP, ki ga uporabljate."
#: ../loader/urls.c:295
msgid "Account name:"
@@ -2592,32 +2231,17 @@ msgstr "Vrata nadomestnega HTTP:"
msgid "Loading SCSI driver"
msgstr "Nalagam gonilnik za SCSI"
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "Med branjem blokovne naprave %s je bil najden disk s zmaliХeno oznako Suna. "
-#~ "V to napravo morate s fdiskom ustvariti in zapisati novo oznako."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "Med branjem blokovne naprave %s je bil najden disk s zmaliХeno oznako Suna. V to napravo morate s fdiskom ustvariti in zapisati novo oznako."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "ZmaliХena oznaka diska Sun"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Eni od domorodnih razdelitev Linuxa (ext2) ali razdelitvi RAID-1 morate "
-#~ "dodeliti zagonsko razdelitev (/boot), da se namestitev lahko nadaljuje."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Eni od domorodnih razdelitev Linuxa (ext2) ali razdelitvi RAID-1 morate dodeliti zagonsko razdelitev (/boot), da se namestitev lahko nadaljuje."
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Ker ste dodelili korensko razdelitev (/) na napravo RAID, morate tudi "
-#~ "dodeliti zagonsko razdelitev (/boot) domorodni razdelitvi Linuxa (ext2) ali "
-#~ "razdelitvi RAID-1, da se namestitev lahko nadaljuje."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Ker ste dodelili korensko razdelitev (/) na napravo RAID, morate tudi dodeliti zagonsko razdelitev (/boot) domorodni razdelitvi Linuxa (ext2) ali razdelitvi RAID-1, da se namestitev lahko nadaljuje."
#~ msgid "Use fdisk to format drives"
#~ msgstr "Uporabite fdisk za formatiranje diskov"
@@ -2679,29 +2303,11 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "I can't find the device anywhere on your system!"
#~ msgstr "Naprave ni mo╬no najti v sistemu!"
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "VХasih potrebuje gonilnik %s dodatne informacije, da deluje pravilno, Хeprav "
-#~ "veХinoma deluje Хisto v redu tudi brez njih. Naj roХno podamo dodatna "
-#~ "doloХila, ali dovolimo gonilniku, da sam poskusi poiskati potrebne "
-#~ "informacije? ObХasno avtomatiХna detekcija zaustavi raХunalnik, tako da ga "
-#~ "je potrebno ponovno zagnati, ne bi pa smela napraviti nobene ╧kode."
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "VХasih potrebuje gonilnik %s dodatne informacije, da deluje pravilno, Хeprav veХinoma deluje Хisto v redu tudi brez njih. Naj roХno podamo dodatna doloХila, ali dovolimo gonilniku, da sam poskusi poiskati potrebne informacije? ObХasno avtomatiХna detekcija zaustavi raХunalnik, tako da ga je potrebno ponovno zagnati, ne bi pa smela napraviti nobene ╧kode."
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "Gonilnik %s dostikrat potrebuje dodatne informacije o na╧i strojni opremi. "
-#~ "хe ╬elite, bomo poskusili z nekaj ustaljenimi vrednostmi za iskane "
-#~ "parametre. Postopek lahko ustavi raХunalnik, tako da ga je potrebno ponovno "
-#~ "zagnati, ne bi pa smel napraviti nobene ╧kode."
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "Gonilnik %s dostikrat potrebuje dodatne informacije o na╧i strojni opremi. хe ╬elite, bomo poskusili z nekaj ustaljenimi vrednostmi za iskane parametre. Postopek lahko ustavi raХunalnik, tako da ga je potrebno ponovno zagnati, ne bi pa smel napraviti nobene ╧kode."
#~ msgid "Module options:"
#~ msgstr "Nastavitve modulov:"
@@ -2763,12 +2369,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "PCMCIA Disk"
#~ msgstr "Disk PCMCIA"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Priklop diskete ni uspel. Prosimo vstavite v disketnik Red Hat PCMCIA disk "
-#~ "ali pa prekinite namestitev in izberite drug naХin namestitve."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Priklop diskete ni uspel. Prosimo vstavite v disketnik Red Hat PCMCIA disk ali pa prekinite namestitev in izberite drug naХin namestitve."
#~ msgid "Loading PCMCIA Support"
#~ msgstr "Nalagamo podporo za PCMCIA"
@@ -2776,12 +2378,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "Supplemental Disk"
#~ msgstr "Dodatni disk"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Priklop diskete ni uspel. Prosimo vstavite v disketnik Red Hat Supplementary "
-#~ "Install disk ali pa prekinite namestitev in izberite drug naХin namestitve."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Priklop diskete ni uspel. Prosimo vstavite v disketnik Red Hat Supplementary Install disk ali pa prekinite namestitev in izberite drug naХin namestitve."
#~ msgid "Loading Supplemental Disk..."
#~ msgstr "Nalagamo nadomestno disketo..."
@@ -2789,29 +2387,14 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "Driver Disk"
#~ msgstr "Disketa z gonilniki"
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "Ta metoda namestitve zahteva disketo z gonilniki. Prosim odstranite "
-#~ "nadomestno disketo, ki je trenutno v pogonu in jo zamenjajte z namestitveno "
-#~ "disketo Red Hat."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "Ta metoda namestitve zahteva disketo z gonilniki. Prosim odstranite nadomestno disketo, ki je trenutno v pogonu in jo zamenjajte z namestitveno disketo Red Hat."
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Priklop diskete ni uspel. Prosim vstavite disketo z moduli Red Hat, ali "
-#~ "izberite ,Prekini` in izberite drugaХen namestitveni postopek."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Priklop diskete ni uspel. Prosim vstavite disketo z moduli Red Hat, ali izberite ,Prekini` in izberite drugaХen namestitveni postopek."
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "Za to namestitveno metodo rabimo dve dodatni disketi. Prosim odstranite "
-#~ "zagonsko disketo, ki je trenutno v va╧em disketniku, in jo nadomestite z "
-#~ "nadomestno namestitveno disketo Red Hat."
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "Za to namestitveno metodo rabimo dve dodatni disketi. Prosim odstranite zagonsko disketo, ki je trenutno v va╧em disketniku, in jo nadomestite z nadomestno namestitveno disketo Red Hat."
#~ msgid "hd command"
#~ msgstr "ukaz disku"
@@ -2864,14 +2447,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "mount failed: %s"
#~ msgstr "neuspe╧en priklop: %s"
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "Particijska tabela naprave %s je po╧kodovana. хe ╬elite ustvarjati na njej "
-#~ "nove particije, jo morate inicializirati. Lahko navedete \"zerombr yes\" v "
-#~ "datoteki za hitri zagon in to storite samodejno."
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "Particijska tabela naprave %s je po╧kodovana. хe ╬elite ustvarjati na njej nove particije, jo morate inicializirati. Lahko navedete \"zerombr yes\" v datoteki za hitri zagon in to storite samodejno."
#~ msgid "Zero Partition Table"
#~ msgstr "NiХta particijska tabela"
@@ -2881,8 +2458,7 @@ msgstr "Nalagam gonilnik za SCSI"
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "slab argument 'zerombr' ukaza za hitri zagon: %s.\n"
-#~ "Biti mora 'on', '1' ali 'yes', da omogoХite, ali 'off', '0' ali 'no' da "
-#~ "onemogoХite."
+#~ "Biti mora 'on', '1' ali 'yes', da omogoХite, ali 'off', '0' ali 'no' da onemogoХite."
#~ msgid "Clear Partition Command"
#~ msgstr "Brisanje ukaza particioniranja"
@@ -2899,12 +2475,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "Option Ignored"
#~ msgstr "Prezrta izbira"
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "Izbira --maxsize za particijo %s je prezrta. Preverite, da ni morda veХja od "
-#~ "izbire --size."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "Izbira --maxsize za particijo %s je prezrta. Preverite, da ni morda veХja od izbire --size."
#~ msgid "The mount point %s is already in use."
#~ msgstr "ToХka priklopa %s se ╬e uporablja."
@@ -2921,13 +2493,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "There is not enough disk space for this type of installation."
#~ msgstr "Za to vrsto namestitve nimate dovolj prostora na disku."
-#~ msgid ""
-#~ "There are partitions that can be resized nondestructively to make room for "
-#~ "your Red Hat Linux installation. Do you want to resize these partitions now?"
-#~ msgstr ""
-#~ "Obstajajo particije, katerih velikost se lahko neuniХevalno spremeni in s se "
-#~ "tem naredi prostor za va╧o namestitev Red Hat Linuxa. Ali ╬elite zdaj "
-#~ "spremeniti velikost teh particij?"
+#~ msgid "There are partitions that can be resized nondestructively to make room for your Red Hat Linux installation. Do you want to resize these partitions now?"
+#~ msgstr "Obstajajo particije, katerih velikost se lahko neuniХevalno spremeni in s se tem naredi prostor za va╧o namestitev Red Hat Linuxa. Ali ╬elite zdaj spremeniti velikost teh particij?"
#~ msgid "Success"
#~ msgstr "Uspeh"
@@ -2986,38 +2553,23 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "Scanning hard drives..."
#~ msgstr "Pregledujem diske..."
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "Nimate dostopnih diskov! Verjetno ste pozabili nastaviti krmilnik SCSI."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "Nimate dostopnih diskov! Verjetno ste pozabili nastaviti krmilnik SCSI."
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "Za namestitev Red Hat Linuxa, morate imeti zanj posveХeno najmanj eno "
-#~ "particijo velikosti 150 MB."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "Za namestitev Red Hat Linuxa, morate imeti zanj posveХeno najmanj eno particijo velikosti 150 MB."
#~ msgid "Reboot Needed"
#~ msgstr "Potreben ponovni zagon"
#~ msgid ""
-#~ "The kernel is unable to read your new partitioning information, probably "
-#~ "because you modified extended partitions. While this is not critical, you "
-#~ "must reboot your machine before proceeding. Insert the Red Hat boot disk now "
-#~ "and press Return to reboot your system.\n"
+#~ "The kernel is unable to read your new partitioning information, probably because you modified extended partitions. While this is not critical, you must reboot your machine before proceeding. Insert the Red Hat boot disk now and press Return to reboot your system.\n"
#~ "\n"
-#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an "
-#~ "empty SCSI drive can also cause this problem."
+#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an empty SCSI drive can also cause this problem."
#~ msgstr ""
-#~ "Jedro ne more prebrati va╧e nove razdelitvene informacije, verjetno zato, "
-#~ "ker ste spremenili raz╧irjene razdelitve. хeprav to ni kritiХno, morate pred "
-#~ "nadaljevanjem ponovno zagnati stroj. Vstavite zagonsko disketo za Red Hat in "
-#~ "pritisnite Return za ponoven zagon sistema.\n"
+#~ "Jedro ne more prebrati va╧e nove razdelitvene informacije, verjetno zato, ker ste spremenili raz╧irjene razdelitve. хeprav to ni kritiХno, morate pred nadaljevanjem ponovno zagnati stroj. Vstavite zagonsko disketo za Red Hat in pritisnite Return za ponoven zagon sistema.\n"
#~ "\n"
-#~ "хe imate pogon ZIP ali JAZ, se prepriХajte, da je v pogonu disk, saj lahko "
-#~ "to te╬avo povzroХi tudi prazen pogon SCSI."
+#~ "хe imate pogon ZIP ali JAZ, se prepriХajte, da je v pogonu disk, saj lahko to te╬avo povzroХi tudi prazen pogon SCSI."
#~ msgid "lilo command"
#~ msgstr "ukaz za lilo"
@@ -3028,27 +2580,14 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "PCMCIA Support"
#~ msgstr "Podpora za PCMCIA"
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "Ali morate med namestitvijo uporabljati naprave PCMCIA? Odgovorite nikalno, "
-#~ "Хe potrebujete podporo PCMCIA le po namestitvi. хe name╧Хate Red Hat Linux "
-#~ "na prenosnika z vgrajenim CD-ROM-om, vam ni treba izbrati podpore PCMCIA za "
-#~ "Хas namestitve."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "Ali morate med namestitvijo uporabljati naprave PCMCIA? Odgovorite nikalno, Хe potrebujete podporo PCMCIA le po namestitvi. хe name╧Хate Red Hat Linux na prenosnika z vgrajenim CD-ROM-om, vam ni treba izbrati podpore PCMCIA za Хas namestitve."
#~ msgid "PCMCIA Support Disk"
#~ msgstr "Podporna disketa za PCMCIA"
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "Podpora za PCMCIA zahteva uporabo podporne diskete za PCMCIA. Prosim, "
-#~ "odstranite zagonsko disketo, ki jo imate trenutno v disketniku, in jo "
-#~ "nadomestite s podporno disketo za Red Hat PCMCIA."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "Podpora za PCMCIA zahteva uporabo podporne diskete za PCMCIA. Prosim, odstranite zagonsko disketo, ki jo imate trenutno v disketniku, in jo nadomestite s podporno disketo za Red Hat PCMCIA."
#~ msgid "Starting PCMCIA services..."
#~ msgstr "Zaganjam storitve PCMCIA ..."
@@ -3127,14 +2666,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "Upgrade log"
#~ msgstr "Dnevnik nadgradnje"
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "Popoln dnevnik nadgradenj boste na╧li v datoteki /tmp/upgrade.log, ko se bo "
-#~ "nadgradnja konХala. Po ponovnem zagonu ga, prosim, preberite in se "
-#~ "prepriХajte, da so nastavitvene datoteke pravilno osve╬ene."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "Popoln dnevnik nadgradenj boste na╧li v datoteki /tmp/upgrade.log, ko se bo nadgradnja konХala. Po ponovnem zagonu ga, prosim, preberite in se prepriХajte, da so nastavitvene datoteke pravilno osve╬ene."
#~ msgid "rootpw command"
#~ msgstr "ukaz rootpw"
@@ -3151,19 +2684,11 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "Installation Path"
#~ msgstr "Pot namestitve"
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "Bi radi namestili nov sistem ali nadgrajujete sistem, ki ╬e vsebuje Red Hat "
-#~ "Linux 2.0 ali poznej╧ega?"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "Bi radi namestili nov sistem ali nadgrajujete sistem, ki ╬e vsebuje Red Hat Linux 2.0 ali poznej╧ega?"
-#~ msgid ""
-#~ "What type of machine are you installing? For maximum flexibility, choose "
-#~ "\"Custom\"."
-#~ msgstr ""
-#~ "Katero vrsto stroja name╧Хate? Za najveХjo pro╬nost izberite \"Uporabni╧ko "
-#~ "prilagojen izbor\"."
+#~ msgid "What type of machine are you installing? For maximum flexibility, choose \"Custom\"."
+#~ msgstr "Katero vrsto stroja name╧Хate? Za najveХjo pro╬nost izberite \"Uporabni╧ko prilagojen izbor\"."
#~ msgid "Converting RPM database..."
#~ msgstr "Pretvorba baze podatkov o RPM ..."
@@ -3177,26 +2702,17 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
#~ msgstr ""
#~ "Med korakom namestitve \"%s\" je pri╧lo do napake.\n"
#~ "\n"
-#~ "Ta korak lahko ponovite, se vrnete na prej╧nji korak namestitve, ali pa "
-#~ "pregledate menu namestitvenih korakov, ki vam omogoХajo svobodnej╧e gibanje "
-#~ "po namestitvi. Uporaba menuja ni priporoХena, Хe niste ╬e domaХi v Red Hat "
-#~ "Linuxu. Kaj bi radi storili?"
+#~ "Ta korak lahko ponovite, se vrnete na prej╧nji korak namestitve, ali pa pregledate menu namestitvenih korakov, ki vam omogoХajo svobodnej╧e gibanje po namestitvi. Uporaba menuja ni priporoХena, Хe niste ╬e domaХi v Red Hat Linuxu. Kaj bi radi storili?"
#~ msgid " Continue with install"
#~ msgstr " Nadaljuj namestitev"
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
-#~ msgstr ""
-#~ "Kateri korak bi radi izvedli? Koraki, oznaХeni z *, so ╬e bili izvedeni."
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
+#~ msgstr "Kateri korak bi radi izvedli? Koraki, oznaХeni z *, so ╬e bili izvedeni."
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
#~ msgstr "Vstavite prazno disketo v prvi disketnik /dev/fd0."
@@ -3213,11 +2729,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "Kernel"
#~ msgstr "Jedro"
-#~ msgid ""
-#~ "Please insert your boot disk in your first disk drive if it's not already "
-#~ "present."
-#~ msgstr ""
-#~ "Prosim vstavite zagonsko disketo v prvi disketnik, Хe je morda ╧e ni tam."
+#~ msgid "Please insert your boot disk in your first disk drive if it's not already present."
+#~ msgstr "Prosim vstavite zagonsko disketo v prvi disketnik, Хe je morda ╧e ni tam."
#~ msgid "Copying kernel from floppy..."
#~ msgstr "Prepisujem jedro na disketo..."
@@ -3270,12 +2783,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "No Swap Space"
#~ msgstr "Ni izmenjalnega prostora"
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "Katere particije bi radi uporabljali kot izmenjalni prostor? To bo uniХilo "
-#~ "vse morebitne podatke na teh particijah."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "Katere particije bi radi uporabljali kot izmenjalni prostor? To bo uniХilo vse morebitne podatke na teh particijah."
#~ msgid "Active Swap Space"
#~ msgstr "Aktivni izmenjalni prostor"
@@ -3292,12 +2801,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "Ethernet Probe"
#~ msgstr "Preizkus mre╬ne kartice"
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
-#~ msgstr ""
-#~ "Preizkus mre╬ne kartice v va╧em sistemu ni na╧el kartice. Pritisnite <Enter> "
-#~ "za roХno nastavitev."
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
+#~ msgstr "Preizkus mre╬ne kartice v va╧em sistemu ni na╧el kartice. Pritisnite <Enter> za roХno nastavitev."
#~ msgid "Static IP address"
#~ msgstr "StatiХni naslov IP"
@@ -3314,12 +2819,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "kickstart network command is missing ip address"
#~ msgstr "mre╬nem ukazu za hitri zagon manjka naslov IP"
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
-#~ msgstr ""
-#~ "Kako naj bodo nastavljene informacije o IP? хe vam je upravitelj sistema "
-#~ "dodelil naslov IP, izberite statiХno ╧tevilko IP."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
+#~ msgstr "Kako naj bodo nastavljene informacije o IP? хe vam je upravitelj sistema dodelil naslov IP, izberite statiХno ╧tevilko IP."
#~ msgid "Sending BOOTP request..."
#~ msgstr "Po╧iljam zahtevo BOOTP..."
@@ -3333,23 +2834,11 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "cannot open file: %s"
#~ msgstr "ne morem odpreti datoteke: %s"
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
-#~ msgstr ""
-#~ "Imena raХunalnika ne morem doloХiti samodejno. Pritisnite <Enter> za roХni "
-#~ "vnos imena raХunalnika."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
+#~ msgstr "Imena raХunalnika ne morem doloХiti samodejno. Pritisnite <Enter> za roХni vnos imena raХunalnika."
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
-#~ msgstr ""
-#~ "Prosim vnesite ime va╧e domene, ime va╧ega raХunalnika in naslove IP vseh "
-#~ "dodatnih imenskih stre╬nikov. Va╧e ime raХunalnika naj bo popolno ime "
-#~ "raХunalnika, kot denimo mojstroj.mojoddelek.mojepodjetje.si. хe nimate "
-#~ "dodatnih imenskih stre╬nikov, pustite ta polja prazna."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
+#~ msgstr "Prosim vnesite ime va╧e domene, ime va╧ega raХunalnika in naslove IP vseh dodatnih imenskih stre╬nikov. Va╧e ime raХunalnika naj bo popolno ime raХunalnika, kot denimo mojstroj.mojoddelek.mojepodjetje.si. хe nimate dodatnih imenskih stre╬nikov, pustite ta polja prazna."
#~ msgid "Host name:"
#~ msgstr "Ime raХunalnika:"
@@ -3372,12 +2861,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "LAN networking has already been configured. Do you want to:"
#~ msgstr "Vmre╬evanje LAN je ╬e nastavljeno. Ali ╬elite:"
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
-#~ msgstr ""
-#~ "Ali ╬elite nastaviti mre╬o LAN (ne modemskega dostopa) za va╧ name╧Хeni "
-#~ "sistem?"
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
+#~ msgstr "Ali ╬elite nastaviti mre╬o LAN (ne modemskega dostopa) za va╧ name╧Хeni sistem?"
#~ msgid "Cannot open components file: %s"
#~ msgstr "Ne morem odpreti datoteke s komponentami: %s"
@@ -3412,14 +2897,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "GNOME"
#~ msgstr "GNOME"
-#~ msgid ""
-#~ "Would you like to have the GNOME desktop installed? It provides an easy to "
-#~ "use interface, including a drag and drop capability and an integrated help "
-#~ "system."
-#~ msgstr ""
-#~ "Bi radi imeli name╧Хeno namizje GNOME? Ponuja preprosto uporaben vmesnik, "
-#~ "vkljuХno z mo╬nostjo operacij \"povleci in spusti\" in integriranega sistema "
-#~ "s pomoХjo."
+#~ msgid "Would you like to have the GNOME desktop installed? It provides an easy to use interface, including a drag and drop capability and an integrated help system."
+#~ msgstr "Bi radi imeli name╧Хeno namizje GNOME? Ponuja preprosto uporaben vmesnik, vkljuХno z mo╬nostjo operacij \"povleci in spusti\" in integriranega sistema s pomoХjo."
#~ msgid "Choose components to install:"
#~ msgstr "Izberite komponente za namestitev:"
@@ -3457,10 +2936,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "<F1> will give you information on this printer driver."
#~ msgstr "<F1> vam dА informacije o gonilniku tega tiskalnika."
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
-#~ msgstr ""
-#~ "Zdaj lahko nastavite velikost papirja in loХljivost tega tiskalnika."
+#~ msgid "You may now configure the paper size and resolution for this printer."
+#~ msgstr "Zdaj lahko nastavite velikost papirja in loХljivost tega tiskalnika."
#~ msgid "Paper Size"
#~ msgstr "Velikost papirja"
@@ -3483,11 +2960,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "Configure Uniprint Driver"
#~ msgstr "Nastavi gonilnik uniprint"
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
-#~ msgstr ""
-#~ "Na katera vrata je prikljuХen tiskalnik (/dev/lp0 ustreza LPT1: v DOS-u)?"
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr "Na katera vrata je prikljuХen tiskalnik (/dev/lp0 ustreza LPT1: v DOS-u)?"
#~ msgid ""
#~ "Auto-detected ports:\n"
@@ -3517,14 +2991,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "Remote lpd Printer Options"
#~ msgstr "Izbire za ldp na oddaljenem tiskalniku"
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "Za uporabo oddaljene tiskalni╧ke Хakalne vrste morate doloХiti ime "
-#~ "raХunalnika, na katerem je tiskalni╧ki stre╬nik, in ime vrste na tem "
-#~ "stre╬niku, v katero bodo uvr╧Хena opravila."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "Za uporabo oddaljene tiskalni╧ke Хakalne vrste morate doloХiti ime raХunalnika, na katerem je tiskalni╧ki stre╬nik, in ime vrste na tem stre╬niku, v katero bodo uvr╧Хena opravila."
#~ msgid "Printer Server:"
#~ msgstr "Tiskalni╧ki stre╬nik:"
@@ -3535,16 +3003,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "NetWare Printer Options"
#~ msgstr "Izbire tiskalnika NetWare"
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "Za tiskanje na tiskalnik NetWare morate doloХiti ime tiskalni╧kega stre╬nika "
-#~ "NetWare (to ni vedno isto kot gostiteljsko ime stroja za TCP/IP) kot tudi "
-#~ "ime tiskalni╧ke Хakalne vrste za tiskalnik, do katerega ╬elite dostopati, "
-#~ "ter morda ╧e ustrezno uporabni╧ko ime in geslo."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "Za tiskanje na tiskalnik NetWare morate doloХiti ime tiskalni╧kega stre╬nika NetWare (to ni vedno isto kot gostiteljsko ime stroja za TCP/IP) kot tudi ime tiskalni╧ke Хakalne vrste za tiskalnik, do katerega ╬elite dostopati, ter morda ╧e ustrezno uporabni╧ko ime in geslo."
#~ msgid "SMB server host:"
#~ msgstr "Ime stre╬nika SMB:"
@@ -3561,18 +3021,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "SMB/Windows 95/NT Printer Options"
#~ msgstr "Izbire tiskalnika SMB/Windows 95/NT"
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "Za tiskanje na tiskalniku SMB morate doloХiti ime gostitelja SMB (to ni "
-#~ "vedno enako kot gostiteljsko ime stroja za TCP/IP) in morda naslov IP "
-#~ "tiskalni╧kega stre╬nika kot tudi ime deljene enote za tiskalnik, do katerega "
-#~ "╬elite dostopati, ter morda ╧e ustrezno uporabni╧ko ime, geslo in delovno "
-#~ "skupino."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "Za tiskanje na tiskalniku SMB morate doloХiti ime gostitelja SMB (to ni vedno enako kot gostiteljsko ime stroja za TCP/IP) in morda naslov IP tiskalni╧kega stre╬nika kot tudi ime deljene enote za tiskalnik, do katerega ╬elite dostopati, ter morda ╧e ustrezno uporabni╧ko ime, geslo in delovno skupino."
#~ msgid "Spool directory:"
#~ msgstr "хakalni imenik:"
@@ -3580,14 +3030,8 @@ msgstr "Nalagam gonilnik za SCSI"
#~ msgid "Standard Printer Options"
#~ msgstr "Standardne izbire tiskalnika"
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Vsaka tiskalni╧ka Хakalna vrsta (v katero so preusmerjena tiskalni╧ka "
-#~ "opravila) potrebuje ime (pogosto lp) in Хakalni imenik, povezan z njo. "
-#~ "Kak╧no ime in kateri imenik bi radi uporabljali za to tiskalni╧ko vrsto?"
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Vsaka tiskalni╧ka Хakalna vrsta (v katero so preusmerjena tiskalni╧ka opravila) potrebuje ime (pogosto lp) in Хakalni imenik, povezan z njo. Kak╧no ime in kateri imenik bi radi uporabljali za to tiskalni╧ko vrsto?"
#~ msgid "Would you like to configure a printer?"
#~ msgstr "Bi radi nastavili tiskalnik?"
diff --git a/po/sr.po b/po/sr.po
index 1f92ebbbd..857de5852 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: install $Revision$\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-09-09 10:00-0500\n"
"Last-Translator: Zoltan хala <zolika@sezampro.yu>\n"
"Language-Team: Serbian <sr@li.org>\n"
@@ -15,7 +15,7 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "SledeФe"
@@ -78,81 +78,84 @@ msgstr "SledeФe"
# ../textw/partitioning.py:63 ../textw/partitioning.py:172
# ../textw/userauth.py:31 ../textw/userauth.py:143 ../textw/userauth.py:174
# ../textw/userauth.py:246
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Natrag"
# ../gui.py:317
# ../gui.py:321
# ../gui.py:321
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Prika╬i pomoФ"
# ../gui.py:316
# ../gui.py:320
# ../gui.py:320
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Sakrij pomoФ"
# ../gui.py:315
# ../gui.py:319
# ../gui.py:319
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "Zavr╧i"
# ../gui.py:338
# ../gui.py:343
# ../gui.py:343
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "'Online' pomoФ"
# ../iw/language.py:10 ../text.py:39 ../text.py:818
# ../iw/language.py:10 ../text.py:39 ../text.py:818
# ../iw/language.py:10 ../text.py:39 ../text.py:818
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "Izbor jezika"
# ../gui.py:306
# ../gui.py:310
# ../gui.py:310
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Instalacioni vodiХ za Red Hat Linux"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+# ../gui.py:306
+# ../gui.py:310
+# ../gui.py:310
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Instalacioni vodiХ za Red Hat Linux"
+
+# ../gui.py:306
+# ../gui.py:310
+# ../gui.py:310
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Instalacioni vodiХ za Red Hat Linux"
+
+# ../gui.py:306
+# ../gui.py:310
+# ../gui.py:310
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Instalacioni vodiХ za Red Hat Linux"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
# ../fsedit.c:2688
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr "IzgubiФete podatke! Da li ste sigurni da ╬elite ovo da uradite?"
# ../pkgs.c:430
@@ -203,25 +206,7 @@ msgstr "Koji jezik biste ╬eleli da koristite tokom procesa instalacije?"
# ../textw/userauth.py:45 ../textw/userauth.py:50 ../textw/userauth.py:84
# ../textw/userauth.py:96 ../textw/userauth.py:104 ../textw/userauth.py:113
# ../textw/userauth.py:174 ../textw/userauth.py:246
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "U redu"
@@ -257,8 +242,7 @@ msgstr "/dev/ttyS3 (COM4 pod MS-DOSom)"
# ../iw/lilo.py:174 ../text.py:72
# ../iw/lilo.py:174 ../text.py:72 ../textw/lilo.py:77 ../textw/lilo.py:135
# ../iw/lilo.py:174 ../text.py:72 ../textw/lilo.py:77 ../textw/lilo.py:135
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "UreПaj"
@@ -371,26 +355,7 @@ msgstr "Na kom ureПaju se nalazi mi╧? %s %i"
# ../textw/constants.py:10 ../textw/lilo.py:82 ../textw/lilo.py:95
# ../textw/lilo.py:150
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "U redu"
@@ -508,12 +473,7 @@ msgstr "Kakav tip sistema biste ╬eleli da instalirate?"
# ../loader/loader.c:663 ../loader/loader.c:708 ../loader/loader.c:841
# ../loader/loader.c:846 ../loader/loader.c:1387 ../loader/urls.c:201
# ../loader/urls.c:206 ../text.py:191 ../text.py:562
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Gre╧ka"
@@ -554,14 +514,8 @@ msgstr "Izaberi pakete za a╬uriranje"
# ../text.py:222
# ../text.py:222
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Instalirani paketi, kao i oni koji su potrebni da zadovolje meПuzavisnosti, "
-"odabrani su za instalaciju. Da li biste da liХno podesite pakete koji Фe "
-"biti a╬urirani?"
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Instalirani paketi, kao i oni koji su potrebni da zadovolje meПuzavisnosti, odabrani su za instalaciju. Da li biste da liХno podesite pakete koji Фe biti a╬urirani?"
# ../fsedit.c:854 ../fsedit.c:1061 ../fsedit.c:1875 ../fsedit.c:1893
# ../fsedit.c:1973 ../fsedit.c:2687 ../install.c:149 ../install2.c:1191
@@ -588,14 +542,7 @@ msgstr ""
# ../libfdisk/newtfsedit.c:1483 ../libfdisk/newtfsedit.c:1501
# ../libfdisk/newtfsedit.c:1586 ../loader/loader.c:572 ../loader/net.c:698
# ../text.py:229 ../text.py:415 ../text.py:418 ../textw/partitioning.py:135
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Da"
@@ -624,14 +571,7 @@ msgstr "Da"
# ../libfdisk/newtfsedit.c:1483 ../libfdisk/newtfsedit.c:1501
# ../libfdisk/newtfsedit.c:1586 ../loader/net.c:698 ../text.py:229
# ../text.py:234 ../text.py:415 ../text.py:421 ../textw/partitioning.py:135
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Ne"
@@ -651,21 +591,14 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Red Hat Linux vam ╬eli dobrodo╧licu!\n"
"\n"
-"Ovaj naХin instalacije je detaljno obja╧njen u ZvaniХnom vodiХu za Red Hat "
-"Linux instalaciju koji se mo╬e nabaviti kod Red Hat Software-a. Ako vam je "
-"priruХnik na raspolaganju, trebalo bi da proХitate odeljak o instalaciji pre "
-"nego ╧to nastavite.\n"
-"Ako ste nabavili ZvaniХni Red Hat Linux, registrujte va╧u kopiju na na╧em "
-"WWW sajtu, http://www.redhat.com."
+"Ovaj naХin instalacije je detaljno obja╧njen u ZvaniХnom vodiХu za Red Hat Linux instalaciju koji se mo╬e nabaviti kod Red Hat Software-a. Ako vam je priruХnik na raspolaganju, trebalo bi da proХitate odeljak o instalaciji pre nego ╧to nastavite.\n"
+"Ako ste nabavili ZvaniХni Red Hat Linux, registrujte va╧u kopiju na na╧em WWW sajtu, http://www.redhat.com."
# ../text.py:315
# ../text.py:315
@@ -742,18 +675,14 @@ msgstr "Pode╧avanje imena raХunara"
# ../text.py:391
# ../text.py:391
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"'Hostname' je ime va╧eg raХunara. Ako je va╧ kompjuter umre╬en, ime vam mo╬e "
-"dodeliti administrator va╧e mre╬e."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "'Hostname' je ime va╧eg raХunara. Ako je va╧ kompjuter umre╬en, ime vam mo╬e dodeliti administrator va╧e mre╬e."
# ../net.c:86
# ../iw/network.py:180 ../loader/net.c:460 ../loader/net.c:617 ../text.py:394
# ../iw/network.py:187 ../loader/net.c:460 ../loader/net.c:617 ../text.py:394
# ../iw/network.py:187 ../loader/net.c:460 ../loader/net.c:617 ../text.py:394
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Ime raХunara"
@@ -764,20 +693,11 @@ msgstr "Ime raХunara"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"Startni disk obezbeПuje naХin podizanja va╧eg Linuks sistema bez zavisnosti "
-"od normalnog startnog punjaХa. Ovo je korisno ako ne ╬elite da instalirate "
-"LILO na va╧ sistem, ako drugi operativni sistem ukloni LILO, ili LILO ne "
-"radi sa va╧im hardverom. Startni disk mo╬ete koristiti sa Red Hat 'diskom za "
-"spasavanje', ╧to olak╧ava oporavak u sluХaju te╬e havarije.\n"
+"Startni disk obezbeПuje naХin podizanja va╧eg Linuks sistema bez zavisnosti od normalnog startnog punjaХa. Ovo je korisno ako ne ╬elite da instalirate LILO na va╧ sistem, ako drugi operativni sistem ukloni LILO, ili LILO ne radi sa va╧im hardverom. Startni disk mo╬ete koristiti sa Red Hat 'diskom za spasavanje', ╧to olak╧ava oporavak u sluХaju te╬e havarije.\n"
"\n"
"Da li biste da kreirate startnu disketu za va╧ sistem?"
@@ -856,12 +776,8 @@ msgstr "PoХetna instalacija"
# ../text.py:519
# ../text.py:519
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Potpun dnevnik instalacije naФi Фete u datoteci /tmp/install.log po╧to "
-"resetujete sistem. хuvajte ga jer vam mo╬e zatrebati."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Potpun dnevnik instalacije naФi Фete u datoteci /tmp/install.log po╧to resetujete sistem. хuvajte ga jer vam mo╬e zatrebati."
# ../install2.c:1469
# ../text.py:534
@@ -879,32 +795,22 @@ msgstr "UraПeno"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"хestitamo, instalacija je zavr╧ena.\n"
"\n"
-"Izvadite disketu iz drajva i pritisnite <Enter> da se raХunar resetuje. Za "
-"informacije o popravkama koje su na raspolaganju za ovo izdanje Red Hat "
-"Linux-a, proХitajte deo 'Errata' koji mo╬ete naФi na http://www.redhat.com.\n"
+"Izvadite disketu iz drajva i pritisnite <Enter> da se raХunar resetuje. Za informacije o popravkama koje su na raspolaganju za ovo izdanje Red Hat Linux-a, proХitajte deo 'Errata' koji mo╬ete naФi na http://www.redhat.com.\n"
"\n"
-"Informacije o konfigurisanju va╧eg sistema mo╬ete naФi u post-instalacionom "
-"poglavlju zvaniХnog Red Hat Linux 'VodiХa za korisnike'."
+"Informacije o konfigurisanju va╧eg sistema mo╬ete naФi u post-instalacionom poglavlju zvaniХnog Red Hat Linux 'VodiХa za korisnike'."
# ../iw/bootdisk.py:40 ../text.py:551
# ../iw/bootdisk.py:40 ../text.py:551
# ../iw/bootdisk.py:40 ../text.py:551
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Ubacite disketu u prvi flopi-ureПaj. Svi podaci na ovoj disketi biФe "
-"obrisani tokom kreiranja startnog diska."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Ubacite disketu u prvi flopi-ureПaj. Svi podaci na ovoj disketi biФe obrisani tokom kreiranja startnog diska."
# ../lilo.c:74
# ../text.py:554 ../text.py:555 ../text.py:566 ../text.py:567
@@ -912,8 +818,7 @@ msgstr ""
# ../textw/lilo.py:20
# ../text.py:554 ../text.py:555 ../text.py:566 ../text.py:567
# ../textw/lilo.py:20
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "PreskoХi"
@@ -921,12 +826,8 @@ msgstr "PreskoХi"
# ../iw/bootdisk.py:44 ../text.py:563
# ../iw/bootdisk.py:44 ../text.py:563
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"Dogodila se gre╧ka prilikom pravljenja startnog diska. Proverite da li je "
-"disketa u prvom flopi-drajvu formatirana."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "Dogodila se gre╧ka prilikom pravljenja startnog diska. Proverite da li je disketa u prvom flopi-drajvu formatirana."
# ../lilo.c:72 ../lilo.c:516
# ../text.py:625
@@ -1042,17 +943,13 @@ msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
# ../text.py:806
# ../text.py:806
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> kretanje kroz stavke | <Space> za izbor | <F12> za sledeФi "
-"ekran"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> kretanje kroz stavke | <Space> za izbor | <F12> za sledeФi ekran"
# ../text.py:822
# ../text.py:822
# ../text.py:822
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Dobrodo╧li"
@@ -1060,8 +957,7 @@ msgstr "Dobrodo╧li"
# ../iw/lilo.py:94 ../iw/lilo.py:197 ../text.py:828 ../text.py:834
# ../iw/lilo.py:94 ../iw/lilo.py:197 ../text.py:828 ../text.py:834
# ../iw/lilo.py:94 ../iw/lilo.py:197 ../text.py:828 ../text.py:834
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "Particija"
@@ -1102,8 +998,7 @@ msgstr "Formatiranje sistema datoteka"
# ../textw/lilo.py:61 ../textw/lilo.py:158
# ../text.py:840 ../text.py:842 ../text.py:844 ../textw/lilo.py:23
# ../textw/lilo.py:61 ../textw/lilo.py:158
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "LILO pode╧avanje"
@@ -1231,8 +1126,7 @@ msgstr "Instalacija zavr╧ena"
# ../textw/lilo.py:61 ../textw/lilo.py:158
# ../text.py:840 ../text.py:842 ../text.py:844 ../textw/lilo.py:23
# ../textw/lilo.py:61 ../textw/lilo.py:158
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "LILO pode╧avanje"
@@ -1278,23 +1172,23 @@ msgid "I can't go to the previous step from here. You will have to try again."
msgstr "Ne mogu da se vratim na prethodni korak. MoraФete opet da poku╧ate."
# ../kickstart.c:74
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "gre╧ka upisa u datoteku %s: %s"
# ../kickstart.c:74
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "gre╧ka upisa u datoteku %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
# ../lilo.c:667
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Pravljenje startnog diska..."
@@ -1303,19 +1197,19 @@ msgstr "Pravljenje startnog diska..."
# ../text.py:838
# ../text.py:838
# ../text.py:838
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Formatiranje sistema datoteka"
# ../fs.c:314
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "Pravim ext2 fajl-sistem na /dev/%s..."
# ../lilo.c:667
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Pravljenje startnog diska..."
@@ -1325,7 +1219,7 @@ msgstr "Pravljenje startnog diska..."
# ../iw/progress.py:156
# ../iw/progress.py:156
# ../iw/progress.py:156
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Preostalo"
@@ -1334,28 +1228,28 @@ msgstr "Preostalo"
# ../loader/net.c:339 ../loader/net.c:570
# ../loader/net.c:339 ../loader/net.c:570
# ../loader/net.c:339 ../loader/net.c:570
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "Slanje zahteva za IP podacima..."
# ../pkgs.c:668
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "nemam ╧ta da ka╬em"
# ../pkgs.c:775
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "Sve"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
# ../kickstart.c:74
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "gre╧ka upisa u datoteku %s: %s"
@@ -1365,22 +1259,22 @@ msgstr "gre╧ka upisa u datoteku %s: %s"
# ../iw/progress.py:156
# ../iw/progress.py:156
# ../iw/progress.py:156
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Preostalo"
# ../install2.c:940
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "Pronalazim pakete za a╬uriranje..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr ""
# ../install2.c:940
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Pronalazim pakete za a╬uriranje..."
@@ -1390,21 +1284,21 @@ msgstr "Pronalazim pakete za a╬uriranje..."
# ../iw/progress.py:156
# ../iw/progress.py:156
# ../iw/progress.py:156
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Preostalo"
# ../install2.c:929
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr "Obnova RPM baze podataka..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr ""
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
@@ -1413,15 +1307,14 @@ msgstr ""
# ../iw/progress.py:26
# ../iw/progress.py:26
# ../iw/progress.py:26
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Instaliranje paketa"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
@@ -1429,17 +1322,17 @@ msgstr ""
# ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:1628
# ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:1628
# ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:1628
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "TaХka montiranja:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr ""
# ../fsedit.c:2695
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "Prostor na disku"
@@ -1447,7 +1340,7 @@ msgstr "Prostor na disku"
# ../iw/installpath.py:122
# ../iw/installpath.py:142
# ../iw/installpath.py:142
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Instalacija"
@@ -1456,7 +1349,7 @@ msgstr "Instalacija"
# ../iw/xconfig.py:73 ../iw/xconfig.py:194
# ../iw/xconfig.py:73 ../iw/xconfig.py:194
# ../iw/xconfig.py:73 ../iw/xconfig.py:194
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "Testiraj ove parametre"
@@ -1464,14 +1357,14 @@ msgstr "Testiraj ove parametre"
# ../iw/xconfig.py:9
# ../iw/xconfig.py:9
# ../iw/xconfig.py:9
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "Video-kartica"
# ../iw/xconfig.py:11
# ../iw/xconfig.py:11
# ../iw/xconfig.py:11
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Video-RAM"
@@ -1482,7 +1375,7 @@ msgstr "Video-RAM"
# ../libfdisk/gnomefsedit.c:2216
# ../iw/installpath.py:37 ../libfdisk/gnomefsedit.c:2196
# ../libfdisk/gnomefsedit.c:2216
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Server"
@@ -1491,7 +1384,7 @@ msgstr "Server"
# ../loader/loader.c:935
# ../loader/loader.c:933
# ../loader/loader.c:933
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Preuzimanje ramdisk-a druge faze nije uspelo"
@@ -1499,18 +1392,18 @@ msgstr "Preuzimanje ramdisk-a druge faze nije uspelo"
# ../iw/xconfig.py:10
# ../iw/xconfig.py:10
# ../iw/xconfig.py:10
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Monitor"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
# ../iw/xconfig.py:12
# ../iw/xconfig.py:12
# ../iw/xconfig.py:12
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "Opseg horizontalne frekvencije"
@@ -1518,7 +1411,7 @@ msgstr "Opseg horizontalne frekvencije"
# ../iw/xconfig.py:13
# ../iw/xconfig.py:13
# ../iw/xconfig.py:13
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "Opseg vertikalne frekvencije"
@@ -1576,8 +1469,7 @@ msgstr "Lozinka (potvrda)"
# ../textw/userauth.py:162
# ../iw/account.py:187 ../iw/account.py:218 ../textw/userauth.py:81
# ../textw/userauth.py:162
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Puno ime"
@@ -1598,10 +1490,7 @@ msgstr "Dodaj"
# ../iw/account.py:198 ../libfdisk/newtfsedit.c:1296
# ../libfdisk/newtfsedit.c:1304 ../textw/lilo.py:150 ../textw/lilo.py:171
# ../textw/partitioning.py:62 ../textw/userauth.py:174
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Uredi"
@@ -1612,8 +1501,7 @@ msgstr "Uredi"
# ../libfdisk/newtfsedit.c:1304 ../textw/userauth.py:173
# ../iw/account.py:200 ../libfdisk/newtfsedit.c:1296
# ../libfdisk/newtfsedit.c:1304 ../textw/userauth.py:173
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Obri╧i"
@@ -1830,8 +1718,7 @@ msgstr "KDE radna stanica"
# ../libfdisk/gnomefsedit.c:2216
# ../iw/installpath.py:37 ../libfdisk/gnomefsedit.c:2196
# ../libfdisk/gnomefsedit.c:2216
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Server"
@@ -1916,7 +1803,7 @@ msgstr "Proverite va╧ izbor ovde:"
# ../iw/language.py:14 ../loader/lang.c:232
# ../iw/language.py:14 ../loader/lang.c:245
# ../iw/language.py:14 ../loader/lang.c:245
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Koji jezik Фe biti kori╧Фen tokom procesa instalacije?"
@@ -1994,8 +1881,7 @@ msgstr "Nemoj da instalira╧ LILO"
# ../iw/lilo.py:174
# ../iw/lilo.py:174 ../textw/lilo.py:135
# ../iw/lilo.py:174 ../textw/lilo.py:135
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "Podrazumevano"
@@ -2003,8 +1889,7 @@ msgstr "Podrazumevano"
# ../iw/lilo.py:174
# ../iw/lilo.py:174 ../textw/lilo.py:135
# ../iw/lilo.py:174 ../textw/lilo.py:135
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Tip particije"
@@ -2014,9 +1899,7 @@ msgstr "Tip particije"
# ../textw/lilo.py:135
# ../iw/lilo.py:174 ../iw/lilo.py:209 ../textw/lilo.py:78
# ../textw/lilo.py:135
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Startna oznaka"
@@ -2031,14 +1914,14 @@ msgstr "Emulacija 3 tastera"
# ../iw/network.py:127
# ../iw/network.py:131
# ../iw/network.py:131
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Podesi kori╧Фenjem DHCP-a"
# ../iw/network.py:133
# ../iw/network.py:138
# ../iw/network.py:138
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Aktiviraj prilikom starta"
@@ -2046,7 +1929,7 @@ msgstr "Aktiviraj prilikom starta"
# ../iw/network.py:142
# ../iw/network.py:147
# ../iw/network.py:147
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "IP adresa"
@@ -2054,49 +1937,49 @@ msgstr "IP adresa"
# ../iw/network.py:142 ../loader/net.c:615
# ../iw/network.py:147 ../loader/net.c:615
# ../iw/network.py:147 ../loader/net.c:615
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Mre╬na maska"
# ../iw/network.py:142 ../loader/loader.c:226
# ../iw/network.py:147 ../loader/loader.c:226
# ../iw/network.py:147 ../loader/loader.c:226
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Mre╬a"
# ../iw/network.py:142
# ../iw/network.py:147
# ../iw/network.py:147
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Broadcast"
# ../iw/network.py:181
# ../iw/network.py:188
# ../iw/network.py:188
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Gejtvej"
# ../iw/network.py:181
# ../iw/network.py:188
# ../iw/network.py:188
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "Glavni DNS"
# ../iw/network.py:181
# ../iw/network.py:188
# ../iw/network.py:188
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "Sekundarni DNS"
# ../iw/network.py:181
# ../iw/network.py:188
# ../iw/network.py:188
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "Ternarni DNS"
@@ -2255,14 +2138,8 @@ msgstr "Premalo memorije"
# ../textw/partitioning.py:131
# ../textw/partitioning.py:131
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Po╧to nemate mnogo memorije u ovom raХunaru, moramo smesta da ukljuХimo "
-"'swap' prostor. Da bismo to uradili moraФemo odmah da zapi╧emo va╧u novu "
-"tabelu particija. Da li je to u redu?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Po╧to nemate mnogo memorije u ovom raХunaru, moramo smesta da ukljuХimo 'swap' prostor. Da bismo to uradili moraФemo odmah da zapi╧emo va╧u novu tabelu particija. Da li je to u redu?"
# ../fsedit.c:640 ../fsedit.c:646 ../fsedit.c:650 ../fsedit.c:652
# ../iw/rootpartition.py:86
@@ -2280,21 +2157,17 @@ msgstr "Automatsko particionisanje"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"Ako ne ╬elite ovo da radite, mo╬ete da nastavite ovu instalaciju tako ╧to "
-"Фete particije napraviti ruХno, ili se mo╬ete vratiti i uraditi instalaciju "
-"koja je potpuno po va╧em ukusu."
+"Ako ne ╬elite ovo da radite, mo╬ete da nastavite ovu instalaciju tako ╧to Фete particije napraviti ruХno, ili se mo╬ete vratiti i uraditi instalaciju koja je potpuno po va╧em ukusu."
# ../printercfg.c:1174
# ../iw/rootpartition.py:137
# ../iw/rootpartition.py:137
# ../iw/rootpartition.py:137
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Ukloni podatke"
@@ -2302,7 +2175,7 @@ msgstr "Ukloni podatke"
# ../iw/rootpartition.py:140
# ../iw/rootpartition.py:140 ../textw/partitioning.py:102
# ../iw/rootpartition.py:140 ../textw/partitioning.py:102
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "RuХno particionisanje"
@@ -2407,7 +2280,7 @@ msgstr "Test nije uspeo"
# ../iw/xconfig.py:22 ../iw/xconfig.py:198
# ../iw/xconfig.py:22 ../iw/xconfig.py:198
# ../iw/xconfig.py:22 ../iw/xconfig.py:198
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "Pode╧avanje X-Windows-a"
@@ -2423,42 +2296,36 @@ msgstr "Bitova po pikselu"
# ../iw/xconfig.py:73 ../iw/xconfig.py:194
# ../iw/xconfig.py:73 ../iw/xconfig.py:194
# ../iw/xconfig.py:73 ../iw/xconfig.py:194
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Testiraj ove parametre"
# ../iw/xconfig.py:149
# ../iw/xconfig.py:149
# ../iw/xconfig.py:149
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"U najveФem broju sluХajeva va╧ video-hardver mo╬e biti automatski ispitan "
-"kako bi se odredili parametri koji najbolje odgovaraju va╧em monitoru."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "U najveФem broju sluХajeva va╧ video-hardver mo╬e biti automatski ispitan kako bi se odredili parametri koji najbolje odgovaraju va╧em monitoru."
# ../devices.c:335
# ../iw/xconfig.py:157
# ../iw/xconfig.py:157
# ../iw/xconfig.py:157
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "Rezultati automatskog ispitivanja:"
# ../iw/xconfig.py:171
# ../iw/xconfig.py:171
# ../iw/xconfig.py:171
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
-msgstr ""
-"Va╧ monitor nije moguФe automatski odrediti. Molimo izaberite ga sa spiska:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
+msgstr "Va╧ monitor nije moguФe automatski odrediti. Molimo izaberite ga sa spiska:"
# ../iw/xconfig.py:201
# ../iw/xconfig.py:201
# ../iw/xconfig.py:201
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Koristi grafiХki login"
@@ -2466,7 +2333,7 @@ msgstr "Koristi grafiХki login"
# ../iw/xconfig.py:203
# ../iw/xconfig.py:203
# ../iw/xconfig.py:203
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "PreskoХi pode╧avanje X-Windows-a"
@@ -2474,16 +2341,8 @@ msgstr "PreskoХi pode╧avanje X-Windows-a"
# ../textw/lilo.py:12
# ../textw/lilo.py:12
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"Neki sistemi moraju da proslede specijalne opcije kernelu na poХetku da bi "
-"sistem ispravno radio. Ako su i vama potrebne neke od tih opcija, unesite ih "
-"sada. Ako vam nijedna nije potrebna ili niste sigurni ╧ta da otkucate, "
-"ostavite ovo polje prazno."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "Neki sistemi moraju da proslede specijalne opcije kernelu na poХetku da bi sistem ispravno radio. Ako su i vama potrebne neke od tih opcija, unesite ih sada. Ako vam nijedna nije potrebna ili niste sigurni ╧ta da otkucate, ostavite ovo polje prazno."
# ../lilo.c:72
# ../textw/lilo.py:62
@@ -2495,8 +2354,7 @@ msgstr "Gde biste da instalirate starter?"
# ../lilo.c:138
# ../textw/lilo.py:82 ../textw/lilo.py:102
# ../textw/lilo.py:82 ../textw/lilo.py:102
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "OХisti"
@@ -2514,11 +2372,7 @@ msgstr "OХisti"
# ../libfdisk/gnomefsedit.c:2128 ../libfdisk/newtfsedit.c:450
# ../libfdisk/newtfsedit.c:1501 ../textw/lilo.py:82 ../textw/lilo.py:100
# ../textw/userauth.py:64
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Obustavi"
@@ -2533,27 +2387,15 @@ msgstr "Promena startne labele"
# ../textw/lilo.py:153
# ../textw/lilo.py:153
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Startni menad╬er koji koristi Red Hat mo╬e da pokrene i druge operativne "
-"sisteme. Morate mi reФi koje particije biste da pokrenete i koje oznake da "
-"koristim za svaku od njih."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Startni menad╬er koji koristi Red Hat mo╬e da pokrene i druge operativne sisteme. Morate mi reФi koje particije biste da pokrenete i koje oznake da koristim za svaku od njih."
# ../pkgs.c:678
# ../textw/packages.py:117
# ../textw/packages.py:117
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Neki paketi koje ste odabrali da instalirate zahtevaju druge pakete koje "
-"niste odabrali. Ako odaberete 'U redu' svi potrebni paketi Фe biti "
-"instalirani."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Neki paketi koje ste odabrali da instalirate zahtevaju druge pakete koje niste odabrali. Ako odaberete 'U redu' svi potrebni paketi Фe biti instalirani."
# ../install2.c:282
# ../textw/partitioning.py:17 ../textw/partitioning.py:56
@@ -2567,17 +2409,11 @@ msgstr "Pode╧avanje diska"
# ../textw/partitioning.py:18
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk-Хarobnjak je alat za particionisanje i pode╧avanje taХaka montiranja. "
-"Napravljen je da bude lak╧i za kori╧Фenje od Linux-ovog tradicionalnog "
-"alata, fdiska, a i moФniji je. MeПutim, u nekim sluХajevima kori╧Фenje "
-"fdiska mo╬e biti bolja odluka.\n"
+"Disk-Хarobnjak je alat za particionisanje i pode╧avanje taХaka montiranja. Napravljen je da bude lak╧i za kori╧Фenje od Linux-ovog tradicionalnog alata, fdiska, a i moФniji je. MeПutim, u nekim sluХajevima kori╧Фenje fdiska mo╬e biti bolja odluka.\n"
"\n"
"Koji alat biste hteli da koristite?"
@@ -2585,20 +2421,14 @@ msgstr ""
# ../textw/partitioning.py:57
# ../textw/partitioning.py:57
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Da biste instalirali Red Hat Linux, morate imati najmanje jednu particiju od "
-"150 MB posveФenu Linux-u. PreporuХujemo da particija bude na jednom od prva "
-"dva hard-diska da biste mogli da pokrenete Linux sa LILO-m."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Da biste instalirali Red Hat Linux, morate imati najmanje jednu particiju od 150 MB posveФenu Linux-u. PreporuХujemo da particija bude na jednom od prva dva hard-diska da biste mogli da pokrenete Linux sa LILO-m."
# ../hd.c:280 ../install2.c:1470 ../pkgs.c:1011
# ../loader/loader.c:287 ../loader/loader.c:311
# ../loader/loader.c:287 ../loader/loader.c:311 ../textw/partitioning.py:62
# ../loader/loader.c:287 ../loader/loader.c:311 ../textw/partitioning.py:62
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Uradjeno"
@@ -2613,16 +2443,8 @@ msgstr "Nastavak"
# ../textw/partitioning.py:150
# ../textw/partitioning.py:150
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Koje particije biste hteli da formatirate? Toplo preporuХujemo da "
-"formatirate SVE sistemske particije, ukljuХujuФi /, /usr i /var. Nema "
-"potrebe da formatirate /home ili /usr/local ako su bile pode╧ene u "
-"prethodnoj instalaciji."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Koje particije biste hteli da formatirate? Toplo preporuХujemo da formatirate SVE sistemske particije, ukljuХujuФi /, /usr i /var. Nema potrebe da formatirate /home ili /usr/local ako su bile pode╧ene u prethodnoj instalaciji."
# ../fs.c:389 ../mkswap.c:407
# ../textw/partitioning.py:170
@@ -2655,14 +2477,8 @@ msgstr ""
# ../textw/userauth.py:12
# ../textw/userauth.py:12
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Izaberite root lozinku. Morate je otkucati dvaput da biste utvrdili da nema "
-"gre╧aka u kucanju, a i da znate kako glasi. Zapamtite da je root lozinka "
-"bitan deo sigurnosti sistema!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Izaberite root lozinku. Morate je otkucati dvaput da biste utvrdili da nema gre╧aka u kucanju, a i da znate kako glasi. Zapamtite da je root lozinka bitan deo sigurnosti sistema!"
# ../install2.c:597 ../latemethods.c:577 ../printercfg.c:1058
# ../loader/urls.c:298
@@ -2750,26 +2566,14 @@ msgstr "Ovo ime korisnika veФ postoji. Izaberite drugo."
# ../textw/userauth.py:139
# ../textw/userauth.py:139
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"Trebalo bi da koristite obiХan korisniХki nalog za svakodnevan rad na "
-"sistemu. Izbegavanjem kori╧Фenja 'root' naloga smanjujete moguФnost da ne╧to "
-"o╧tetite na sistemu."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "Trebalo bi da koristite obiХan korisniХki nalog za svakodnevan rad na sistemu. Izbegavanjem kori╧Фenja 'root' naloga smanjujete moguФnost da ne╧to o╧tetite na sistemu."
# ../textw/userauth.py:152
# ../textw/userauth.py:152
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"Kakav korisniХki nalog biste ╬eleli da imate na sistemu? Trebalo bi da imate "
-"najmanje jedan ne-root nalog za svakodnevan rad, ali vi╧ekorisniХki sistemi "
-"mogu da imaju ma koliko naloga."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "Kakav korisniХki nalog biste ╬eleli da imate na sistemu? Trebalo bi da imate najmanje jedan ne-root nalog za svakodnevan rad, ali vi╧ekorisniХki sistemi mogu da imaju ma koliko naloga."
# ../printercfg.c:1057
# ../textw/userauth.py:162
@@ -2838,8 +2642,7 @@ msgstr "Zahtevaj server preko 'broadcast'-a"
# ../libfdisk/fsedit.c:628 ../libfdisk/fsedit.c:640 ../libfdisk/fsedit.c:650
# ../libfdisk/fsedit.c:605 ../libfdisk/fsedit.c:612 ../libfdisk/fsedit.c:619
# ../libfdisk/fsedit.c:628 ../libfdisk/fsedit.c:640 ../libfdisk/fsedit.c:650
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Lo╧a taХka montiranja"
@@ -2940,14 +2743,8 @@ msgstr "Previ╧e drajvova"
# ../libfdisk/fsedit.c:680
# ../libfdisk/fsedit.c:680
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Imate vi╧e drajvova nego ╧to ovaj program podr╬ava. Molim koristite "
-"standardni fdisk program da podesite va╧e drajvove i molim vas da obavestite "
-"Red Hat Software da ste videli ovu poruku."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Imate vi╧e drajvova nego ╧to ovaj program podr╬ava. Molim koristite standardni fdisk program da podesite va╧e drajvove i molim vas da obavestite Red Hat Software da ste videli ovu poruku."
# ../fsedit.c:2321 ../fsedit.c:2775
# ../libfdisk/fsedit.c:695
@@ -2962,12 +2759,8 @@ msgstr "Nijedan drajv nije pronaПen"
# ../libfdisk/fsedit.c:696
# ../libfdisk/fsedit.c:696
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Dogodila se gre╧ka - nije pronaПen ispravan ureПaj na kojem se mogu kreirati "
-"novi sistemi datoteka. Proverite va╧ hardver da utvrdite uzrok ovog problema."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Dogodila se gre╧ka - nije pronaПen ispravan ureПaj na kojem se mogu kreirati novi sistemi datoteka. Proverite va╧ hardver da utvrdite uzrok ovog problema."
# ../fsedit.c:400 ../fsedit.c:463
# ../libfdisk/fsedit.c:964 ../libfdisk/fsedit.c:1032
@@ -2975,9 +2768,7 @@ msgstr ""
# ../libfdisk/fsedit.c:964 ../libfdisk/fsedit.c:1032
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
msgstr "Gre╧ka kod Хitanja tabele particija za bloХni ureПaj %s. Gre╧ka je"
# ../fsedit.c:440
@@ -2986,13 +2777,8 @@ msgstr "Gre╧ka kod Хitanja tabele particija za bloХni ureПaj %s. Gre╧ka je"
# ../libfdisk/fsedit.c:1005
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Tabela particija na ureПaju %s je o╧teФena. Da biste kreirali novu particiju "
-"ona mora biti inicijalizovana, ╧to Фe prouzrokovati gubitak SVIH PODATAKA na "
-"ovom drajvu."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Tabela particija na ureПaju %s je o╧teФena. Da biste kreirali novu particiju ona mora biti inicijalizovana, ╧to Фe prouzrokovati gubitak SVIH PODATAKA na ovom drajvu."
# ../fsedit.c:427 ../fsedit.c:438
# ../libfdisk/fsedit.c:1010
@@ -3042,15 +2828,8 @@ msgstr "BSD oznaka diska"
# ../libfdisk/fsedit.c:1048
# ../libfdisk/fsedit.c:1048
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"PronaПen je disk sa BSD oznakom. Red Hat instalacija podr╬ava BSD oznake "
-"diska samo kod Хitanja (read-only). Zato morate da koristite prilagoПenu "
-"(custom) instalaciju i fdisk (umesto Disk-Хarobnjaka) za raХunare sa BSD "
-"oznakom diska."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "PronaПen je disk sa BSD oznakom. Red Hat instalacija podr╬ava BSD oznake diska samo kod Хitanja (read-only). Zato morate da koristite prilagoПenu (custom) instalaciju i fdisk (umesto Disk-Хarobnjaka) za raХunare sa BSD oznakom diska."
# ../fsedit.c:301
# ../libfdisk/fsedit.c:1078
@@ -3114,10 +2893,7 @@ msgstr "Da li ste sigurni da hoФete da uklonite ovu particiju?"
# ../libfdisk/gnomefsedit.c:649 ../libfdisk/gnomefsedit.c:651
# ../libfdisk/newtfsedit.c:263 ../libfdisk/newtfsedit.c:269
# ../libfdisk/newtfsedit.c:273 ../libfdisk/newtfsedit.c:275
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Uredi particiju"
@@ -3198,8 +2974,7 @@ msgstr "Dozvoljeni diskovi:"
# ../libfdisk/newtfsedit.c:486
# ../libfdisk/gnomefsedit.c:956 ../libfdisk/gnomefsedit.c:1846
# ../libfdisk/newtfsedit.c:486
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Nema taХke montiranja"
@@ -3208,12 +2983,8 @@ msgstr "Nema taХke montiranja"
# ../libfdisk/gnomefsedit.c:957 ../libfdisk/newtfsedit.c:487
# ../libfdisk/gnomefsedit.c:957 ../libfdisk/newtfsedit.c:487
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Niste izabrali taХku montiranja za ovu particiju. Da li ste sigurni da "
-"╬elite to da uradite?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Niste izabrali taХku montiranja za ovu particiju. Da li ste sigurni da ╬elite to da uradite?"
# ../fsedit.c:895 ../fsedit.c:2478
# ../libfdisk/gnomefsedit.c:1000 ../libfdisk/gnomefsedit.c:1854
@@ -3222,8 +2993,7 @@ msgstr ""
# ../libfdisk/newtfsedit.c:527
# ../libfdisk/gnomefsedit.c:1000 ../libfdisk/gnomefsedit.c:1854
# ../libfdisk/newtfsedit.c:527
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Gre╧ka taХke montiranja"
@@ -3232,12 +3002,8 @@ msgstr "Gre╧ka taХke montiranja"
# ../libfdisk/gnomefsedit.c:1001 ../libfdisk/newtfsedit.c:528
# ../libfdisk/gnomefsedit.c:1001 ../libfdisk/newtfsedit.c:528
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Zahtevana taХka montiranja je ili lo╧a, ili se veФ koristi. Molim da "
-"navedete ispravnu taХku montiranja."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Zahtevana taХka montiranja je ili lo╧a, ili se veФ koristi. Molim da navedete ispravnu taХku montiranja."
# ../fsedit.c:913
# ../libfdisk/gnomefsedit.c:1026 ../libfdisk/newtfsedit.c:545
@@ -3252,12 +3018,8 @@ msgstr "Gre╧ka u veliХini"
# ../libfdisk/gnomefsedit.c:1027 ../libfdisk/newtfsedit.c:546
# ../libfdisk/gnomefsedit.c:1027 ../libfdisk/newtfsedit.c:546
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"Zahtevana veliХina nije dobra. Proverite da li je veliХina veФa od nule (0) "
-"i da je navedena u dekadnom formatu (osnova 10)."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "Zahtevana veliХina nije dobra. Proverite da li je veliХina veФa od nule (0) i da je navedena u dekadnom formatu (osnova 10)."
# ../fsedit.c:933
# ../libfdisk/gnomefsedit.c:1062 ../libfdisk/gnomefsedit.c:1967
@@ -3266,8 +3028,7 @@ msgstr ""
# ../libfdisk/newtfsedit.c:581
# ../libfdisk/gnomefsedit.c:1062 ../libfdisk/gnomefsedit.c:1967
# ../libfdisk/newtfsedit.c:581
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Gre╧ka u veliХini swap-a"
@@ -3278,15 +3039,10 @@ msgstr "Gre╧ka u veliХini swap-a"
# ../libfdisk/newtfsedit.c:582
# ../libfdisk/gnomefsedit.c:1063 ../libfdisk/gnomefsedit.c:1968
# ../libfdisk/newtfsedit.c:582
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Napravili ste preveliku swap particiju. Maksimalna veliХina swap particije "
-"je %ld megabajta."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Napravili ste preveliku swap particiju. Maksimalna veliХina swap particije je %ld megabajta."
# ../libfdisk/gnomefsedit.c:1079 ../libfdisk/gnomefsedit.c:1086
# ../libfdisk/gnomefsedit.c:1079 ../libfdisk/gnomefsedit.c:1086
@@ -3301,8 +3057,7 @@ msgstr "Nema ograniХenja za RAID disk"
# ../libfdisk/gnomefsedit.c:1081
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
"Podesili ste RAID particiju bez njenog ograniХenja na jedan disk.\n"
@@ -3320,12 +3075,8 @@ msgstr "Zatvori"
# ../libfdisk/gnomefsedit.c:1088
# ../libfdisk/gnomefsedit.c:1088
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Podesili ste RAID particiju bez njenog ograniХavanja na jedan disk. Molim da "
-"izaberete jedan disk na koji Фete ograniХiti ovu particiju."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Podesili ste RAID particiju bez njenog ograniХavanja na jedan disk. Molim da izaberete jedan disk na koji Фete ograniХiti ovu particiju."
# ../libfdisk/gnomefsedit.c:1267
# ../libfdisk/gnomefsedit.c:1267
@@ -3341,14 +3092,8 @@ msgstr "RAID stavka nekompletna"
# ../libfdisk/gnomefsedit.c:1268
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"RAID ureПaj /dev/%s sadr╬i particije koje nisu alocirane. Ovaj ureПaj Фe "
-"sada biti razlo╬en na sastavne particije. Molim da ponovo sastavite ovaj "
-"RAID ureПaj sa alociranim particijama."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "RAID ureПaj /dev/%s sadr╬i particije koje nisu alocirane. Ovaj ureПaj Фe sada biti razlo╬en na sastavne particije. Molim da ponovo sastavite ovaj RAID ureПaj sa alociranim particijama."
# ../fsedit.c:329 ../fsedit.c:1874
# ../libfdisk/gnomefsedit.c:1361 ../libfdisk/gnomefsedit.c:1380
@@ -3358,8 +3103,7 @@ msgstr ""
# ../libfdisk/gnomefsedit.c:1361 ../libfdisk/gnomefsedit.c:1380
# ../libfdisk/newtfsedit.c:84 ../libfdisk/newtfsedit.c:1482
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Nealocirane particije"
@@ -3370,15 +3114,9 @@ msgstr "Nealocirane particije"
# ../libfdisk/newtfsedit.c:88
# ../libfdisk/gnomefsedit.c:1365 ../libfdisk/gnomefsedit.c:1375
# ../libfdisk/newtfsedit.c:88
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"Postoje neke nealocirane particije na listi tra╬enih particija. Nealocirane "
-"particije su prikazane dole, zajedno sa razlogom zbog koga nisu alocirane."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "Postoje neke nealocirane particije na listi tra╬enih particija. Nealocirane particije su prikazane dole, zajedno sa razlogom zbog koga nisu alocirane."
# ../fsedit.c:536
# ../libfdisk/gnomefsedit.c:1640
@@ -3423,12 +3161,8 @@ msgstr "Niste izabrali taХku montiranja. Potrebno je da to uХinite."
# ../libfdisk/gnomefsedit.c:1855
# ../libfdisk/gnomefsedit.c:1855
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Zahtevana taХka montiranja se veФ koristi. Molim navedite ispravnu taХku "
-"montiranja."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Zahtevana taХka montiranja se veФ koristi. Molim navedite ispravnu taХku montiranja."
# ../libfdisk/gnomefsedit.c:1868
# ../libfdisk/gnomefsedit.c:1868
@@ -3441,12 +3175,8 @@ msgstr "Upozorenje kod pokretanja sa RAID-a"
# ../libfdisk/gnomefsedit.c:1869
# ../libfdisk/gnomefsedit.c:1869
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Izabrali ste ovaj RAID ureПaj kao startnu particiju. Molim proverite da li "
-"sve sastavne particije mogu biti startovane."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Izabrali ste ovaj RAID ureПaj kao startnu particiju. Molim proverite da li sve sastavne particije mogu biti startovane."
# ../lilo.c:335
# ../libfdisk/gnomefsedit.c:1879
@@ -3475,12 +3205,8 @@ msgstr "Kori╧Фen RAID ureПaj"
# ../libfdisk/gnomefsedit.c:1887
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"RAID ureПaj \"/dev/%s\" je veФ pode╧en kao RAID ureПaj. Molim da izaberete "
-"neki drugi."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "RAID ureПaj \"/dev/%s\" je veФ pode╧en kao RAID ureПaj. Molim da izaberete neki drugi."
# ../fsedit.c:1838
# ../libfdisk/gnomefsedit.c:1900
@@ -3494,9 +3220,7 @@ msgstr "Nema dovoljno particija"
# ../libfdisk/gnomefsedit.c:1902
# ../libfdisk/gnomefsedit.c:1902
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr "Niste podesili dovoljno particija za RAID tip koji ste odabrali."
# ../libfdisk/gnomefsedit.c:1909
@@ -3518,14 +3242,8 @@ msgstr "Startne particije (/boot) su dozvoljene samo na RAID-1."
# ../libfdisk/gnomefsedit.c:2012
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"Particija %s veФ postoji u skupu particija za ovaj RAID ureПaj. TaХka "
-"montiranja je postavljena na /boot. Da li ste sigurni da je moguФe da se "
-"sistem pokrene sa ove particije?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "Particija %s veФ postoji u skupu particija za ovaj RAID ureПaj. TaХka montiranja je postavljena na /boot. Da li ste sigurni da je moguФe da se sistem pokrene sa ove particije?"
# ../fsedit.c:1061
# ../libfdisk/gnomefsedit.c:2019
@@ -3646,12 +3364,8 @@ msgstr "Postoje nealocirane particije..."
# ../libfdisk/gnomefsedit.c:2952
# ../libfdisk/gnomefsedit.c:2952
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Morate dodeliti root (/) particiju nekoj 'Linux native' particiji (ext2) ili "
-"RAID particiji da biste nastavili instalaciju."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Morate dodeliti root (/) particiju nekoj 'Linux native' particiji (ext2) ili RAID particiji da biste nastavili instalaciju."
# ../mkswap.c:339
# ../libfdisk/gnomefsedit.c:3067
@@ -3753,12 +3467,8 @@ msgstr "Nema 'root' particije"
# ../libfdisk/newtfsedit.c:1431
# ../libfdisk/newtfsedit.c:1431
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Morate dodeliti root (/) particiju nekoj 'Linux native' particiji (ext2) da "
-"biste nastavili instalaciju."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Morate dodeliti root (/) particiju nekoj 'Linux native' particiji (ext2) da biste nastavili instalaciju."
# ../fsedit.c:1857
# ../libfdisk/newtfsedit.c:1451
@@ -3782,13 +3492,11 @@ msgstr "Morate dodeliti swap particiju da biste nastavili instalaciju."
# ../libfdisk/newtfsedit.c:1484
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"Ostale su nealocirane particije. Ako sada prekinete one neФe biti zapisane "
-"na disk.\n"
+"Ostale su nealocirane particije. Ako sada prekinete one neФe biti zapisane na disk.\n"
"\n"
"Da li ste sigurni da ╬elite da izaПete?"
@@ -3860,14 +3568,8 @@ msgstr "Razno"
# ../loader/devices.c:54
# ../loader/devices.c:54
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Ovaj modul prihvata parametre koji utiХu na njegov rad. Ako ne znate koje "
-"parametre da navedete, jednostavno preskoХite ovaj ekran pritiskom na dugme "
-"\"U redu\"."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Ovaj modul prihvata parametre koji utiХu na njegov rad. Ako ne znate koje parametre da navedete, jednostavno preskoХite ovaj ekran pritiskom na dugme \"U redu\"."
# ../devices.c:923
# ../loader/devices.c:54
@@ -3884,8 +3586,7 @@ msgstr "Parametri modula"
# ../loader/loader.c:311
# ../loader/devices.c:141 ../loader/loader.c:237 ../loader/loader.c:296
# ../loader/loader.c:311
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "UreПaji"
@@ -3899,20 +3600,12 @@ msgid "Failed to mount floppy disk."
msgstr "Neuspe╧no montiranje flopi-diska."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"Flopi-disk koji ste ubacili ne sadr╬i drajvere koji se mogu koristiti sa "
-"ovim izdanjem Red Hat Linux-a."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "Flopi-disk koji ste ubacili ne sadr╬i drajvere koji se mogu koristiti sa ovim izdanjem Red Hat Linux-a."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Koji drajver da probam? Ako se drjver koji je vama potreban ne pojavljuje u "
-"ovoj listi, a imate posebnu disketu, molim pritisnite F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Koji drajver da probam? Ako se drjver koji je vama potreban ne pojavljuje u ovoj listi, a imate posebnu disketu, molim pritisnite F2."
# ../devices.c:459
# ../loader/devices.c:120
@@ -3970,7 +3663,7 @@ msgstr "Gre╧ka u liniji %d fajla za brzi poХetak %s."
# ../loader/lang.c:232
# ../loader/lang.c:245
# ../loader/lang.c:245
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "Izaberite jezik"
@@ -3978,14 +3671,14 @@ msgstr "Izaberite jezik"
# ../text.py:139 ../text.py:820
# ../loader/lang.c:501
# ../loader/lang.c:501
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Tip tastature"
# ../printercfg.c:484
# ../loader/lang.c:502
# ../loader/lang.c:502
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Koju vrstu tastature imate?"
@@ -4015,23 +3708,21 @@ msgstr "Hard-disk"
# ../loader/loader.c:122
# ../loader/loader.c:122
# ../loader/loader.c:122
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Dobrodo╧li u Red Hat Linux"
# ../loader/loader.c:124
# ../loader/loader.c:124
# ../loader/loader.c:124
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> kretanje | <Space> za izbor stavke | <F12> sledeФi ekran "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> kretanje | <Space> za izbor stavke | <F12> sledeФi ekran "
# ../loader/loader.c:226
# ../loader/loader.c:226
# ../loader/loader.c:226
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
@@ -4039,7 +3730,7 @@ msgstr "SCSI"
# ../loader/loader.c:238
# ../loader/loader.c:238
# ../loader/loader.c:238
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Kakav vrstu ureПaja biste ╬eleli da dodate"
@@ -4047,7 +3738,7 @@ msgstr "Kakav vrstu ureПaja biste ╬eleli da dodate"
# ../loader/loader.c:285
# ../loader/loader.c:285
# ../loader/loader.c:285
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "U va╧em sistemu pronaПeni su sledeФi ureПaji:"
@@ -4055,26 +3746,22 @@ msgstr "U va╧em sistemu pronaПeni su sledeФi ureПaji:"
# ../loader/loader.c:287 ../loader/loader.c:311
# ../loader/loader.c:287 ../loader/loader.c:311
# ../loader/loader.c:287 ../loader/loader.c:311
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "Dodaj ureПaj"
# ../loader/loader.c:312
# ../loader/loader.c:312
# ../loader/loader.c:312
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"Nijedan drajver za ureПaje nije uХitan za va╧ sistem. Da li biste da se neki "
-"drajveri sada uХitaju?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "Nijedan drajver za ureПaje nije uХitan za va╧ sistem. Da li biste da se neki drajveri sada uХitaju?"
# ../install2.c:836
# ../loader/loader.c:393 ../loader/loader.c:395
# ../loader/loader.c:393 ../loader/loader.c:395
# ../loader/loader.c:393 ../loader/loader.c:395
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "UХitavanje"
@@ -4082,7 +3769,7 @@ msgstr "UХitavanje"
# ../loader/loader.c:447
# ../loader/loader.c:447
# ../loader/loader.c:447
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "UХitavanje ramdiska druge faze..."
@@ -4090,7 +3777,7 @@ msgstr "UХitavanje ramdiska druge faze..."
# ../loader/loader.c:451
# ../loader/loader.c:451
# ../loader/loader.c:451
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Gre╧ka uХitavanja ramdisk-a."
@@ -4098,7 +3785,7 @@ msgstr "Gre╧ka uХitavanja ramdisk-a."
# ../loader/loader.c:572
# ../loader/loader.c:572
# ../loader/loader.c:572
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Hard-diskovi"
@@ -4106,33 +3793,23 @@ msgstr "Hard-diskovi"
# ../loader/loader.c:573
# ../loader/loader.c:573
# ../loader/loader.c:573
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"Izgleda da nemate nijedan hard-disk u va╧em sistemu! Da li biste hteli da "
-"podesite dodatne ureПaje?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "Izgleda da nemate nijedan hard-disk u va╧em sistemu! Da li biste hteli da podesite dodatne ureПaje?"
# ../latemethods.c:183
# ../loader/loader.c:586
# ../loader/loader.c:586
# ../loader/loader.c:586
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Na kojoj particiji i u kom direktorijumu se nalaze RedHat/RPMS i RedHat/base "
-"direktorijumi? Ako disk koji koristite nijke naveden ovde, pritisnite F2 da "
-"biste podesili dodatne ureПaje."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Na kojoj particiji i u kom direktorijumu se nalaze RedHat/RPMS i RedHat/base direktorijumi? Ako disk koji koristite nijke naveden ovde, pritisnite F2 da biste podesili dodatne ureПaje."
# ../latemethods.c:202
# ../loader/loader.c:600
# ../loader/loader.c:600
# ../loader/loader.c:600
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Direktorijum sa Red Hatom:"
@@ -4140,7 +3817,7 @@ msgstr "Direktorijum sa Red Hatom:"
# ../loader/loader.c:622
# ../loader/loader.c:620
# ../loader/loader.c:620
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Izaberite particiju"
@@ -4148,7 +3825,7 @@ msgstr "Izaberite particiju"
# ../loader/loader.c:666
# ../loader/loader.c:664
# ../loader/loader.c:664
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "Izgleda da ureПaj %s ne sadr╬i Red Hat-ovo instalaciono stablo."
@@ -4156,19 +3833,15 @@ msgstr "Izgleda da ureПaj %s ne sadr╬i Red Hat-ovo instalaciono stablo."
# ../loader/loader.c:711
# ../loader/loader.c:709
# ../loader/loader.c:709
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"Nisam mogao da pronaПem CD-ROM sa Red Hat Linux-om ni u jednom od va╧ih "
-"CD-ROM drajvova. Ubacite taj CD i pritisnite \"U redu\" da poku╧ate opet."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "Nisam mogao da pronaПem CD-ROM sa Red Hat Linux-om ni u jednom od va╧ih CD-ROM drajvova. Ubacite taj CD i pritisnite \"U redu\" da poku╧ate opet."
# ../earlymethods.c:540 ../latemethods.c:855
# ../loader/loader.c:844
# ../loader/loader.c:842
# ../loader/loader.c:842
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Izgleda da taj direktorijum ne sadr╬i Red Hat instalaciono stablo."
@@ -4176,14 +3849,14 @@ msgstr "Izgleda da taj direktorijum ne sadr╬i Red Hat instalaciono stablo."
# ../loader/loader.c:849
# ../loader/loader.c:847
# ../loader/loader.c:847
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Nisam mogao da montiram taj direktorijum na serveru"
# ../loader/loader.c:934
# ../loader/loader.c:932
# ../loader/loader.c:932
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
@@ -4191,14 +3864,14 @@ msgstr "FTP"
# ../loader/loader.c:935
# ../loader/loader.c:933
# ../loader/loader.c:933
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Preuzimanje ramdisk-a druge faze nije uspelo"
# ../loader/loader.c:1038
# ../loader/loader.c:1057
# ../loader/loader.c:1057
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "NaХin spasavanja"
@@ -4206,14 +3879,14 @@ msgstr "NaХin spasavanja"
# ../loader/loader.c:1039
# ../loader/loader.c:1058
# ../loader/loader.c:1058
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "NaХin instalacije"
# ../loader/loader.c:1041
# ../loader/loader.c:1060
# ../loader/loader.c:1060
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Koja vrsta medija sadr╬i fajl za oporavak?"
@@ -4221,7 +3894,7 @@ msgstr "Koja vrsta medija sadr╬i fajl za oporavak?"
# ../loader/loader.c:1043
# ../loader/loader.c:1062
# ../loader/loader.c:1062
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Kakav tip medija sadr╬i pakete koje treba instalirati?"
@@ -4229,14 +3902,14 @@ msgstr "Kakav tip medija sadr╬i pakete koje treba instalirati?"
# ../loader/loader.c:1357
# ../loader/loader.c:1388
# ../loader/loader.c:1388
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Ne mogu da naПem ks.cfg na startnoj disketi."
# ../loader/loader.c:1466
# ../loader/loader.c:1500
# ../loader/loader.c:1500
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC kartica"
@@ -4244,7 +3917,7 @@ msgstr "PC kartica"
# ../loader/loader.c:1466
# ../loader/loader.c:1500
# ../loader/loader.c:1500
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "Inicijalizacija PC kartica..."
@@ -4294,12 +3967,8 @@ msgstr ""
# ../loader/net.c:228
# ../loader/net.c:228
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Molim unesite IP konfiguraciju za ovu ma╧inu. Svaka stavka treba da bude "
-"uneta kao IP adresa (na primer, 123.45.67.89)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Molim unesite IP konfiguraciju za ovu ma╧inu. Svaka stavka treba da bude uneta kao IP adresa (na primer, 123.45.67.89)."
# ../loader/net.c:270
# ../loader/net.c:270
@@ -4423,11 +4092,8 @@ msgstr "Mre╬ni ureПaj"
# ../loader/net.c:695
# ../loader/net.c:695
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> kretanje | <Space> za izbor stavke | <F12> sledeФi ekran "
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> kretanje | <Space> za izbor stavke | <F12> sledeФi ekran "
# ../loader/net.c:696
# ../loader/net.c:696
@@ -4565,21 +4231,14 @@ msgstr "Morate uneti direktorijum."
# ../loader/urls.c:268
# ../loader/urls.c:268
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Ako koristite ne-anonimni ftp, unesite korisniХko ime i lozinku. Ako "
-"koristite FTP proxy, unesite njegovo ime."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Ako koristite ne-anonimni ftp, unesite korisniХko ime i lozinku. Ako koristite FTP proxy, unesite njegovo ime."
# ../loader/urls.c:274
# ../loader/urls.c:274
# ../loader/urls.c:274
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
msgstr "Ako ╬elite da koristite HTTP 'proxy' server, unesite njegovo ime."
# ../latemethods.c:574
@@ -4634,14 +4293,8 @@ msgstr "UХitavanje SCSI drajvera"
# ../libfdisk/fsedit.c:950
# ../libfdisk/fsedit.c:950
# ../libfdisk/fsedit.c:950
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "Za vreme Хitanja bloХnog ureПaja %s pronaПen je disk sa o╧teФenom 'Sun' "
-#~ "oznakom diska. Morate koristiti 'fdisk' da biste zapisali novu oznaku na "
-#~ "ovaj ureПaj."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "Za vreme Хitanja bloХnog ureПaja %s pronaПen je disk sa o╧teФenom 'Sun' oznakom diska. Morate koristiti 'fdisk' da biste zapisali novu oznaku na ovaj ureПaj."
# ../fsedit.c:395
# ../libfdisk/fsedit.c:954
@@ -4654,25 +4307,15 @@ msgstr "UХitavanje SCSI drajvera"
# ../libfdisk/gnomefsedit.c:2966 ../libfdisk/gnomefsedit.c:2979
# ../libfdisk/gnomefsedit.c:2966 ../libfdisk/gnomefsedit.c:2979
# ../libfdisk/gnomefsedit.c:2966 ../libfdisk/gnomefsedit.c:2979
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Morate dodeliti startnu (/boot) particiju nekoj 'Linux native' particiji "
-#~ "(ext2) ili RAID-1 particiji da biste nastavili instalaciju."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Morate dodeliti startnu (/boot) particiju nekoj 'Linux native' particiji (ext2) ili RAID-1 particiji da biste nastavili instalaciju."
# ../fsedit.c:1839
# ../libfdisk/gnomefsedit.c:2994
# ../libfdisk/gnomefsedit.c:2994
# ../libfdisk/gnomefsedit.c:2994
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Po╧to ste dodelili 'root' particiju (/) RAID ureПaju, morate takoПe da "
-#~ "dodelite startnu (/boot) particiju nekoj 'Linux native' particiji (ext2) ili "
-#~ "RAID-1 particiji da biste nastavili instalaciju."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Po╧to ste dodelili 'root' particiju (/) RAID ureПaju, morate takoПe da dodelite startnu (/boot) particiju nekoj 'Linux native' particiji (ext2) ili RAID-1 particiji da biste nastavili instalaciju."
# ../iw/installpath.py:183
# ../iw/installpath.py:183
@@ -4779,28 +4422,12 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Ne mogu nigde da pronaПem ureПaj na va╧em sistemu!"
# ../devices.c:855
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "U nekim sluХajevima, drajver %s zahteva dodatne informacije za pravilan rad, "
-#~ "mada mo╬e lepo da radi i bez njih. Da li hoФete sami da unesete dodatne "
-#~ "podatke za njega, ili da ih drajver sam odredi? MoguФe je da Фe proba "
-#~ "zaglaviti va╧ raХunar, ali neФe naneti nikakvu ╧tetu."
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "U nekim sluХajevima, drajver %s zahteva dodatne informacije za pravilan rad, mada mo╬e lepo da radi i bez njih. Da li hoФete sami da unesete dodatne podatke za njega, ili da ih drajver sam odredi? MoguФe je da Фe proba zaglaviti va╧ raХunar, ali neФe naneti nikakvu ╧tetu."
# ../devices.c:864
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "U mnogim sluХajevima drajver %s zahteva dodatne informacije o va╧em "
-#~ "hardveru. Ako ╬elite, neke uobiХajene vrednosti ovih parametara Фe biti "
-#~ "isprobane. Ovo mo╬e zaglaviti raХunar, mada neФe naneti nikakvu ╧tetu."
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "U mnogim sluХajevima drajver %s zahteva dodatne informacije o va╧em hardveru. Ako ╬elite, neke uobiХajene vrednosti ovih parametara Фe biti isprobane. Ovo mo╬e zaglaviti raХunar, mada neФe naneti nikakvu ╧tetu."
# ../devices.c:914 ../devices.c:923
#~ msgid "Module options:"
@@ -4812,9 +4439,7 @@ msgstr "UХitavanje SCSI drajvera"
# ../doit.c:103
#~ msgid "Failed to open %s. No upgrade log will be kept."
-#~ msgstr ""
-#~ "Nisam mogao da otvorim %s, pa ne mogu da saХuvam bele╧ke o a╬uriranju "
-#~ "sistema."
+#~ msgstr "Nisam mogao da otvorim %s, pa ne mogu da saХuvam bele╧ke o a╬uriranju sistema."
# ../doit.c:125
#~ msgid "Fatal error opening RPM database"
@@ -4877,12 +4502,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "nfs komanda nije potpuna"
# ../earlymethods.c:632
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Nisam mogao da montiram flopi-disk. Molim ubacite Red Hat PCMCIA disk, ili "
-#~ "pritisnite 'Obustavi' da izaberete drugaХiji naХin instalacije."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Nisam mogao da montiram flopi-disk. Molim ubacite Red Hat PCMCIA disk, ili pritisnite 'Obustavi' da izaberete drugaХiji naХin instalacije."
# ../install.c:165
#~ msgid "Loading PCMCIA Support"
@@ -4893,13 +4514,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Dodatni disk"
# ../earlymethods.c:632
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Nisam mogao da montiram flopi-disk. Molim ubacite Red Hat dodatni "
-#~ "instalacioni disk, ili pritisnite 'Obustavi' da izaberete drugaХiji naХin "
-#~ "instalacije."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Nisam mogao da montiram flopi-disk. Molim ubacite Red Hat dodatni instalacioni disk, ili pritisnite 'Obustavi' da izaberete drugaХiji naХin instalacije."
# ../earlymethods.c:607 ../earlymethods.c:631
#~ msgid "Loading Supplemental Disk..."
@@ -4910,30 +4526,16 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Disk sa drajverima"
# ../earlymethods.c:608
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "Ovaj metod instalacije zahteva disk sa drajverima. Molim uklonite dodatni "
-#~ "disk koji je trenutno u drajvu i zamenite ga Red Hat diskom sa modulima."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "Ovaj metod instalacije zahteva disk sa drajverima. Molim uklonite dodatni disk koji je trenutno u drajvu i zamenite ga Red Hat diskom sa modulima."
# ../earlymethods.c:632
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Nisam mogao da montiram flopi-disk. Molim ubacite Red Hat disk sa modulima, "
-#~ "ili pritisnite 'Obustavi' da izaberete drugaХiji naХin instalacije."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Nisam mogao da montiram flopi-disk. Molim ubacite Red Hat disk sa modulima, ili pritisnite 'Obustavi' da izaberete drugaХiji naХin instalacije."
# ../earlymethods.c:608
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "Ovaj metod instalacije zahteva dva dodatna diska. Molim uklonite startni "
-#~ "disk koji je trenutno u drajvu i zamenite ga dodatnim Red Hat instalacionim "
-#~ "diskom."
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "Ovaj metod instalacije zahteva dva dodatna diska. Molim uklonite startni disk koji je trenutno u drajvu i zamenite ga dodatnim Red Hat instalacionim diskom."
# ../earlymethods.c:478 ../earlymethods.c:485
#~ msgid "hd command"
@@ -4973,8 +4575,7 @@ msgstr "UХitavanje SCSI drajvera"
# ../fs.c:127
#~ msgid "Mount points may only printable characters."
-#~ msgstr ""
-#~ "TaХke montiranja moraju da sadr╬e samo znake koji se mogu od╧tampati."
+#~ msgstr "TaХke montiranja moraju da sadr╬e samo znake koji se mogu od╧tampati."
# ../fs.c:142
#~ msgid "System partitions must be on Linux Native partitions."
@@ -5001,14 +4602,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "montiranje nije uspelo: %s"
# ../fsedit.c:429
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "Tabela particija na ureПaju %s je o╧teФena. Da biste kreirali novu particiju "
-#~ "ona mora najpre biti inicijalizovana. Mo╬ete navesti \"zerombr yes\" u fajlu "
-#~ "za brzi poХetak da se ovo automatski izvr╧i"
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "Tabela particija na ureПaju %s je o╧teФena. Da biste kreirali novu particiju ona mora najpre biti inicijalizovana. Mo╬ete navesti \"zerombr yes\" u fajlu za brzi poХetak da se ovo automatski izvr╧i"
# ../fsedit.c:2303
#~ msgid "Zero Partition Table"
@@ -5020,8 +4615,7 @@ msgstr "UХitavanje SCSI drajvera"
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "lo╧ argument 'zerombr' komande brzog starta: %s.\n"
-#~ "Mora biti 'on', '1' ili 'yes' da omoguФite, ili 'off' '0' ili 'no' da "
-#~ "onemoguФite."
+#~ "Mora biti 'on', '1' ili 'yes' da omoguФite, ili 'off' '0' ili 'no' da onemoguФite."
# ../fsedit.c:2350
#~ msgid "Clear Partition Command"
@@ -5044,12 +4638,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Opcija ignorisana"
# ../fsedit.c:2420
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "Opcija --maxsize za particiju %s je ignorisana. Proverite da nije sluХajno "
-#~ "veФa od opcije --size."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "Opcija --maxsize za particiju %s je ignorisana. Proverite da nije sluХajno veФa od opcije --size."
# ../fsedit.c:2479
#~ msgid "The mount point %s is already in use."
@@ -5144,20 +4734,12 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Pregledam hard-diskove..."
# ../hd.c:241
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "Nemate nijedan tvrdi disk! Mora da ste zaboravili da konfiguri╧ete SCSI "
-#~ "kontroler."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "Nemate nijedan tvrdi disk! Mora da ste zaboravili da konfiguri╧ete SCSI kontroler."
# ../hd.c:254
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "Da biste instalirali Red Hat Linux, morate imati najmanje jednu particiju od "
-#~ "150 MB odreПenu samo za Linux."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "Da biste instalirali Red Hat Linux, morate imati najmanje jednu particiju od 150 MB odreПenu samo za Linux."
# ../hd.c:279
#~ msgid "Partition Disks"
@@ -5176,29 +4758,16 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Podr╧ka za PCMCIA"
# ../install.c:150
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "Da li treba da koristite PCMCIA ureПaje tokom instalacije? Odgovorite sa "
-#~ "'ne' na ovo pitanje ako vam PCMCIA podr╧ka treba samo posle instalacije. "
-#~ "Podr╧ka za PCMCIA vam nije potrebna ako instalirate Red Hat Linux na laptop "
-#~ "sa ugraПenim CDROM ureПajem."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "Da li treba da koristite PCMCIA ureПaje tokom instalacije? Odgovorite sa 'ne' na ovo pitanje ako vam PCMCIA podr╧ka treba samo posle instalacije. Podr╧ka za PCMCIA vam nije potrebna ako instalirate Red Hat Linux na laptop sa ugraПenim CDROM ureПajem."
# ../install.c:149
#~ msgid "PCMCIA Support Disk"
#~ msgstr "Disk sa PCMCIA podr╧kom"
# ../earlymethods.c:608
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "Podr╧ka za PCMCIA zahteva disk sa istoimenom podr╧kom. Molim uklonite "
-#~ "startni disk koji je trenutno u drajvu i zamenite ga Red Hat diskom sa "
-#~ "PCMCIA podr╧kom."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "Podr╧ka za PCMCIA zahteva disk sa istoimenom podr╧kom. Molim uklonite startni disk koji je trenutno u drajvu i zamenite ga Red Hat diskom sa PCMCIA podr╧kom."
# ../install.c:171
#~ msgid "Starting PCMCIA services..."
@@ -5301,14 +4870,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Dnevnik a╬uriranja"
# ../install2.c:473
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "Potpun dnevnik a╬uriranja naФi Фete u /tmp/upgrade.log kada se a╬uriranje "
-#~ "zavr╧i. Molim proХitajte dnevnik posle resetovanja kako biste se uverili da "
-#~ "je sve pravilno uraПeno."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "Potpun dnevnik a╬uriranja naФi Фete u /tmp/upgrade.log kada se a╬uriranje zavr╧i. Molim proХitajte dnevnik posle resetovanja kako biste se uverili da je sve pravilno uraПeno."
# ../install2.c:572 ../install2.c:579 ../install2.c:585
#~ msgid "rootpw command"
@@ -5331,20 +4894,12 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Put instalacije"
# ../install2.c:820
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "Da li ╬elite da instalirate novi sistem ili da a╬urirate sistem koji veФ ima "
-#~ "Red Hat Linux 2.0 ili noviji?"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "Da li ╬elite da instalirate novi sistem ili da a╬urirate sistem koji veФ ima Red Hat Linux 2.0 ili noviji?"
# ../install2.c:851
-#~ msgid ""
-#~ "What type of machine are you installing? For maximum flexibility, choose "
-#~ "\"Custom\"."
-#~ msgstr ""
-#~ "Koju vrstu ma╧ine instalirate? Za maksimalnu fleksibilnost, odaberite "
-#~ "\"Izbor po ╬elji\"."
+#~ msgid "What type of machine are you installing? For maximum flexibility, choose \"Custom\"."
+#~ msgstr "Koju vrstu ma╧ine instalirate? Za maksimalnu fleksibilnost, odaberite \"Izbor po ╬elji\"."
# ../install2.c:929
#~ msgid "Converting RPM database..."
@@ -5362,28 +4917,19 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
#~ msgstr ""
#~ "Dogodila se gre╧ka tokom koraka \"%s\" instalacije.\n"
#~ "\n"
-#~ "Mo╬ete da ponovite ovaj korak, da se vratite na prethodni korak instalacije, "
-#~ "ili da vidite meni instalacionih koraka koji Фe vam omoguФiti da se "
-#~ "slobodnije kreФete u instalaciji. Ne preporuХuje se da koristite meni osim "
-#~ "ako veФ dobro ne poznajete Red Hat Linuks. ╘ta biste hteli da uradite?"
+#~ "Mo╬ete da ponovite ovaj korak, da se vratite na prethodni korak instalacije, ili da vidite meni instalacionih koraka koji Фe vam omoguФiti da se slobodnije kreФete u instalaciji. Ne preporuХuje se da koristite meni osim ako veФ dobro ne poznajete Red Hat Linuks. ╘ta biste hteli da uradite?"
# ../install2.c:993
#~ msgid " Continue with install"
#~ msgstr " Nastavi instalaciju"
# ../install2.c:1005
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
-#~ msgstr ""
-#~ "Koji korak biste izvr╧ili? Koraci koji uz sebe imaju * su veФ uraПeni."
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
+#~ msgstr "Koji korak biste izvr╧ili? Koraci koji uz sebe imaju * su veФ uraПeni."
# ../install2.c:1209
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
@@ -5454,12 +5000,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Nema swap prostora"
# ../mkswap.c:357
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "Koje particije biste koristili kao swap prostor? To Фe uni╧titi sve podatke "
-#~ "koji postoje na toj particiji."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "Koje particije biste koristili kao swap prostor? To Фe uni╧titi sve podatke koji postoje na toj particiji."
# ../mkswap.c:420
#~ msgid "Active Swap Space"
@@ -5482,12 +5024,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Ispitivanje Ethernet kartice"
# ../net.c:305
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
-#~ msgstr ""
-#~ "Ethernet ispitivanje nije na╧lo karticu u va╧em sistemu. Pritisnite <Enter> "
-#~ "da sami podesite karticu."
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
+#~ msgstr "Ethernet ispitivanje nije na╧lo karticu u va╧em sistemu. Pritisnite <Enter> da sami podesite karticu."
# ../net.c:507
#~ msgid "Static IP address"
@@ -5510,12 +5048,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "mre╬noj komandi za brzi poХetak nedostaje IP adresa"
# ../net.c:664
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
-#~ msgstr ""
-#~ "Kakva treba da je IP informacija? Ako vam je sistem-administrator dao "
-#~ "nekakvu IP adresu, onda izaberite statiХku IP."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
+#~ msgstr "Kakva treba da je IP informacija? Ako vam je sistem-administrator dao nekakvu IP adresu, onda izaberite statiХku IP."
# ../net.c:700
#~ msgid "Sending BOOTP request..."
@@ -5534,24 +5068,12 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "neuspelo otvaranje datoteke: %s"
# ../net.c:1114
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
-#~ msgstr ""
-#~ "Ne mogu automatski da odredim ime raХunara. Pritisnite <Enter> da biste "
-#~ "uneli ime hosta."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
+#~ msgstr "Ne mogu automatski da odredim ime raХunara. Pritisnite <Enter> da biste uneli ime hosta."
# ../net.c:1121
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
-#~ msgstr ""
-#~ "Molim unesite ime va╧eg domena, ime raХunara, kao i IP adrese dodatnih "
-#~ "'nameserver'-a. Ime va╧eg raХunara treba da bude puno kvalifikovano ime, kao "
-#~ "na pr. mojkomp.mojatezga.mojduФan.com. Ako nemate dodatnih 'nameserver'-a, "
-#~ "ostavite ta polja prazna."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
+#~ msgstr "Molim unesite ime va╧eg domena, ime raХunara, kao i IP adrese dodatnih 'nameserver'-a. Ime va╧eg raХunara treba da bude puno kvalifikovano ime, kao na pr. mojkomp.mojatezga.mojduФan.com. Ako nemate dodatnih 'nameserver'-a, ostavite ta polja prazna."
# ../net.c:1134
#~ msgid "Host name:"
@@ -5582,11 +5104,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "LAN mre╬a je veФ pode╧ena. Da li ╬elite da:"
# ../net.c:1409
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
-#~ msgstr ""
-#~ "Da li ╬elite da podesite LAN (ali NE modemski pristup) mre╬u za va╧ sistem?"
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
+#~ msgstr "Da li ╬elite da podesite LAN (ali NE modemski pristup) mre╬u za va╧ sistem?"
# ../pkgs.c:193
#~ msgid "Cannot open components file: %s"
@@ -5669,8 +5188,7 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "<F1> Фe vam prikazati informacije o ovom drajveru za ╧tampaХ."
# ../printercfg.c:590
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
+#~ msgid "You may now configure the paper size and resolution for this printer."
#~ msgstr "Mo╬ete podesiti veliХinu papira i rezoluciju ovog ╧tampaХa."
# ../printercfg.c:599
@@ -5702,11 +5220,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Pode╧avanje 'Uniprint' drajvera"
# ../printercfg.c:937
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
-#~ msgstr ""
-#~ "Na koji port je va╧ ╧tampaХ povezan (/dev/lp0 odgovara LPT1: u DOS-u)?"
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr "Na koji port je va╧ ╧tampaХ povezan (/dev/lp0 odgovara LPT1: u DOS-u)?"
# ../printercfg.c:944
#~ msgid ""
@@ -5745,14 +5260,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Opcije za udaljeni lpd ╧tampaХ"
# ../printercfg.c:1018
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "Da biste mogli da koristite udaljeni red poslova za ╧tampu morate navesti "
-#~ "ime hosta na kome je server za ╧tampaХ i ime reda poslova za ╧tampu na tom "
-#~ "serveru u koji Фe se sme╧tati sve ╧to se po╧alje na ╧tampaХ."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "Da biste mogli da koristite udaljeni red poslova za ╧tampu morate navesti ime hosta na kome je server za ╧tampaХ i ime reda poslova za ╧tampu na tom serveru u koji Фe se sme╧tati sve ╧to se po╧alje na ╧tampaХ."
# ../printercfg.c:1206 ../printercfg.c:1249
#~ msgid "Printer Server:"
@@ -5767,16 +5276,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Opcije NetWare ╧tampaХa"
# ../printercfg.c:1061
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "Da biste mogli da ╧tampate na NetWare ╧tampaХ, treba da navedete ime NetWare "
-#~ "servera ╧tampaХa (koje nije uvek isto kao TCP/IP ime ma╧ine), kao i ime reda "
-#~ "za ╧tampu za ╧tampaХ kome ╬elite da pristupite; treba da navedete i sva "
-#~ "korisniХka imena i lozinke."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "Da biste mogli da ╧tampate na NetWare ╧tampaХ, treba da navedete ime NetWare servera ╧tampaХa (koje nije uvek isto kao TCP/IP ime ma╧ine), kao i ime reda za ╧tampu za ╧tampaХ kome ╬elite da pristupite; treba da navedete i sva korisniХka imena i lozinke."
# ../latemethods.c:889
#~ msgid "SMB server host:"
@@ -5795,17 +5296,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "SMP/Windows 95/NT opcije ╧tampaХa"
# ../printercfg.c:1061
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "Da biste mogli da ╧tampate na SMB ╧tampaХ, treba da navedete ime SMB "
-#~ "raХunara (koje nije uvek isto kao TCP/IP ime ma╧ine) i, verovatno, IP adresu "
-#~ "╧tampaХevog servera, kao i deljeno ime ╧tampaХa kome pristupate; takoПe, "
-#~ "biФe vam potrebni podaci o korisniХkim imenima, lozinkama i radnim grupama."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "Da biste mogli da ╧tampate na SMB ╧tampaХ, treba da navedete ime SMB raХunara (koje nije uvek isto kao TCP/IP ime ma╧ine) i, verovatno, IP adresu ╧tampaХevog servera, kao i deljeno ime ╧tampaХa kome pristupate; takoПe, biФe vam potrebni podaci o korisniХkim imenima, lozinkama i radnim grupama."
# ../printercfg.c:1105 ../printercfg.c:1199 ../printercfg.c:1221
#~ msgid "Spool directory:"
@@ -5816,14 +5308,8 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Standardne opcije ╧tampaХa"
# ../printercfg.c:1108
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Svaki red za ╧tampu (u koji se sla╬u poslovi za ╧tampanje) zahteva ime "
-#~ "(obiХno lp) i 'spool' direktorijum koji uz to ide. Koje ime i direktorijum "
-#~ "da koristim za ovaj red za ╧tampu?"
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Svaki red za ╧tampu (u koji se sla╬u poslovi za ╧tampanje) zahteva ime (obiХno lp) i 'spool' direktorijum koji uz to ide. Koje ime i direktorijum da koristim za ovaj red za ╧tampu?"
# ../printercfg.c:1137
#~ msgid "Would you like to configure a printer?"
@@ -5952,9 +5438,7 @@ msgstr "UХitavanje SCSI drajvera"
#~ "%s"
# ../fsedit.c:400 ../fsedit.c:463
-#~ msgid ""
-#~ "An error occurred reading the partition table for the block device %s. The "
-#~ "error was:"
+#~ msgid "An error occurred reading the partition table for the block device %s. The error was:"
#~ msgstr "Gre╧ka kod Хitanja tabele particija za bloХni ureПaj %s. Gre╧ka je:"
# ../printercfg.c:1054
@@ -5998,7 +5482,5 @@ msgstr "UХitavanje SCSI drajvera"
#~ msgstr "Ne mogu da pristupim ma╧ini: %s\n"
# ../lilo.c:93
-#~ msgid ""
-#~ "Would you like to install or configure the SILO bootloader on your system?"
-#~ msgstr ""
-#~ "Da li biste da instalirate ili podesite SILO starter na va╧em sistemu?"
+#~ msgid "Would you like to install or configure the SILO bootloader on your system?"
+#~ msgstr "Da li biste da instalirate ili podesite SILO starter na va╧em sistemu?"
diff --git a/po/tr.po b/po/tr.po
index e391bbb4c..52805a3b9 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rhinstall\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-09-20 12:00+0200\n"
"Last-Translator: GЖrkem гetin <gorkem@gelecek.com.tr>\n"
"Language-Team: Gelecek A.ч <gorkem@gelecek.com.tr>\n"
@@ -13,93 +13,67 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-9\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "щleri"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Geri"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "YardЩmЩ GЖster"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "YardЩmЩ Kapat"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "Bitti"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "гevrimiГi YardЩm"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "Dil SeГimi"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Red Hat Linux Kurucusu"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Red Hat Linux Kurucusu"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Red Hat Linux Kurucusu"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Red Hat Linux Kurucusu"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
-msgstr ""
-"Diskinizdeki bilgileri yitirmek Эzeresiniz! Bunu yapmak istediПinizdenemin "
-"misiniz?"
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
+msgstr "Diskinizdeki bilgileri yitirmek Эzeresiniz! Bunu yapmak istediПinizdenemin misiniz?"
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "Kurulum sЩrasЩnda hangi dili kullanmak istiyorsunuz?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "Tamam"
@@ -119,8 +93,7 @@ msgstr "/dev/ttyS2 (DOS altЩnda COM3)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (DOS altЩnda COM4)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "AygЩt"
@@ -130,26 +103,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "Fare hangi aygЩt Эzerinde bulunuyor? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "Tamam"
@@ -201,12 +155,7 @@ msgstr "Kurulum Tipi"
msgid "What type of system would you like to install?"
msgstr "Ne tЭr bir sistem kurmak istiyorsunuz?"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Hata"
@@ -227,34 +176,14 @@ msgid "Customize Packages to Upgrade"
msgstr "GЭncellenecek Paketlerin SeГimi"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Kurulu bulunan paketler ve bunlarЩn gereksinim duyduklarЩ paketler kurulmak "
-"Эzere seГildiler. GЭncellenecek paketlerin listesini deПiЧtirmek istiyor "
-"musunuz?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Kurulu bulunan paketler ve bunlarЩn gereksinim duyduklarЩ paketler kurulmak Эzere seГildiler. GЭncellenecek paketlerin listesini deПiЧtirmek istiyor musunuz?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Evet"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "HayЩr"
@@ -266,22 +195,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Red Hat Linux'a HoЧgeldiniz!\n"
"\n"
-"Kurulum konusunda ayrЩntЩlЩ bilgiyi Red Hat Software'den edinebileceПiniz "
-"resmi Red Hat Linux Kurulum KЩlavuzu'nda bulabilirsiniz. Bu belgeye "
-"eriЧebiliyorsanЩz devam etmeden Жnce kurulumla ilgili bЖlЭmleri okumanЩz "
-"yararlЩ olacaktЩr.\n"
+"Kurulum konusunda ayrЩntЩlЩ bilgiyi Red Hat Software'den edinebileceПiniz resmi Red Hat Linux Kurulum KЩlavuzu'nda bulabilirsiniz. Bu belgeye eriЧebiliyorsanЩz devam etmeden Жnce kurulumla ilgili bЖlЭmleri okumanЩz yararlЩ olacaktЩr.\n"
"\n"
-"Resmi Red Hat Linux daПЩtЩmЩnЩ aldЩysanЩz, bunu web sitemiz aracЩlЩПЩyla "
-"kaydettirmeyi unutmayЩn: http://www.redhat.com"
+"Resmi Red Hat Linux daПЩtЩmЩnЩ aldЩysanЩz, bunu web sitemiz aracЩlЩПЩyla kaydettirmeyi unutmayЩn: http://www.redhat.com"
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -320,35 +242,21 @@ msgid "Hostname Configuration"
msgstr "Makina AdЩ YapЩlandЩrmasЩ"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"MakinanЩzЩn bir adЩ bulunmalЩdЩr. EПer bir aПa baПlЩysanЩz, aП yЖneticinize "
-"danЩЧmanЩz gerekebilir."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "MakinanЩzЩn bir adЩ bulunmalЩdЩr. EПer bir aПa baПlЩysanЩz, aП yЖneticinize danЩЧmanЩz gerekebilir."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Makine AdЩ"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"AГЩlЩЧ disketi ile sisteminizin normal aГЩlЩЧ yazЩlЩmЩnda bir sorun "
-"ГЩktЩПЩna rahatlЩkla sisteminizi aГabilirsiniz. LILO yЭklemek istemiyorsanЩz "
-"veya bir Чekilde LILO hasar gЖrЭrse aГЩlЩЧ disketini kullanarak sisteminizi "
-"aГabilirsiniz. AГЩlЩЧ disketinin bir yararЩ da diskinizde meydana "
-"gelebilecek olasЩ sorunlarda rescue disketini kullanmadan kolaylЩkla "
-"sisteminizin aГЩlmasЩnЩ saПlamaktЩr. \n"
+"AГЩlЩЧ disketi ile sisteminizin normal aГЩlЩЧ yazЩlЩmЩnda bir sorun ГЩktЩПЩna rahatlЩkla sisteminizi aГabilirsiniz. LILO yЭklemek istemiyorsanЩz veya bir Чekilde LILO hasar gЖrЭrse aГЩlЩЧ disketini kullanarak sisteminizi aГabilirsiniz. AГЩlЩЧ disketinin bir yararЩ da diskinizde meydana gelebilecek olasЩ sorunlarda rescue disketini kullanmadan kolaylЩkla sisteminizin aГЩlmasЩnЩ saПlamaktЩr. \n"
"\n"
"Sisteminiz iГin bir aГЩlЩЧ disketi oluЧturmak ister misiniz?"
@@ -392,12 +300,8 @@ msgid "Installation to begin"
msgstr "Kuruluma baЧlangЩГ"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Kurulum boyunca yapЩlan iЧlemlerin kaydЩnЩ sisteminizi yeniden aГtЩktan "
-"sonra /tmp/install.log dosyasЩnda bulabilirsiniz."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Kurulum boyunca yapЩlan iЧlemlerin kaydЩnЩ sisteminizi yeniden aГtЩktan sonra /tmp/install.log dosyasЩnda bulabilirsiniz."
#: ../text.py:606
msgid "Complete"
@@ -407,41 +311,26 @@ msgstr "Bitti"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"KutlarЩz, kurulum sona erdi.\n"
"\n"
-"Disket sЭrЭcЭnЭzЭ boЧaltЩn ve enter tuЧuna basarak sistemi yeniden baЧlatЩn. "
-"Red Hat Linux'un bu sЭrЭmЭndeki hatalar iГin http://www.redhat.com "
-"adresindeki Errata dosyasЩnЩ okuyun.\n"
-"Sisteminizi nasЩl ayarlayacaПЩnЩza iliЧkin bilgiler resmi Red Hat Linux "
-"KullanЩm KЩlavuzu'nun 'Kurulum SonrasЩ' baЧlЩklЩ bЖlЭmЭnde ele alЩnmaktadЩr."
+"Disket sЭrЭcЭnЭzЭ boЧaltЩn ve enter tuЧuna basarak sistemi yeniden baЧlatЩn. Red Hat Linux'un bu sЭrЭmЭndeki hatalar iГin http://www.redhat.com adresindeki Errata dosyasЩnЩ okuyun.\n"
+"Sisteminizi nasЩl ayarlayacaПЩnЩza iliЧkin bilgiler resmi Red Hat Linux KullanЩm KЩlavuzu'nun 'Kurulum SonrasЩ' baЧlЩklЩ bЖlЭmЭnde ele alЩnmaktadЩr."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Birinci disket sЭrЭcЭsЭne temiz bir disket yerleЧtirin. AГЩlЩЧ "
-"disketininyaratЩlmasЩ sЩrasЩnda disketteki tЭm bilgiler SщLщNECEKTщR."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Birinci disket sЭrЭcЭsЭne temiz bir disket yerleЧtirin. AГЩlЩЧ disketininyaratЩlmasЩ sЩrasЩnda disketteki tЭm bilgiler SщLщNECEKTщR."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Atla"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"AГЩlЩЧ disketi yaratЩlЩrken bir hata oluЧtu. Birinci disket sЭrЭcЭsЭnde (A:) "
-"disketin bulunduПuna emin olun."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "AГЩlЩЧ disketi yaratЩlЩrken bir hata oluЧtu. Birinci disket sЭrЭcЭsЭnde (A:) disketin bulunduПuna emin olun."
#: ../text.py:697
msgid "Package Installation"
@@ -504,19 +393,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> ileri-geri | <BoЧluk> iЧaretle | <F12> sonraki "
-"ekran"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> ileri-geri | <BoЧluk> iЧaretle | <F12> sonraki ekran"
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "HoЧgeldiniz"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "BЖlЭmlendirme"
@@ -536,8 +420,7 @@ msgstr "Takas"
msgid "Filesystem Formatting"
msgstr "Dosya Sistemi BiГimlendirme"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "LILO YapЩlandЩrmasЩ"
@@ -601,8 +484,7 @@ msgstr "Sistemi Kur"
msgid "Installation Complete"
msgstr "Kurulum Bitti"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "LILO YapЩlandЩrmasЩ"
@@ -631,176 +513,172 @@ msgstr "VazgeГildi"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "Bu adЩmdan bir Жncekine gidilemez. Yeniden denemeniz gerekiyor."
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "%s dosyasЩna yazЩlamadЩ: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "%s dosyasЩna yazЩlamadЩ: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "AГЩlЩЧ disketi yaratЩlЩyor"
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Dosya Sistemi BiГimlendirme"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "/dev/%s aygЩtЩnda ext2 dosya sistemi yaratЩlЩyor..."
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "AГЩlЩЧ disketi yaratЩlЩyor"
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Kalan"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "IP bilgi istekleri gЖnderiliyor..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "Жneri yok"
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "HerЧey"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "%s dosyasЩna yazЩlamadЩ: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Kalan"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "GЭncellenecek paketler belirleniyor..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr "щЧleniyor"
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Kurulacak dosyalar inceleniyor..."
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Kalan"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr "RPM veritabanЩ oluЧturuluyor..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
-msgstr ""
-"RPM veri tabanЩnЩn yeniden oluЧturulmasЩ baЧarЩsЩz. Diskiniz dolmuЧ olabilir "
-"mi?"
+msgstr "RPM veri tabanЩnЩn yeniden oluЧturulmasЩ baЧarЩsЩz. Diskiniz dolmuЧ olabilir mi?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Paketler Kuruluyor"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-"SeГtiПiniz paketleri kurmak iГin yeterli disk bЖlЭmЭnЭz yok. AЧaПЩdaki "
-"diskbЖlЭmlerinde daha fazla disk alanЩna ihtiyacЩnЩz var:\n"
+"SeГtiПiniz paketleri kurmak iГin yeterli disk bЖlЭmЭnЭz yok. AЧaПЩdaki diskbЖlЭmlerinde daha fazla disk alanЩna ihtiyacЩnЩz var:\n"
"\n"
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "BaПlama NoktasЩ:"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr "Gerekli Alan"
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "Disk AlanЩ"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Kurulum"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "Bu yapЩlandЩrmayЩ sЩna"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "Ekran KartЩ"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "Ekran BelleПi"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Sunucu"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "щkinci kЩsЩm ramdisk alЩnamЩyor"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "MonitЖr"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "Yatay Tazeleme HЩzЩ"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "DЭЧey Tazeleme HЩzЩ"
@@ -829,8 +707,7 @@ msgstr "Parola"
msgid "Password (confirm)"
msgstr "Parola (tekrar)"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Tam AdЩ"
@@ -838,15 +715,11 @@ msgstr "Tam AdЩ"
msgid "Add"
msgstr "Ekle"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "DeПiЧtir"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Sil"
@@ -962,8 +835,7 @@ msgstr "GNOME щЧistasyonu"
msgid "KDE Workstation"
msgstr "KDE щЧistasyonu"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Sunucu"
@@ -1007,7 +879,7 @@ msgstr "Tip"
msgid "Test your selection here:"
msgstr "SeГimi burada denetleyin:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Kurulum sЩrasЩnda hangi dili kullanmak istiyorsunuz?"
@@ -1047,19 +919,15 @@ msgstr "AГЩlЩЧ disketi yarat"
msgid "Do not install LILO"
msgstr "LILO kurma"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "жntanЩmlЩ"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "BЖlЭm Tipi"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "AГЩlЩЧ Etiketi"
@@ -1067,43 +935,43 @@ msgstr "AГЩlЩЧ Etiketi"
msgid "Emulate 3 Buttons"
msgstr "3 TuЧ EmЭlasyonu"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "DHCP kullanarak ayarla"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "AГЩlЩЧ sЩrasЩnda etkinleЧtir"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "IP Adresi"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "AП maskesi"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "AП"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "YayЩn"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "GeГit"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "Birincil DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "щkincil DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "эГЭncЭ DNS"
@@ -1188,14 +1056,8 @@ msgid "Low Memory"
msgstr "DЭЧЭk Bellek"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Bu sistemde yeteri kadar bellek olmadЩПЩ iГin hemen takas alanЩnЩ aГЩp "
-"kullanmamЩz gerekiyor. Bunun iГin disk Эzerindeki bЖlЭmlendirme bilgilerini "
-"de deПiЧtirmek gerekiyor. YapalЩm mЩ?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Bu sistemde yeteri kadar bellek olmadЩПЩ iГin hemen takas alanЩnЩ aГЩp kullanmamЩz gerekiyor. Bunun iГin disk Эzerindeki bЖlЭmlendirme bilgilerini de deПiЧtirmek gerekiyor. YapalЩm mЩ?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1206,21 +1068,17 @@ msgstr "Otomatik BЖlЭmlendirme"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
msgstr ""
"%s\n"
"\n"
-"EПer bunu yapmak istemiyorsanЩz, kurulum iЧlemini elle disk bЖlЭmlendirmesi "
-"yaparak devam edebilir, ya da geriye dЖnЭp tamamen ЖzelleЧtirilmiЧ bir "
-"kuruluma baЧlayabirsiniz. "
+"EПer bunu yapmak istemiyorsanЩz, kurulum iЧlemini elle disk bЖlЭmlendirmesi yaparak devam edebilir, ya da geriye dЖnЭp tamamen ЖzelleЧtirilmiЧ bir kuruluma baЧlayabirsiniz. "
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Uzak veri"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "Elle bЖlЭmlendir"
@@ -1281,7 +1139,7 @@ msgstr "DЭЧey Tazeleme HЩzЩ"
msgid "Test failed"
msgstr "SЩnama baЧarЩsЩz oldu"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "X Window YapЩlandЩrmasЩ"
@@ -1289,60 +1147,43 @@ msgstr "X Window YapЩlandЩrmasЩ"
msgid "Bits per Pixel"
msgstr "Benek DerinliПi"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Bu yapЩlandЩrmayЩ sЩna"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"гoПu zaman ekran donanЩmЩ otomatik olarak tanЩnacak ve en uygun ГЖzЭnЭrlЭk "
-"ayarlanacaktЩr."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "гoПu zaman ekran donanЩmЩ otomatik olarak tanЩnacak ve en uygun ГЖzЭnЭrlЭk ayarlanacaktЩr."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "Tarama sonuГlarЩ:"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
msgstr "MonitЖrЭnЭz otomatik olarak tanЩnamadЩ. Listeden seГim yapЩnЩz:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Grafik GiriЧi Kullan"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "X AyarlamalarЩnЩ Atla"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"BazЩ sistemlerde aГЩlЩЧ sЩrasЩnda ГekirdeПe Жzel parametreler geГirilmesi "
-"gerekir. Sizin sisteminizde de gerekiyorsa bu parametreleri Чimdi belirtin. "
-"Emin deПilseniz burayЩ boЧ bЩrakЩn."
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "BazЩ sistemlerde aГЩlЩЧ sЩrasЩnda ГekirdeПe Жzel parametreler geГirilmesi gerekir. Sizin sisteminizde de gerekiyorsa bu parametreleri Чimdi belirtin. Emin deПilseniz burayЩ boЧ bЩrakЩn."
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yЭkleyiciyi nereye kurmak istiyorsunuz?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Sil"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "VazgeГ"
@@ -1351,24 +1192,12 @@ msgid "Edit Boot Label"
msgstr "AГЩlЩЧ etiketini deПiЧtir:"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Red Hat Linux'un sistem yЭkleyicisi baЧka iЧletim sistemlerini de "
-"yЭkleyebilir. LЭtfen hangi bЖlЭmlerin aГЩlЩЧ bЖlЭmЭ olabileceklerini ve "
-"etiketlerini belirtin."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Red Hat Linux'un sistem yЭkleyicisi baЧka iЧletim sistemlerini de yЭkleyebilir. LЭtfen hangi bЖlЭmlerin aГЩlЩЧ bЖlЭmЭ olabileceklerini ve etiketlerini belirtin."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"SeГtiПiniz bazЩ paketlerin ГalЩЧabilmeleri iГin seГmediПiniz bazЩ paketlerin "
-"de kurulmalarЩ gerekiyor. 'Tamam' derseniz gerekli diПer paketler de "
-"kurulacak."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "SeГtiПiniz bazЩ paketlerin ГalЩЧabilmeleri iГin seГmediПiniz bazЩ paketlerin de kurulmalarЩ gerekiyor. 'Tamam' derseniz gerekli diПer paketler de kurulacak."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1376,31 +1205,19 @@ msgstr "Disk AyarlarЩ"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid, disk bЖlЭmleme ve baПlama noktasЩ dЭzenleme amacЩyla "
-"kullanЩlabilecek bir araГtЩr. Linux'un geleneksel disk bЖlЭmleme yazЩlЩmЩ "
-"fdisk'e gЖre hem yetenekleri hem de kullanЩm kolaylЩПЩ aГЩsЩndan daha "
-"elveriЧlidir. Yine de fdisk kullanЩmЩnЩn yeПleneceПi durumlar bulunabilir.\n"
+"Disk Druid, disk bЖlЭmleme ve baПlama noktasЩ dЭzenleme amacЩyla kullanЩlabilecek bir araГtЩr. Linux'un geleneksel disk bЖlЭmleme yazЩlЩmЩ fdisk'e gЖre hem yetenekleri hem de kullanЩm kolaylЩПЩ aГЩsЩndan daha elveriЧlidir. Yine de fdisk kullanЩmЩnЩn yeПleneceПi durumlar bulunabilir.\n"
"\n"
"Hangi aracЩ kullanmak istiyorsunuz?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Red Hat Linux kurabilmek iГin Linux'a ayrЩlmЩЧ en az 150 MB boyunda bir disk "
-"bЖlЭmЭ gerekiyor. Sistem yЭklemede LILO kullanabilmeniz iГin bu bЖlЭmЭ ilk "
-"iki sabit diskten birinde ayЩrmanЩzЩ Жneririz."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Red Hat Linux kurabilmek iГin Linux'a ayrЩlmЩЧ en az 150 MB boyunda bir disk bЖlЭmЭ gerekiyor. Sistem yЭklemede LILO kullanabilmeniz iГin bu bЖlЭmЭ ilk iki sabit diskten birinde ayЩrmanЩzЩ Жneririz."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "YapЩldЩ"
@@ -1409,15 +1226,8 @@ msgid "Continue"
msgstr "Devam"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Hangi bЖlЭmleri biГimlendirmek istiyorsunuz? BЭtЭn sistem bЖlЭmlerinizi "
-"biГimlendirmenizi Жneriririz. /home ve /usr/local gibi dizinler daha Жnceden "
-"kurulmuЧ ise biГimlendirilmeleri gerekmez."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Hangi bЖlЭmleri biГimlendirmek istiyorsunuz? BЭtЭn sistem bЖlЭmlerinizi biГimlendirmenizi Жneriririz. /home ve /usr/local gibi dizinler daha Жnceden kurulmuЧ ise biГimlendirilmeleri gerekmez."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1437,14 +1247,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Bir root parolasЩ seГin. Yazarken hata olmadЩПЩndan emin olabilmek iГin iki "
-"kere girmeniz isteniyor. root parolasЩnЩn sistem gЭvenliПinin en kritik "
-"noktalarЩndan biri olduПunu unutmayЩn."
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Bir root parolasЩ seГin. Yazarken hata olmadЩПЩndan emin olabilmek iГin iki kere girmeniz isteniyor. root parolasЩnЩn sistem gЭvenliПinin en kritik noktalarЩndan biri olduПunu unutmayЩn."
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1495,25 +1299,12 @@ msgid "This user id already exists. Choose another."
msgstr "Bu kullanЩcЩ kimliПi zaten var, baЧkasЩnЩ seГin."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"Sistemdeki gЭncel iЧlemleriniz iГin normal bir kullanЩcЩ hesabЩ seГmeniz "
-"gerekiyor. EПer root hesabЩnЩ sЭrekli kullanmazsanЩz, yapacaПЩnЩ olasЩ bir "
-"yanlЩЧlЩk sonucunda sistemin ГЖkmesini de engellemiЧ olursunuz."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "Sistemdeki gЭncel iЧlemleriniz iГin normal bir kullanЩcЩ hesabЩ seГmeniz gerekiyor. EПer root hesabЩnЩ sЭrekli kullanmazsanЩz, yapacaПЩnЩ olasЩ bir yanlЩЧlЩk sonucunda sistemin ГЖkmesini de engellemiЧ olursunuz."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"Sistemde hangi kullanЩcЩlarЩn hesaplarЩnЩn bulunmasЩnЩ istiyorsunuz? "
-"EnazЩndan root kullanЩcЩsЩ dЩЧЩnda bir normal kullanЩcЩ hesabЩ aГmanЩz "
-"tavsiye edilir. щstediПiniz kadar kullanЩcЩyЩ Чimdi, ya da daha sonra "
-"ekleyebilirsiniz"
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "Sistemde hangi kullanЩcЩlarЩn hesaplarЩnЩn bulunmasЩnЩ istiyorsunuz? EnazЩndan root kullanЩcЩsЩ dЩЧЩnda bir normal kullanЩcЩ hesabЩ aГmanЩz tavsiye edilir. щstediПiniz kadar kullanЩcЩyЩ Чimdi, ya da daha sonra ekleyebilirsiniz"
#: ../textw/userauth.py:160
msgid "User name"
@@ -1551,8 +1342,7 @@ msgstr "ya da:"
msgid "Request server via broadcast"
msgstr "YayЩn aПЩ Эzerinden sunucu iste"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "HatalЩ BaПlama NoktasЩ"
@@ -1621,46 +1411,26 @@ msgid "Too Many Drives"
msgstr "гok Fazla Disk"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Sisteminizde bu programЩn desteklediПinden fazla sayЩda disk var. LЭtfen "
-"diskinizi bЖlЭmlemek iГin fdisk aracЩnЩ kullanЩn ve bu uyarЩyЩ gЖrdЭПЭnЭzЭ "
-"Red Hat Software'e bildirin."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Sisteminizde bu programЩn desteklediПinden fazla sayЩda disk var. LЭtfen diskinizi bЖlЭmlemek iГin fdisk aracЩnЩ kullanЩn ve bu uyarЩyЩ gЖrdЭПЭnЭzЭ Red Hat Software'e bildirin."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "HiГ SЭrЭcЭ BulunamadЩ"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Yeni bir dosya sistemi yaratmak iГin aygЩt bulunamadЩ. LЭtfen donanЩmЩnЩzЩ "
-"kontrol ediniz."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Yeni bir dosya sistemi yaratmak iГin aygЩt bulunamadЩ. LЭtfen donanЩmЩnЩzЩ kontrol ediniz."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"%s aygЩtЩ Эzerindeki bЖlЭm tablosu bozulmuЧ. Yeni bЖlЭmler yaratЩlabilmesi "
-"iГin sЩfЩrlanmasЩ gerekiyor. Bu iЧlem diskteki BэTэN BщLGщNщN yitirilmesine "
-"yol aГacaktЩr."
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "%s aygЩtЩ Эzerindeki bЖlЭm tablosu bozulmuЧ. Yeni bЖlЭmler yaratЩlabilmesi iГin sЩfЩrlanmasЩ gerekiyor. Bu iЧlem diskteki BэTэN BщLGщNщN yitirilmesine yol aГacaktЩr."
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"%s aygЩtЩndaki bЖlЭmlendirme tablosunda hata var. Yeni disk bЖlЭmleri "
-"yaratmak iГin bu tablonun yeniden dЭzenlenmesi gerekiyor. Bu durumda DщSK "
-"эZERщNDE BULUNAN TэM BщLGщLER SщLщNECEKTщR."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "%s aygЩtЩndaki bЖlЭmlendirme tablosunda hata var. Yeni disk bЖlЭmleri yaratmak iГin bu tablonun yeniden dЭzenlenmesi gerekiyor. Bu durumda DщSK эZERщNDE BULUNAN TэM BщLGщLER SщLщNECEKTщR."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1683,15 +1453,8 @@ msgid "BSD Disklabel"
msgstr "BSD Disk Etiketi"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"BSD etiketli bir disk bulundu. Red Hat kurulumu BSD disk etiketlerini "
-"yalnЩzca salt-oku kipinde destekler, yani bu tip etiketli diski bulunan "
-"makinalarda Жzel bir kurulum programЩ ve fdisk kullanmanЩz gerekir (Disk "
-"Druid ГalЩЧmaz)."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "BSD etiketli bir disk bulundu. Red Hat kurulumu BSD disk etiketlerini yalnЩzca salt-oku kipinde destekler, yani bu tip etiketli diski bulunan makinalarda Жzel bir kurulum programЩ ve fdisk kullanmanЩz gerekir (Disk Druid ГalЩЧmaz)."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1718,10 +1481,7 @@ msgstr "BЖlЭm Silme"
msgid "Are you sure you want to delete this partition?"
msgstr "Bu bЖlЭmЭ silmek istediПinizden emin misiniz?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "BЖlЭm AyarЩ"
@@ -1761,58 +1521,38 @@ msgstr "BЖlЭm Tipi:"
msgid "Allowable Drives:"
msgstr "KullanЩlabilir SЭrЭcЭler:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "BaПlama NoktasЩ Yok"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Bu bЖlЭm iГin bir baПlama noktasЩ seГmediniz. BЖyle yapmak istediПinizden "
-"emin misiniz?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Bu bЖlЭm iГin bir baПlama noktasЩ seГmediniz. BЖyle yapmak istediПinizden emin misiniz?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "BaПlama NoktasЩ HatasЩ"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"щstenen baПlama noktasЩ ya geГersiz bir yol belirtiyor ya da kullanЩmda. "
-"LЭtfen geГerli bir baПlama noktasЩ seГin."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "щstenen baПlama noktasЩ ya geГersiz bir yol belirtiyor ya da kullanЩmda. LЭtfen geГerli bir baПlama noktasЩ seГin."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "Boy HatasЩ"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"щstenen boy geГersiz. Bu sayЩnЩn sЩfЩrdan bЭyЭk ve onluk dЭzende yazЩlmЩЧ "
-"olmasЩna dikkat edin."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "щstenen boy geГersiz. Bu sayЩnЩn sЩfЩrdan bЭyЭk ve onluk dЭzende yazЩlmЩЧ olmasЩna dikkat edin."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Takas Boyu HatasЩ"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"гok geniЧ bir takas bЖlЭmЭ yarattЩnЩz. Takas bЖlЭmЭ en fazla %ld Mb "
-"bЭyЭklЭПЭnde olabilir."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "гok geniЧ bir takas bЖlЭmЭ yarattЩnЩz. Takas bЖlЭmЭ en fazla %ld Mb bЭyЭklЭПЭnde olabilir."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1820,24 +1560,17 @@ msgstr "No RAID Drive Const"
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
-msgstr ""
-"Bir RAID disk bЖlЭmЭ seГtiniz, ancak bunu tek bir diske baПЩmlЩ kЩlmadЩnЩz. "
-"BЖyle yapmak istediПinizden emin misiniz?"
+msgstr "Bir RAID disk bЖlЭmЭ seГtiniz, ancak bunu tek bir diske baПЩmlЩ kЩlmadЩnЩz. BЖyle yapmak istediПinizden emin misiniz?"
#: ../libfdisk/gnomefsedit.c:1114
msgid "Close"
msgstr "Kapat"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Bir RAID disk bЖlЭmЭnЭ, bu bЖlЭmЭ tek bir diske baПЩmlЩ olacak Чekilde "
-"seГmediniz. LЭtfen bir diski bu iЧlem iГin ayЩrЩn."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Bir RAID disk bЖlЭmЭnЭ, bu bЖlЭmЭ tek bir diske baПЩmlЩ olacak Чekilde seГmediniz. LЭtfen bir diski bu iЧlem iГin ayЩrЩn."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1847,30 +1580,17 @@ msgstr "Yetersiz RAID Girdisi"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"/dev/%s RAID sЭrЭcЭsЭ henЭz tanЩmlanmamЩЧ disk bЖlЭmleri iГeriyor. /dev/%s "
-"aygЩtЩ Чimdi alt bЖlЭmlerine ayrЩlacak. LЭtfen RAID aygЩtЩnЩ tanЩmlanmЩЧ "
-"disk bЖlЭmleriyle tekrar belirleyin."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "/dev/%s RAID sЭrЭcЭsЭ henЭz tanЩmlanmamЩЧ disk bЖlЭmleri iГeriyor. /dev/%s aygЩtЩ Чimdi alt bЖlЭmlerine ayrЩlacak. LЭtfen RAID aygЩtЩnЩ tanЩmlanmЩЧ disk bЖlЭmleriyle tekrar belirleyin."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "AyrЩlmamЩЧ BЖlЭmler"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"щstenen bЖlЭmler listesinde yer alan halen ayrЩlmamЩЧ bЖlЭm(ler) bulunmakta. "
-"AyrЩlmamЩЧ bЖlЭm(ler) aЧaПЩda ayrЩlmama nedenleri ile gЖsterilmektedirler. "
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "щstenen bЖlЭmler listesinde yer alan halen ayrЩlmamЩЧ bЖlЭm(ler) bulunmakta. AyrЩlmamЩЧ bЖlЭm(ler) aЧaПЩda ayrЩlmama nedenleri ile gЖsterilmektedirler. "
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1893,9 +1613,7 @@ msgid "You have not selected a mount point. A mount point is required."
msgstr "Bir baПlama noktasЩ seГmediniz. BaПlama noktasЩna ihtiyacЩnЩz vardЩr."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
+msgid "The mount point requested is already in use. Please select a valid mount point."
msgstr "щstenen baПlama noktasЩ kullanЩmda. GeГerli bir baПlama noktasЩ seГin."
#: ../libfdisk/gnomefsedit.c:1901
@@ -1903,12 +1621,8 @@ msgid "Booting From RAID Warning"
msgstr "RAID'den AГЩlma UyarЩsЩ"
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Bu RAID aygЩtЩnЩ bir aГЩlЩЧ disk bЖlЭmЭ olarak belirlediniz. TЭm birimlerin "
-"aГЩlabilir (bootable) olduПuna emin olmalЩsЩnЩz."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Bu RAID aygЩtЩnЩ bir aГЩlЩЧ disk bЖlЭmЭ olarak belirlediniz. TЭm birimlerin aГЩlabilir (bootable) olduПuna emin olmalЩsЩnЩz."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1924,21 +1638,15 @@ msgstr "KullanЩlan RAID AygЩtЩ"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
-msgstr ""
-"\"/dev/%s\" RAID aygЩtЩ zaten bir RAID aygЩtЩ olarak tanЩmlЩ. LЭtfen baЧka "
-"bir aygЩt seГiniz."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
+msgstr "\"/dev/%s\" RAID aygЩtЩ zaten bir RAID aygЩtЩ olarak tanЩmlЩ. LЭtfen baЧka bir aygЩt seГiniz."
#: ../libfdisk/gnomefsedit.c:1933
msgid "Not Enough Partitions"
msgstr "Yeterli BЖlЭm Yok"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr "SeГilen RAID tipi iГin yeterli disk bЖlЭmЭ ayЩrmadЩnЩz."
#: ../libfdisk/gnomefsedit.c:1942
@@ -1951,14 +1659,8 @@ msgstr "/boot aГЩlЩЧ bЖlЭmЭ sadece RAID-1'de geГerlidir."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"%s disk bЖlЭmЭ, bu RAID aygЩtЩ iГin daha Жnceden mevcut. BaПlama noktasЩ ise "
-"/boot olarak tanЩmlanmЩЧ durumda. Sistemin disk bЖlЭmЭ Эzerinden aГЩlacaПЩna "
-"emin misiniz?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "%s disk bЖlЭmЭ, bu RAID aygЩtЩ iГin daha Жnceden mevcut. BaПlama noktasЩ ise /boot olarak tanЩmlanmЩЧ durumda. Sistemin disk bЖlЭmЭ Эzerinden aГЩlacaПЩna emin misiniz?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2022,12 +1724,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "AyrЩlmamЩЧ BЖlЭmler Bulunuyor..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Kurulumun sЭrebilmesi iГin Linux native tipi bir disk bЖlЭmЭ ya da RAID "
-"bЖlЭmЭnЭ kЖk (/) bЖlЭmЭ olarak seГmelisiniz."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Kurulumun sЭrebilmesi iГin Linux native tipi bir disk bЖlЭmЭ ya da RAID bЖlЭmЭnЭ kЖk (/) bЖlЭmЭ olarak seГmelisiniz."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2078,12 +1776,8 @@ msgid "No Root Partition"
msgstr "KЖk BЖlЭmЭ Yok"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Kurulumun sЭrebilmesi iГin Linux native tipi bir disk bЖlЭmЭnЭ kЖk (/) "
-"bЖlЭmЭ olarak seГmelisiniz."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Kurulumun sЭrebilmesi iГin Linux native tipi bir disk bЖlЭmЭnЭ kЖk (/) bЖlЭmЭ olarak seГmelisiniz."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2095,13 +1789,11 @@ msgstr "Kurulumun sЭrebilmesi iГin bir takas bЖlЭmЭ seГmelisiniz."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"HenЭz ayrЩlmamЩЧ disk bЖlЭmleri var. чimdi ГЩkarsanЩz diske "
-"yazЩlmayacaklardЩr.\n"
+"HenЭz ayrЩlmamЩЧ disk bЖlЭmleri var. чimdi ГЩkarsanЩz diske yazЩlmayacaklardЩr.\n"
"\n"
"гЩkmak istediПinizden emin misiniz?"
@@ -2138,21 +1830,14 @@ msgid "Miscellaneous"
msgstr "гeЧitli"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Bu modЭl, ГalЩЧmasЩnЩ ekleyecek parametreler alabilir. EПer hangi "
-"parametreleri kullanacaПЩnЩzЩ bilmiyorsanЩz, bu bЖlЭmЭ atlamak iГin Чimdi "
-"\"Tamam\" tuЧuna basЩn."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Bu modЭl, ГalЩЧmasЩnЩ ekleyecek parametreler alabilir. EПer hangi parametreleri kullanacaПЩnЩzЩ bilmiyorsanЩz, bu bЖlЭmЭ atlamak iГin Чimdi \"Tamam\" tuЧuna basЩn."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "ModЭl Parametreleri"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "AygЩtlar"
@@ -2165,21 +1850,12 @@ msgid "Failed to mount floppy disk."
msgstr "Disket baПlanamadЩ."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
-msgstr ""
-"SЭrЭcЭye yerleЧtirilen disket, Red Hat'in bu sЭrЭmЭ iГin gЭncel sЭrЭcЭler "
-"iГermiyor."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
+msgstr "SЭrЭcЭye yerleЧtirilen disket, Red Hat'in bu sЭrЭmЭ iГin gЭncel sЭrЭcЭler iГermiyor."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Hangi sЭrЭcЭ denensin? EПer listede bulunmayan bir sЭrЭcЭye ihtiyacЩnЩz "
-"varsa, ve elinizde ayrЩ bir sЭrЭcЭ disketi bulunuyorsa, lЭtfen F2 tuЧuna "
-"basЩn."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Hangi sЭrЭcЭ denensin? EПer listede bulunmayan bir sЭrЭcЭye ihtiyacЩnЩz varsa, ve elinizde ayrЩ bir sЭrЭcЭ disketi bulunuyorsa, lЭtfen F2 tuЧuna basЩn."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2208,15 +1884,15 @@ msgstr "kickstart %s dosyasЩnЩn iГeriПi okunamadЩ: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "kicktart %s dosyasЩnЩn %d. satЩrЩnda hata"
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "Bir Dil SeГin"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Klavye Tipi"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Klavyenizin tipi nedir?"
@@ -2232,136 +1908,116 @@ msgstr "NFS gЖrЭntЭsЭ"
msgid "Hard drive"
msgstr "Sabit Disk"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Red Hat Linux'a HoЧgeldiniz"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
-msgstr ""
-" <Tab>/<Alt-Tab> ileri-geri | <BoЧluk> iЧaretle | <F12> sonraki ekran"
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+msgstr " <Tab>/<Alt-Tab> ileri-geri | <BoЧluk> iЧaretle | <F12> sonraki ekran"
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Ne tЭr bir aygЩt eklemek istiyorsunuz?"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "Sisteminizde aЧaПЩdaki aygЩtlar bulundu:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "AygЩt Ekle"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"Sistemde yЭklЭ herhangi bir Жzel aygЩt sЭrЭcЭsЭ yok. BunlarЩ Чimdi yЭklemek "
-"ister misiniz?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "Sistemde yЭklЭ herhangi bir Жzel aygЩt sЭrЭcЭsЭ yok. BunlarЩ Чimdi yЭklemek ister misiniz?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "YЭkleniyor"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "щkinci kЩsЩm ramdisk'i yЭkleniyor"
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Ramdisk yЭklenmesinde hata."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Sabit Diskler"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"TanЩmlЩ hiГ sabit diskiniz bulunmuyor. Ek aygЩt ayarlarЩ yapmak ister "
-"misiniz?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "TanЩmlЩ hiГ sabit diskiniz bulunmuyor. Ek aygЩt ayarlarЩ yapmak ister misiniz?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Bu diskteki hangi bЖlЭm ve dizin RedHat/RPMS ve RedHat/base dizinlerini "
-"iГeriyor? EПer kullandЩПЩnЩz diski bu listede gЖremiyorsanЩz, F2 tuЧuna "
-"basЩp ek aygЩt sЭrЭcЭlerini yapЩlandЩrabilirsiniz."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Bu diskteki hangi bЖlЭm ve dizin RedHat/RPMS ve RedHat/base dizinlerini iГeriyor? EПer kullandЩПЩnЩz diski bu listede gЖremiyorsanЩz, F2 tuЧuna basЩp ek aygЩt sЭrЭcЭlerini yapЩlandЩrabilirsiniz."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "RedHat bulunan dizin:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "BЖlЭmЭ seГin"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "%s aygЩtЩnda bir Red Hat kurulum aПacЩ bulunamadЩ."
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"CD sЭrЭcЭlerinizde Red Hat Linux CD'si bulunamadЩ. LЭtfen Red Hat CD'sini "
-"sЭrЭcЭye yerleЧtirin ve \"Tamam\" tuЧuna basЩn."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "CD sЭrЭcЭlerinizde Red Hat Linux CD'si bulunamadЩ. LЭtfen Red Hat CD'sini sЭrЭcЭye yerleЧtirin ve \"Tamam\" tuЧuna basЩn."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Bu dizinde Red Hat kurulum aПacЩ bulunamadЩ."
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "Sunucudan bu dizin baПlanamadЩ."
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "щkinci kЩsЩm ramdisk alЩnamЩyor"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "Kurtarma YЖntemi"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "Kurulum YЖntemi"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Kurtarma gЖrЭntЭsЭ nerede bulunuyor?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Kurulacak paketler nerede bulunuyor?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "AГЩlЩЧ disketinde ks.cfg dosyasЩ bulunamadЩ."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC Card"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "PC Kart SЭrЭcЭleri HazЩrlanЩyor..."
@@ -2392,12 +2048,8 @@ msgstr ""
" Red Hat Linux'un bulunduПu dizin"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Bu makina iГin aП ayarlarЩnЩ girin. GireceПiniz deПerler nokta ile ayrЩlmЩЧ "
-"dЖrt sayЩ Чeklinde tanЩmlanmalЩ (mesela 1.2.3.4)."
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Bu makina iГin aП ayarlarЩnЩ girin. GireceПiniz deПerler nokta ile ayrЩlmЩЧ dЖrt sayЩ Чeklinde tanЩmlanmalЩ (mesela 1.2.3.4)."
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2461,11 +2113,8 @@ msgid "Network device"
msgstr "AП aygЩtЩ"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> ileri-geri | <BoЧluk> iЧaretle | <F12> sonraki ekran"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> ileri-geri | <BoЧluk> iЧaretle | <F12> sonraki ekran"
#: ../loader/net.c:699
#, c-format
@@ -2545,21 +2194,12 @@ msgid "You must enter a directory."
msgstr "Bir dizin adЩ girmelisiniz"
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Anonim olmayan FTP yapЩlacaksa kullanЩcЩ adЩ ve parolayЩ belirtin. Vekil "
-"(proxy) sunucu kullanЩlacaksa bu sunucunun adЩnЩ belirtin."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Anonim olmayan FTP yapЩlacaksa kullanЩcЩ adЩ ve parolayЩ belirtin. Vekil (proxy) sunucu kullanЩlacaksa bu sunucunun adЩnЩ belirtin."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"EПer bir HTTP vekil (proxy) sunucu kullanЩlacaksa bu sunucunun adЩnЩ "
-"belirtin."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "EПer bir HTTP vekil (proxy) sunucu kullanЩlacaksa bu sunucunun adЩnЩ belirtin."
#: ../loader/urls.c:295
msgid "Account name:"
@@ -2585,32 +2225,17 @@ msgstr "HTTP Vekil (proxy) щskelesi:"
msgid "Loading SCSI driver"
msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "%s blok aygЩtЩ okunurken bozulmuЧ Sun disk etiketi olan bir disk bulundu. "
-#~ "fdisk'i kullanarak bu aygЩt iГin yeni bir etiket yaratЩp yazmalЩsЩnЩz. "
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "%s blok aygЩtЩ okunurken bozulmuЧ Sun disk etiketi olan bir disk bulundu. fdisk'i kullanarak bu aygЩt iГin yeni bir etiket yaratЩp yazmalЩsЩnЩz. "
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Bozuk Sun disk etiketi"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Kurulumun sЭrebilmesi iГin Linux native (ext2) ya da RAID-1 tipi bir disk "
-#~ "bЖlЭmЭnЭ aГЩlЩЧ (/boot) bЖlЭmЭ olarak seГmelisiniz."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Kurulumun sЭrebilmesi iГin Linux native (ext2) ya da RAID-1 tipi bir disk bЖlЭmЭnЭ aГЩlЩЧ (/boot) bЖlЭmЭ olarak seГmelisiniz."
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "KЖk bЖlЭmЭnЭ bir RAID aygЩtЩna baПladЩПЩnЩz iГin, /boot aГЩlЩЧ bЖlЭmЭnЭ de "
-#~ "bir RAID-1 disk bЖlЭmЭne ayЩrmalЩsЩnЩz. Aksi takdirde kurulum devam "
-#~ "etmeyecektir."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "KЖk bЖlЭmЭnЭ bir RAID aygЩtЩna baПladЩПЩnЩz iГin, /boot aГЩlЩЧ bЖlЭmЭnЭ de bir RAID-1 disk bЖlЭmЭne ayЩrmalЩsЩnЩz. Aksi takdirde kurulum devam etmeyecektir."
#~ msgid "Use fdisk to format drives"
#~ msgstr "Diski biГimlendirmek iГin fdisk kullan"
@@ -2686,28 +2311,11 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "I can't find the device anywhere on your system!"
#~ msgstr "Belirtilen aygЩt sisteminizde bulunamЩyor!"
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "BazЩ durumlarda %s aygЩtЩnЩn tanЩtЩlmasЩ iГin ek parametreler gerekebilir. "
-#~ "Normal durumlarda ek parametreler olmadan ГalЩЧmasЩ beklenir. Ek "
-#~ "parametreleri belirtmek mi istersiniz, sЭrЭcЭnЭn tarama yapmasЩnЩ mЩ? Bazen, "
-#~ "tarama iЧlemi makinanЩzЩn kilitlenmesine neden olabilir, ancak donanЩmЩnЩza "
-#~ "zarar vermesi beklenmez. "
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "BazЩ durumlarda %s aygЩtЩnЩn tanЩtЩlmasЩ iГin ek parametreler gerekebilir. Normal durumlarda ek parametreler olmadan ГalЩЧmasЩ beklenir. Ek parametreleri belirtmek mi istersiniz, sЭrЭcЭnЭn tarama yapmasЩnЩ mЩ? Bazen, tarama iЧlemi makinanЩzЩn kilitlenmesine neden olabilir, ancak donanЩmЩnЩza zarar vermesi beklenmez. "
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "BirГok durumda %s aygЩtЩnЩn tanЩtЩlmasЩ iГin ek parametreler gerekebilir. "
-#~ "щsterseniz bu parametreler iГin sЩk rastlanan bazЩ deПerler denenebilir. Bu "
-#~ "iЧlem makinanЩzЩ kilitleyebilir, ancak donanЩmЩnЩza zarar vermesi beklenmez."
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "BirГok durumda %s aygЩtЩnЩn tanЩtЩlmasЩ iГin ek parametreler gerekebilir. щsterseniz bu parametreler iГin sЩk rastlanan bazЩ deПerler denenebilir. Bu iЧlem makinanЩzЩ kilitleyebilir, ancak donanЩmЩnЩza zarar vermesi beklenmez."
#~ msgid "Module options:"
#~ msgstr "ModЭl seГenekleri:"
@@ -2769,12 +2377,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "PCMCIA Disk"
#~ msgstr "PCMCIA Disketi"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Disket baПlamadЩ. LЭtfen Red Hat PCMCIA disketini takЩn ya da farklЩ "
-#~ "birkurulum yЖntemi seГmek Эzere VazgeГ seГeneПini seГin"
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Disket baПlamadЩ. LЭtfen Red Hat PCMCIA disketini takЩn ya da farklЩ birkurulum yЖntemi seГmek Эzere VazgeГ seГeneПini seГin"
#~ msgid "Loading PCMCIA Support"
#~ msgstr "PCMCIA desteПi yЭkleniyor"
@@ -2782,12 +2386,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "Supplemental Disk"
#~ msgstr "YardЩmcЩ Disket"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Disket baПlanamadЩ. LЭtfen Red Hat Ek disketini takЩn ya da baЧka bir "
-#~ "kurulum yЖntemi seГmek Эzere 'VazgeГ' seГeneПini seГin."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Disket baПlanamadЩ. LЭtfen Red Hat Ek disketini takЩn ya da baЧka bir kurulum yЖntemi seГmek Эzere 'VazgeГ' seГeneПini seГin."
#~ msgid "Loading Supplemental Disk..."
#~ msgstr "Ek disket yЭkleniyor..."
@@ -2795,27 +2395,14 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "Driver Disk"
#~ msgstr "SЭrЭcЭ Disketi"
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "Bu kurulum yЖntemi bir sЭrЭcЭ disketi gerektiriyor. LЭtfen ek disketi "
-#~ "sЭrЭcЭden ГЩkartЩp Red Hat modЭl disketini takЩn."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "Bu kurulum yЖntemi bir sЭrЭcЭ disketi gerektiriyor. LЭtfen ek disketi sЭrЭcЭden ГЩkartЩp Red Hat modЭl disketini takЩn."
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Disket baПlanamadЩ. LЭtfen Red Hat ModЭl disketini takЩn ya da baЧka bir "
-#~ "kurulum yЖntemi seГmek Эzere 'VazgeГ' seГeneПini seГin."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Disket baПlanamadЩ. LЭtfen Red Hat ModЭl disketini takЩn ya da baЧka bir kurulum yЖntemi seГmek Эzere 'VazgeГ' seГeneПini seГin."
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "Bu kurulum yЖntemi iki ek disket gerektiriyor. LЭtfen Red Hat YardЩmcЩ "
-#~ "kurulum disketlerini takЩn."
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "Bu kurulum yЖntemi iki ek disket gerektiriyor. LЭtfen Red Hat YardЩmcЩ kurulum disketlerini takЩn."
#~ msgid "hd command"
#~ msgstr "hd komutu"
@@ -2854,9 +2441,7 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgstr "Sistem bЖlЭmleri Linux native tipi disk bЖlЭmleri Эzerinde olmalЩ."
#~ msgid "/usr must be on a Linux Native partition or an NFS volume."
-#~ msgstr ""
-#~ "/usr dizini ya Linux native tipi bir disk bЖlЭmЭnde ya da NFS Эzerinde "
-#~ "olmalЩ."
+#~ msgstr "/usr dizini ya Linux native tipi bir disk bЖlЭmЭnde ya da NFS Эzerinde olmalЩ."
#~ msgid "Edit Network Mount Point"
#~ msgstr "AП BaПlama NoktasЩ'nЩ dЭzenle"
@@ -2870,14 +2455,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "mount failed: %s"
#~ msgstr "baПlama baЧarЩsЩz oldu : %s"
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "%s aygЩtЩ Эzerindeki bЖlЭm tablosu bozulmuЧ. Yeni bЖlЭmler yaratЩlabilmesi "
-#~ "iГin sЩfЩrlanmasЩ gerekiyor. Kickstart dosyasЩnda \"zerombr yes\" seГeneПini "
-#~ "belirtirseniz bu iЧlem kendiliПinden gerГekleЧecektir."
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "%s aygЩtЩ Эzerindeki bЖlЭm tablosu bozulmuЧ. Yeni bЖlЭmler yaratЩlabilmesi iГin sЩfЩrlanmasЩ gerekiyor. Kickstart dosyasЩnda \"zerombr yes\" seГeneПini belirtirseniz bu iЧlem kendiliПinden gerГekleЧecektir."
#~ msgid "Zero Partition Table"
#~ msgstr "BЖlЭm Tablosu SЩfЩrla"
@@ -2887,8 +2466,7 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "kickstart zerombr komutu iГin hatalЩ argЭman: %s.\n"
-#~ "AГmak iГin 'on', '1' ya da 'yes', kapatmak iГin 'off' '0' ya da 'no' "
-#~ "kullanabilirsiniz"
+#~ "AГmak iГin 'on', '1' ya da 'yes', kapatmak iГin 'off' '0' ya da 'no' kullanabilirsiniz"
#~ msgid "Clear Partition Command"
#~ msgstr "BolЭme AyЩrma Komutunu Temizle"
@@ -2905,12 +2483,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "Option Ignored"
#~ msgstr "SeГenek gЖzardЩ edildi"
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "%s bЖlЭmЭ iГin --maxsize seГeneПi gЖzardЩ edildi. --size seГeneПinden daha "
-#~ "bЭyЭk bir deПeri olmasЩna dikkat edin."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "%s bЖlЭmЭ iГin --maxsize seГeneПi gЖzardЩ edildi. --size seГeneПinden daha bЭyЭk bir deПeri olmasЩna dikkat edin."
#~ msgid "The mount point %s is already in use."
#~ msgstr "%s baПlama noktasЩ zaten kullanЩlЩyor."
@@ -2921,12 +2495,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "The partition %s could not be allocated."
#~ msgstr "%s bЖlЭmЭ ayrЩlamadЩ."
-#~ msgid ""
-#~ "There are partitions that can be resized nondestructively to make room for "
-#~ "your Red Hat Linux installation. Do you want to resize these partitions now?"
-#~ msgstr ""
-#~ "Red Hat Linux kurulumu iГin iГlerine zarar vermeden boylarЩ ayarlanabilecek "
-#~ "bЖlЭmler var. Bu bЖlЭmlerin boylarЩnЩ ayarlamak ister misiniz ?"
+#~ msgid "There are partitions that can be resized nondestructively to make room for your Red Hat Linux installation. Do you want to resize these partitions now?"
+#~ msgstr "Red Hat Linux kurulumu iГin iГlerine zarar vermeden boylarЩ ayarlanabilecek bЖlЭmler var. Bu bЖlЭmlerin boylarЩnЩ ayarlamak ister misiniz ?"
#~ msgid "Success"
#~ msgstr "BaЧarЩlЩ"
@@ -2991,19 +2561,11 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "Scanning hard drives..."
#~ msgstr "Sabit diskler taranЩyor..."
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "Sistemde sabit disk bulunamadЩ. Bir SCSI denetГisi kurmayЩ unutmuЧ "
-#~ "olabilirsiniz."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "Sistemde sabit disk bulunamadЩ. Bir SCSI denetГisi kurmayЩ unutmuЧ olabilirsiniz."
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "Red Hat Linux kurabilmek iГin Linux'a ayrЩlmЩЧ en az 150 MB boyunda bir disk "
-#~ "bЖlЭmЭ gerekiyor."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "Red Hat Linux kurabilmek iГin Linux'a ayrЩlmЩЧ en az 150 MB boyunda bir disk bЖlЭmЭ gerekiyor."
#~ msgid "Partition Disks"
#~ msgstr "Disk BЖlЭmleme"
@@ -3012,22 +2574,13 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgstr "BaЧtan BaЧlatma"
#~ msgid ""
-#~ "The kernel is unable to read your new partitioning information, probably "
-#~ "because you modified extended partitions. While this is not critical, you "
-#~ "must reboot your machine before proceeding. Insert the Red Hat boot disk now "
-#~ "and press Return to reboot your system.\n"
+#~ "The kernel is unable to read your new partitioning information, probably because you modified extended partitions. While this is not critical, you must reboot your machine before proceeding. Insert the Red Hat boot disk now and press Return to reboot your system.\n"
#~ "\n"
-#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an "
-#~ "empty SCSI drive can also cause this problem."
+#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an empty SCSI drive can also cause this problem."
#~ msgstr ""
-#~ "гekirdek yeni bЖlЭmlendirme bilgisini okuyamadЩ. Eklenti bЖlЭmlerin "
-#~ "deПiЧtirilmesi bЖyle bir hataya yol aГabilir. Bu hata kritik olmamakla "
-#~ "birlikte devam edebilmek iГin makinanЩzЩ yeniden baЧlatmalЩsЩnЩz. LЭtfen "
-#~ "Turkuaz aГЩlЩЧ disketini taktЩktan sonra Enter tuЧuna basarak sisteminizi "
-#~ "yeniden aГЩn.\n"
+#~ "гekirdek yeni bЖlЭmlendirme bilgisini okuyamadЩ. Eklenti bЖlЭmlerin deПiЧtirilmesi bЖyle bir hataya yol aГabilir. Bu hata kritik olmamakla birlikte devam edebilmek iГin makinanЩzЩ yeniden baЧlatmalЩsЩnЩz. LЭtfen Turkuaz aГЩlЩЧ disketini taktЩktan sonra Enter tuЧuna basarak sisteminizi yeniden aГЩn.\n"
#~ "\n"
-#~ "Bir ZIP ya da JAZ sЭrЭcЭnЭz varsa, bu sЭrЭcЭde bir disk olup olmadЩПЩnЩ "
-#~ "kontrol edin, ГЭnkЭ boЧ SCSI sЭrЭcЭleri de bu hataya neden olabilirler."
+#~ "Bir ZIP ya da JAZ sЭrЭcЭnЭz varsa, bu sЭrЭcЭde bir disk olup olmadЩПЩnЩ kontrol edin, ГЭnkЭ boЧ SCSI sЭrЭcЭleri de bu hataya neden olabilirler."
#~ msgid "lilo command"
#~ msgstr "lilo komutu"
@@ -3038,26 +2591,14 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "PCMCIA Support"
#~ msgstr "PCMCIA DesteПi"
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "YЭkleme sЩrasЩnda PCMCIA desteПine ihtiyacЩnЩz var mЩ? YЭklemeden sonra "
-#~ "kullanЩm iГin PCMCIA desteПi istiyorsanЩz burada 'hayЩr' diyebilirsiniz. "
-#~ "DizЭstЭ bilgisayarЩnЩzЩn dahili CDROM sЭrЭcЭsЭnЭ kullanЩyorsanЩz PCMCIA "
-#~ "desteПine ihtiyacЩnЩz olmayacktЩr."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "YЭkleme sЩrasЩnda PCMCIA desteПine ihtiyacЩnЩz var mЩ? YЭklemeden sonra kullanЩm iГin PCMCIA desteПi istiyorsanЩz burada 'hayЩr' diyebilirsiniz. DizЭstЭ bilgisayarЩnЩzЩn dahili CDROM sЭrЭcЭsЭnЭ kullanЩyorsanЩz PCMCIA desteПine ihtiyacЩnЩz olmayacktЩr."
#~ msgid "PCMCIA Support Disk"
#~ msgstr "PCMCIA DesteПi disketi"
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "PCMCIA desteПi iГin bir PCMCIA destek didketi gerekiyor. LЭtfen Red Hat "
-#~ "PCMCIA DesteПi disketini takЩn."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "PCMCIA desteПi iГin bir PCMCIA destek didketi gerekiyor. LЭtfen Red Hat PCMCIA DesteПi disketini takЩn."
#~ msgid "Starting PCMCIA services..."
#~ msgstr "PCMCIA hizmetleri baЧlatЩlЩyor..."
@@ -3136,13 +2677,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "Upgrade log"
#~ msgstr "GЭncelleme KaydЩ"
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "GЭncelleme boyunca olanlarЩn kaydЩnЩ sisteminizi yeniden aГtЩktan sonra "
-#~ "/tmp/upgrade.log dosyasЩnda bulabilirsiniz."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "GЭncelleme boyunca olanlarЩn kaydЩnЩ sisteminizi yeniden aГtЩktan sonra /tmp/upgrade.log dosyasЩnda bulabilirsiniz."
#~ msgid "rootpw command"
#~ msgstr "rootpw komutu"
@@ -3159,19 +2695,11 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "Installation Path"
#~ msgstr "Kurulum Yolu"
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "Yeni bir sistem kurmak mЩ istiyorsunuz, Red Hat Linux 2.0 ya da ЭstЭ bir "
-#~ "sistemi gЭncellemek mi istiyorsunuz?"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "Yeni bir sistem kurmak mЩ istiyorsunuz, Red Hat Linux 2.0 ya da ЭstЭ bir sistemi gЭncellemek mi istiyorsunuz?"
-#~ msgid ""
-#~ "What type of machine are you installing? For maximum flexibility, choose "
-#~ "\"Custom\"."
-#~ msgstr ""
-#~ "Ne tip bir makina kuruyorsunuz? Esneklik iГin \"жzel\" seГeneПini "
-#~ "iЧaretleyin."
+#~ msgid "What type of machine are you installing? For maximum flexibility, choose \"Custom\"."
+#~ msgstr "Ne tip bir makina kuruyorsunuz? Esneklik iГin \"жzel\" seГeneПini iЧaretleyin."
#~ msgid "Converting RPM database..."
#~ msgstr "RPM veritabanЩ dЖnЭЧtЭrЭlЭyor..."
@@ -3185,27 +2713,17 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
#~ msgstr ""
#~ "Kurulumun \"%s\" adЩmЩnda bir hata oluЧtu.\n"
#~ "\n"
-#~ "Bu adЩmЩ yeniden deneyebilirsiniz, bir Жnceki adЩma geri dЖnebilirsiniz, ya "
-#~ "da kurulum adЩmlarЩ arasЩnda dolaЧmanЩza olanak veren bir menЭye "
-#~ "geГebilirsiniz. Daha Жnce Red Hat Linux kurmadЩysanЩz menЭyЭ seГmenizi "
-#~ "Жnermeyiz. Ne yapmak istersiniz?"
+#~ "Bu adЩmЩ yeniden deneyebilirsiniz, bir Жnceki adЩma geri dЖnebilirsiniz, ya da kurulum adЩmlarЩ arasЩnda dolaЧmanЩza olanak veren bir menЭye geГebilirsiniz. Daha Жnce Red Hat Linux kurmadЩysanЩz menЭyЭ seГmenizi Жnermeyiz. Ne yapmak istersiniz?"
#~ msgid " Continue with install"
#~ msgstr " Kuruluma devam et"
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
-#~ msgstr ""
-#~ "Hangi adЩmЩ seГmek istiyorsunuz? YanlarЩnda (*) iЧareti bulunan adЩmlar "
-#~ "tamamlanmЩЧtЩr."
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
+#~ msgstr "Hangi adЩmЩ seГmek istiyorsunuz? YanlarЩnda (*) iЧareti bulunan adЩmlar tamamlanmЩЧtЩr."
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
#~ msgstr "Sistemin ilk disk sЭrЭcЭsЭne boЧ bir disket yerleЧtirin"
@@ -3222,9 +2740,7 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "Kernel"
#~ msgstr "гekirdek"
-#~ msgid ""
-#~ "Please insert your boot disk in your first disk drive if it's not already "
-#~ "present."
+#~ msgid "Please insert your boot disk in your first disk drive if it's not already present."
#~ msgstr "AГЩlЩЧ disketini birinci disket sЭrЭcЭye yerleЧtirin"
#~ msgid "Copying kernel from floppy..."
@@ -3275,12 +2791,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "No Swap Space"
#~ msgstr "Takas AlanЩ Yok"
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "Takas alanЩ olarak hangi bЖlЭmЭ kullanmak istiyorsunuz? Bu iЧlem bЖlЭmdeki "
-#~ "bЭtЭn bilgiyi yok edecektir."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "Takas alanЩ olarak hangi bЖlЭmЭ kullanmak istiyorsunuz? Bu iЧlem bЖlЭmdeki bЭtЭn bilgiyi yok edecektir."
#~ msgid "Active Swap Space"
#~ msgstr "Etkin Takas AlanЩ"
@@ -3297,12 +2809,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "Ethernet Probe"
#~ msgstr "Ethernet TaramasЩ"
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
-#~ msgstr ""
-#~ "Ethernet taramasЩ sisteminizde bir kart bulamadЩ. <Enter> tuЧuna basarak "
-#~ "kart ayarlarЩnЩ kendiniz yapabilirsiniz."
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
+#~ msgstr "Ethernet taramasЩ sisteminizde bir kart bulamadЩ. <Enter> tuЧuna basarak kart ayarlarЩnЩ kendiniz yapabilirsiniz."
#~ msgid "Static IP address"
#~ msgstr "Statik IP adresi"
@@ -3319,12 +2827,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "kickstart network command is missing ip address"
#~ msgstr "kickstart aП komutunda IP adresi eksik"
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
-#~ msgstr ""
-#~ "IP bilgileri nasЩl belirlensin. KullanЩmЩnЩz iГin ayrЩlmЩЧ sabit bir IP "
-#~ "adresi varsa, statik IP seГin."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
+#~ msgstr "IP bilgileri nasЩl belirlensin. KullanЩmЩnЩz iГin ayrЩlmЩЧ sabit bir IP adresi varsa, statik IP seГin."
#~ msgid "Sending BOOTP request..."
#~ msgstr "BOOTP isteПi gЖnderiliyor..."
@@ -3338,23 +2842,11 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "cannot open file: %s"
#~ msgstr "dosya aГЩlamЩyor: %s"
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
-#~ msgstr ""
-#~ "Makina adЩ otomatik olarak belirlenemiyor. <Enter> tuЧuna basarak makina adЩ "
-#~ "bilgilerini girin."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
+#~ msgstr "Makina adЩ otomatik olarak belirlenemiyor. <Enter> tuЧuna basarak makina adЩ bilgilerini girin."
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
-#~ msgstr ""
-#~ "LЭtfen, makinanizin alan adЩnЩ, makina adЩnЩ ve alan adЩ sunucularЩnЩzЩn IP "
-#~ "numaralarЩnЩ girin. Makina adЩ olarak makinanЩzЩn tam adЩ girmeniz gerek "
-#~ "(penguen.burasЩ.org.tr gibi). BaЧka alan adЩ sunucunuz yoksa, ilgili "
-#~ "kЩsЩmlarЩ boЧ bЩrakabilirsiniz."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
+#~ msgstr "LЭtfen, makinanizin alan adЩnЩ, makina adЩnЩ ve alan adЩ sunucularЩnЩzЩn IP numaralarЩnЩ girin. Makina adЩ olarak makinanЩzЩn tam adЩ girmeniz gerek (penguen.burasЩ.org.tr gibi). BaЧka alan adЩ sunucunuz yoksa, ilgili kЩsЩmlarЩ boЧ bЩrakabilirsiniz."
#~ msgid "Host name:"
#~ msgstr "Makina adЩ:"
@@ -3377,12 +2869,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "LAN networking has already been configured. Do you want to:"
#~ msgstr "Yerel aП ayarЩ yapЩlmЩЧ durumda. Ne yapmak istersiniz?"
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
-#~ msgstr ""
-#~ "YЭklenmiЧ sisteminiz iГin yerel aП ayarlarЩnЩ (Гevirmeli aП deПil) yapmak "
-#~ "ister misiniz? "
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
+#~ msgstr "YЭklenmiЧ sisteminiz iГin yerel aП ayarlarЩnЩ (Гevirmeli aП deПil) yapmak ister misiniz? "
#~ msgid "Cannot open components file: %s"
#~ msgstr "BileЧen dosyasЩ aГЩlamadЩ: %s"
@@ -3417,13 +2905,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "GNOME"
#~ msgstr "GNOME"
-#~ msgid ""
-#~ "Would you like to have the GNOME desktop installed? It provides an easy to "
-#~ "use interface, including a drag and drop capability and an integrated help "
-#~ "system."
-#~ msgstr ""
-#~ "GNOME kurulmasЩnЩ ister misiniz? GNOME, iГinde sЭrЭkle ve bЩrak ЖzelliПi "
-#~ "veyardЩm sistemi iГeren kullanЩmЩ kolay bir arabirim saПlar."
+#~ msgid "Would you like to have the GNOME desktop installed? It provides an easy to use interface, including a drag and drop capability and an integrated help system."
+#~ msgstr "GNOME kurulmasЩnЩ ister misiniz? GNOME, iГinde sЭrЭkle ve bЩrak ЖzelliПi veyardЩm sistemi iГeren kullanЩmЩ kolay bir arabirim saПlar."
#~ msgid "Choose components to install:"
#~ msgstr "Kurulacak bileЧenleri seГin:"
@@ -3453,20 +2936,16 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgstr "Paket GЭncelleme"
#~ msgid "<F1> will give you information on a particular printer type"
-#~ msgstr ""
-#~ "<F1> tuЧuna basarak belli bir yazЩcЩ tipiyle ilgili bilgi alabilirsiniz"
+#~ msgstr "<F1> tuЧuna basarak belli bir yazЩcЩ tipiyle ilgili bilgi alabilirsiniz"
#~ msgid "Configure Printer"
#~ msgstr "YazЩcЩ AyarlarЩ"
#~ msgid "<F1> will give you information on this printer driver."
-#~ msgstr ""
-#~ "<F1> tuЧuna basarak bu yazЩcЩ sЭrЭcЭsЭyle ilgili bilgi alabilirsiniz"
+#~ msgstr "<F1> tuЧuna basarak bu yazЩcЩ sЭrЭcЭsЭyle ilgili bilgi alabilirsiniz"
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
-#~ msgstr ""
-#~ "чimdi bu yazЩcЩ iГin kaПЩt boyu ve ГЖzЭnЭlЭrlЭk ayarЩ yapabilirsiniz."
+#~ msgid "You may now configure the paper size and resolution for this printer."
+#~ msgstr "чimdi bu yazЩcЩ iГin kaПЩt boyu ve ГЖzЭnЭlЭrlЭk ayarЩ yapabilirsiniz."
#~ msgid "Paper Size"
#~ msgstr "KaПЩt Boyu"
@@ -3489,11 +2968,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "Configure Uniprint Driver"
#~ msgstr "Uniprint SЭrЭcЭsЭnЭ Ayarla"
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
-#~ msgstr ""
-#~ "YazЩcЩnЩz hangi iskeleye baПlЩ? (/dev/lp0, LPT1: aygЩtЩna karЧЩ gelir) "
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr "YazЩcЩnЩz hangi iskeleye baПlЩ? (/dev/lp0, LPT1: aygЩtЩna karЧЩ gelir) "
#~ msgid ""
#~ "Auto-detected ports:\n"
@@ -3523,13 +2999,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "Remote lpd Printer Options"
#~ msgstr "Uzak lpd YazЩcЩ SeГenekleri"
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "Uzak bir lpd yazЩcЩsЩna basabilmek iГin yazЩcЩ sunucusunun ve sunucudaki "
-#~ "kuyruПun isimlerini belirtmelisiniz."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "Uzak bir lpd yazЩcЩsЩna basabilmek iГin yazЩcЩ sunucusunun ve sunucudaki kuyruПun isimlerini belirtmelisiniz."
#~ msgid "Printer Server:"
#~ msgstr "YazЩcЩ sunucusu:"
@@ -3540,15 +3011,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "NetWare Printer Options"
#~ msgstr "NetWare YazЩcЩ SeГenekleri"
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "Bir NetWare yazЩcЩsЩna basabilmek iГin NetWare sunucu adЩnЩ (bu isim TCP/IP "
-#~ "ismi ile aynЩ olmayabilir), gerekiyorsa sunucunun yazЩcЩ kuyruk adЩnЩ ve "
-#~ "kullanЩcЩ adЩ ile parolanЩzЩ belirtmelisiniz."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "Bir NetWare yazЩcЩsЩna basabilmek iГin NetWare sunucu adЩnЩ (bu isim TCP/IP ismi ile aynЩ olmayabilir), gerekiyorsa sunucunun yazЩcЩ kuyruk adЩnЩ ve kullanЩcЩ adЩ ile parolanЩzЩ belirtmelisiniz."
#~ msgid "SMB server host:"
#~ msgstr "SMB sunucu adЩ:"
@@ -3565,16 +3029,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "SMB/Windows 95/NT Printer Options"
#~ msgstr "SMB/Windows 95/NT YazЩcЩ SeГenekleri"
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "Bir SMB yazЩcЩsЩna basabilmek iГin SMB sunucu adЩnЩ (bu isim TCP/IP ismi ile "
-#~ "aynЩ olmayabilir), gerekiyorsa sunucunun IP adresini, yazЩcЩnЩn paylaЧЩm "
-#~ "adЩnЩ ve kullanЩcЩ adЩ ile parolanЩzЩ belirtmelisiniz."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "Bir SMB yazЩcЩsЩna basabilmek iГin SMB sunucu adЩnЩ (bu isim TCP/IP ismi ile aynЩ olmayabilir), gerekiyorsa sunucunun IP adresini, yazЩcЩnЩn paylaЧЩm adЩnЩ ve kullanЩcЩ adЩ ile parolanЩzЩ belirtmelisiniz."
#~ msgid "Spool directory:"
#~ msgstr "Kuyruk alanЩ:"
@@ -3582,13 +3038,8 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "Standard Printer Options"
#~ msgstr "Genel YazЩcЩ SeГenekleri"
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Her yazЩcЩ kuyruПunun bir adЩ ve kuyruk alanЩ olmasЩ gerekir. Bu kuyruПun "
-#~ "adЩ ve alanЩ neresi?"
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Her yazЩcЩ kuyruПunun bir adЩ ve kuyruk alanЩ olmasЩ gerekir. Bu kuyruПun adЩ ve alanЩ neresi?"
#~ msgid "Would you like to configure a printer?"
#~ msgstr "Bir yazЩcЩ ayarlamak istiyor musunuz?"
@@ -3708,9 +3159,7 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ "%s dosyasЩ transfer hatasЩ:\n"
#~ "%s"
-#~ msgid ""
-#~ "An error occurred reading the partition table for the block device %s. The "
-#~ "error was:"
+#~ msgid "An error occurred reading the partition table for the block device %s. The error was:"
#~ msgstr "%s aygЩtЩnЩn bЖlЭm tablosu okunurken bir hatayla karЧЩlaЧЩldЩ:"
#~ msgid "LAN manager host:"
@@ -3743,8 +3192,5 @@ msgstr "SCSI sЭrЭcЭsЭ yЭkleniyor..."
#~ msgid "I cannot log into machine: %s\n"
#~ msgstr "Makinaya girilemedi: %s\n"
-#~ msgid ""
-#~ "Would you like to install or configure the SILO bootloader on your system?"
-#~ msgstr ""
-#~ "Sistem iГin bir SILO aГЩlЩЧ yЭkleyici kurmak ve yapЩlandЩrmak istiyor "
-#~ "musunuz?"
+#~ msgid "Would you like to install or configure the SILO bootloader on your system?"
+#~ msgstr "Sistem iГin bir SILO aГЩlЩЧ yЭkleyici kurmak ve yapЩlandЩrmak istiyor musunuz?"
diff --git a/po/uk.po b/po/uk.po
index 031d67a47..17ce475b1 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
-"POT-Creation-Date: 1999-10-08 15:09-0400\n"
+"POT-Creation-Date: 1999-10-18 15:35-0400\n"
"PO-Revision-Date: 1999-04-09 12:20+0300\n"
"Last-Translator: Antonchuk Serg <anchuk@comizdat.com>\n"
"Language-Team: Comizdat <anchuk@comizdat.com>\n"
@@ -13,91 +13,67 @@ msgstr ""
"Content-Type: text/plain; charset=koi8-u\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../gui.py:257 ../gui.py:472
+#: ../gui.py:263 ../gui.py:509
msgid "Next"
msgstr "Наступний"
-#: ../gui.py:258 ../gui.py:471 ../libfdisk/newtfsedit.c:1291
-#: ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67
-#: ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:508
-#: ../loader/loader.c:245 ../loader/loader.c:593 ../loader/loader.c:629
-#: ../loader/loader.c:732 ../loader/loader.c:1095 ../loader/net.c:162
-#: ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87
-#: ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163
-#: ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269
-#: ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435
-#: ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496
-#: ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593
-#: ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10
-#: ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73
-#: ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85
-#: ../textw/packages.py:136 ../textw/packages.py:145
-#: ../textw/partitioning.py:25 ../textw/partitioning.py:64
-#: ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77
-#: ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141
-#: ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../gui.py:264 ../gui.py:508 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../loader/cdrom.c:34 ../loader/devices.c:67 ../loader/devices.c:168 ../loader/devices.c:218 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:596 ../loader/loader.c:632 ../loader/loader.c:735 ../loader/loader.c:1103 ../loader/net.c:162 ../loader/net.c:284 ../loader/urls.c:124 ../loader/urls.c:322 ../text.py:87 ../text.py:88 ../text.py:107 ../text.py:130 ../text.py:160 ../text.py:163 ../text.py:205 ../text.py:234 ../text.py:248 ../text.py:250 ../text.py:269 ../text.py:271 ../text.py:293 ../text.py:295 ../text.py:384 ../text.py:435 ../text.py:437 ../text.py:446 ../text.py:464 ../text.py:477 ../text.py:496 ../text.py:498 ../text.py:523 ../text.py:526 ../text.py:535 ../text.py:593 ../text.py:594 ../text.py:816 ../text.py:838 ../textw/constants.py:10 ../textw/lilo.py:22 ../textw/lilo.py:66 ../textw/lilo.py:73 ../textw/lilo.py:148 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/packages.py:145 ../textw/partitioning.py:25 ../textw/partitioning.py:64 ../textw/partitioning.py:202 ../textw/silo.py:22 ../textw/silo.py:77 ../textw/silo.py:176 ../textw/userauth.py:29 ../textw/userauth.py:141 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "Back"
msgstr "Назад"
-#: ../gui.py:259 ../gui.py:476
+#: ../gui.py:265 ../gui.py:513
msgid "Show Help"
msgstr "Показати п╕дказку"
-#: ../gui.py:260 ../gui.py:475
+#: ../gui.py:266 ../gui.py:512
msgid "Hide Help"
msgstr "Сховати п╕дказку"
-#: ../gui.py:261 ../gui.py:474
+#: ../gui.py:267 ../gui.py:511
msgid "Finish"
msgstr "Ф╕н╕ш"
-#: ../gui.py:264 ../gui.py:498
+#: ../gui.py:270 ../gui.py:535
msgid "Online Help"
msgstr "П╕дказка"
-#: ../gui.py:265 ../iw/language.py:10 ../text.py:49 ../text.py:925
+#: ../gui.py:271 ../iw/language.py:10 ../text.py:49 ../text.py:925
msgid "Language Selection"
msgstr "Виб╕р мови"
-#: ../gui.py:465
+#: ../gui.py:475
msgid "Red Hat Linux Installer"
msgstr "Red Hat Linux Installer"
-#: ../installclass.py:248 ../iw/rootpartition.py:196
-msgid ""
-"You are about to erase any preexisting Linux installations on your system."
+#: ../gui.py:479
+#, fuzzy
+msgid "Red Hat Linux Install Shell"
+msgstr "Red Hat Linux Installer"
+
+#: ../gui.py:490
+#, fuzzy, c-format
+msgid "Red Hat Linux Installer on %s"
+msgstr "Red Hat Linux Installer"
+
+#: ../gui.py:491
+#, fuzzy, c-format
+msgid "Red Hat Linux Install Shell on %s"
+msgstr "Red Hat Linux Installer"
+
+#: ../installclass.py:248
+msgid "You are about to erase any preexisting Linux installations on your system."
msgstr ""
#: ../installclass.py:288
#, fuzzy
-msgid ""
-"You are about to erase ALL DATA on your hard drive to make room for your "
-"Linux installation."
+msgid "You are about to erase ALL DATA on your hard drive to make room for your Linux installation."
msgstr "Вс╕ дан╕ буде втрачено. Ви певн╕, що хочете цього?"
#: ../text.py:50
msgid "What language would you like to use during the installation process?"
msgstr "Яка мова повинна використовуватись п╕д час процесу инстяляц╕╖?"
-#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167
-#: ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218
-#: ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107
-#: ../loader/lang.c:246 ../loader/lang.c:508 ../loader/loader.c:245
-#: ../loader/loader.c:461 ../loader/loader.c:471 ../loader/loader.c:629
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:956 ../loader/loader.c:1095
-#: ../loader/loader.c:1585 ../loader/net.c:162 ../loader/net.c:284
-#: ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107
-#: ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384
-#: ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593
-#: ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888
-#: ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66
-#: ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136
-#: ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77
-#: ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48
-#: ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102
-#: ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
+#: ../loader/cdrom.c:34 ../loader/devices.c:66 ../loader/devices.c:167 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/devices.c:218 ../loader/kickstart.c:58 ../loader/kickstart.c:68 ../loader/kickstart.c:107 ../loader/lang.c:271 ../loader/lang.c:531 ../loader/loader.c:248 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:632 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:964 ../loader/loader.c:1103 ../loader/loader.c:1609 ../loader/net.c:162 ../loader/net.c:284 ../loader/net.c:560 ../loader/urls.c:124 ../loader/urls.c:201 ../loader/urls.c:206 ../loader/urls.c:322 ../text.py:52 ../text.py:107 ../text.py:160 ../text.py:205 ../text.py:248 ../text.py:293 ../text.py:384 ../text.py:404 ../text.py:435 ../text.py:496 ../text.py:523 ../text.py:593 ../text.py:614 ../text.py:626 ../text.py:638 ../text.py:816 ../text.py:888 ../text.py:892 ../text.py:1042 ../textw/lilo.py:21 ../textw/lilo.py:66 ../textw/packages.py:20 ../textw/packages.py:85 ../textw/packages.py:136 ../textw/partitioning.py:202 ../textw/silo.py:21 ../textw/silo.py:77 ../textw/userauth.py:29 ../textw/userauth.py:43 ../textw/userauth.py:48 ../textw/userauth.py:82 ../textw/userauth.py:94 ../textw/userauth.py:102 ../textw/userauth.py:111 ../textw/userauth.py:172 ../textw/userauth.py:244
msgid "OK"
msgstr "ОК"
@@ -117,8 +93,7 @@ msgstr "/dev/ttyS2 (COM3 у DOS)"
msgid "/dev/ttyS3 (COM4 under DOS)"
msgstr "/dev/ttyS3 (COM4 у DOS)"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79
-#: ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../text.py:85 ../textw/lilo.py:79 ../textw/lilo.py:138 ../textw/silo.py:109 ../textw/silo.py:166
msgid "Device"
msgstr "Пристр╕й"
@@ -128,26 +103,7 @@ msgid "What device is your mouse located on? %s %i"
msgstr "До якого пристрою п╕дключено мишу ? %s %i"
#. code to create dialog in gtk+
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
-#: ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045
-#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089
-#: ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388
-#: ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912
-#: ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934
-#: ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113
-#: ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539
-#: ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575
-#: ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299
-#: ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445
-#: ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535
-#: ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97
-#: ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127
-#: ../textw/silo.py:175
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660 ../libfdisk/fsedit.c:689 ../libfdisk/fsedit.c:705 ../libfdisk/fsedit.c:1063 ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1071 ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1294 ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1406 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/gnomefsedit.c:1901 ../libfdisk/gnomefsedit.c:1912 ../libfdisk/gnomefsedit.c:1919 ../libfdisk/gnomefsedit.c:1934 ../libfdisk/gnomefsedit.c:1943 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:113 ../libfdisk/newtfsedit.c:461 ../libfdisk/newtfsedit.c:539 ../libfdisk/newtfsedit.c:557 ../libfdisk/newtfsedit.c:575 ../libfdisk/newtfsedit.c:1291 ../libfdisk/newtfsedit.c:1299 ../libfdisk/newtfsedit.c:1424 ../libfdisk/newtfsedit.c:1445 ../libfdisk/newtfsedit.c:1539 ../text.py:87 ../text.py:535 ../textw/constants.py:10 ../textw/lilo.py:84 ../textw/lilo.py:97 ../textw/lilo.py:147 ../textw/silo.py:114 ../textw/silo.py:127 ../textw/silo.py:175
msgid "Ok"
msgstr "Ok"
@@ -199,12 +155,7 @@ msgstr "Тип инсталяц╕╕"
msgid "What type of system would you like to install?"
msgstr "Систему якого типу ви бажа╓те встановити"
-#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178
-#: ../loader/devices.c:183 ../loader/loader.c:461 ../loader/loader.c:471
-#: ../loader/loader.c:687 ../loader/loader.c:732 ../loader/loader.c:865
-#: ../loader/loader.c:870 ../loader/loader.c:1585 ../loader/urls.c:201
-#: ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:358
-#: ../todo.py:499 ../todo.py:1039 ../todo.py:1348
+#: ../libfdisk/newtfsedit.c:1539 ../loader/devices.c:178 ../loader/devices.c:183 ../loader/loader.c:464 ../loader/loader.c:474 ../loader/loader.c:690 ../loader/loader.c:735 ../loader/loader.c:873 ../loader/loader.c:878 ../loader/loader.c:1609 ../loader/urls.c:201 ../loader/urls.c:206 ../text.py:231 ../text.py:634 ../todo.py:362 ../todo.py:503 ../todo.py:1043 ../todo.py:1362
msgid "Error"
msgstr "Помилка"
@@ -225,33 +176,14 @@ msgid "Customize Packages to Upgrade"
msgstr "Виб╕р пакет╕в для оновлення"
#: ../text.py:262
-msgid ""
-"The packages you have installed, and any other packages which are needed to "
-"satisfy their dependencies, have been selected for installation. Would you "
-"like to customize the set of packages that will be upgraded?"
-msgstr ""
-"Пакети, що ви встановили, та пакети, потр╕бн╕ для узгодження пакет╕в, вже "
-"в╕д╕брано для встановлення. Чи уточнити наб╕р пакет╕в для поновлення?"
-
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:593 ../loader/net.c:701
-#: ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471
-#: ../textw/partitioning.py:165
+msgid "The packages you have installed, and any other packages which are needed to satisfy their dependencies, have been selected for installation. Would you like to customize the set of packages that will be upgraded?"
+msgstr "Пакети, що ви встановили, та пакети, потр╕бн╕ для узгодження пакет╕в, вже в╕д╕брано для встановлення. Чи уточнити наб╕р пакет╕в для поновлення?"
+
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/loader.c:596 ../loader/net.c:701 ../text.py:269 ../text.py:446 ../text.py:464 ../text.py:471 ../textw/partitioning.py:165
msgid "Yes"
msgstr "Так"
-#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001
-#: ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035
-#: ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358
-#: ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691
-#: ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495
-#: ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269
-#: ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474
-#: ../textw/partitioning.py:165
+#: ../libfdisk/gnomefsedit.c:601 ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1107 ../libfdisk/gnomefsedit.c:2035 ../libfdisk/gnomefsedit.c:2305 ../libfdisk/gnomefsedit.c:2358 ../libfdisk/newtfsedit.c:498 ../libfdisk/newtfsedit.c:691 ../libfdisk/newtfsedit.c:1477 ../libfdisk/newtfsedit.c:1495 ../libfdisk/newtfsedit.c:1580 ../loader/net.c:701 ../text.py:269 ../text.py:274 ../text.py:446 ../text.py:464 ../text.py:474 ../textw/partitioning.py:165
msgid "No"
msgstr "Н╕"
@@ -263,21 +195,15 @@ msgstr "Red Hat Linux"
msgid ""
"Welcome to Red Hat Linux!\n"
"\n"
-"This installation process is outlined in detail in the Official Red Hat "
-"Linux Installation Guide available from Red Hat Software. If you have access "
-"to this manual, you should read the installation section before continuing.\n"
+"This installation process is outlined in detail in the Official Red Hat Linux Installation Guide available from Red Hat Software. If you have access to this manual, you should read the installation section before continuing.\n"
"\n"
-"If you have purchased Official Red Hat Linux, be sure to register your "
-"purchase through our web site, http://www.redhat.com/."
+"If you have purchased Official Red Hat Linux, be sure to register your purchase through our web site, http://www.redhat.com/."
msgstr ""
"Ласкаво просимо до Red Hat Linux!\n"
"\n"
-"Процес встановлення докладно описано в оф╕ц╕йному пос╕бнику Red Hat Linux- "
-"його можна одержати через Red Hat Software. Якщо ви ма╓те доступ до цього "
-"пос╕бника, радимо прочитати його перед дальшим встановленням.\n"
+"Процес встановлення докладно описано в оф╕ц╕йному пос╕бнику Red Hat Linux- його можна одержати через Red Hat Software. Якщо ви ма╓те доступ до цього пос╕бника, радимо прочитати його перед дальшим встановленням.\n"
"\n"
-"Якщо ви придбали оф╕ц╕йний Red Hat Linux, не забудьте зарере╓струватийого на "
-"нашому WEB-сайт╕, http://www.redhat.com."
+"Якщо ви придбали оф╕ц╕йний Red Hat Linux, не забудьте зарере╓струватийого на нашому WEB-сайт╕, http://www.redhat.com."
#: ../text.py:356
msgid "Use bootp/dhcp"
@@ -316,35 +242,21 @@ msgid "Hostname Configuration"
msgstr "╤м'я комп'ютеру"
#: ../text.py:432
-msgid ""
-"The hostname is the name of your computer. If your computer is attached to "
-"a network, this may be assigned by your network administrator."
-msgstr ""
-"Hostname (Назва хосту)це ╕м'я вашого комп'ютера. Якщо ваш комп'ютер "
-"п╕д'╓днано до мереж╕, це ╕м'я повинен визначити ваш системний адм╕н╕стратор."
+msgid "The hostname is the name of your computer. If your computer is attached to a network, this may be assigned by your network administrator."
+msgstr "Hostname (Назва хосту)це ╕м'я вашого комп'ютера. Якщо ваш комп'ютер п╕д'╓днано до мереж╕, це ╕м'я повинен визначити ваш системний адм╕н╕стратор."
-#: ../iw/network.py:201 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
+#: ../iw/network.py:209 ../loader/net.c:458 ../loader/net.c:620 ../text.py:435
msgid "Hostname"
msgstr "Назва хосту"
#: ../text.py:447
#, fuzzy
msgid ""
-"A custom boot disk provides a way of booting into your Linux system without "
-"depending on the normal bootloader. This is useful if you don't want to "
-"install lilo on your system, another operating system removes lilo, or lilo "
-"doesn't work with your hardware configuration. A custom boot disk can also "
-"be used with the Red Hat rescue image, making it much easier to recover from "
-"severe system failures.\n"
+"A custom boot disk provides a way of booting into your Linux system without depending on the normal bootloader. This is useful if you don't want to install lilo on your system, another operating system removes lilo, or lilo doesn't work with your hardware configuration. A custom boot disk can also be used with the Red Hat rescue image, making it much easier to recover from severe system failures.\n"
"\n"
"Would you like to create a boot disk for your system?"
msgstr ""
-"З диску завантаження ви зможете завантажувати Linux так само, як з╕ "
-"стандартного. Це може знадобитися, якщо ви не бажаете встановлювати lilo, "
-"якщо ╕нша операц╕йна система видалила lilo, або lilo не може працювати на "
-"ваш╕й конф╕гурац╕╕. Диск завантаження також може бути використано з "
-"ремонтною дискетою Red Hat, котра значно полегчить в╕дновлення системи п╕сле "
-"збою.\n"
+"З диску завантаження ви зможете завантажувати Linux так само, як з╕ стандартного. Це може знадобитися, якщо ви не бажаете встановлювати lilo, якщо ╕нша операц╕йна система видалила lilo, або lilo не може працювати на ваш╕й конф╕гурац╕╕. Диск завантаження також може бути використано з ремонтною дискетою Red Hat, котра значно полегчить в╕дновлення системи п╕сле збою.\n"
"\n"
"Чи створити диск завантаження зараз?"
@@ -388,12 +300,8 @@ msgid "Installation to begin"
msgstr "Початок встановлення"
#: ../iw/confirm.py:30 ../text.py:590
-msgid ""
-"A complete log of your installation will be in /tmp/install.log after "
-"rebooting your system. You may want to keep this file for later reference."
-msgstr ""
-"Повний протокол встановлення вашо╖ системы п╕сля перевантаження будеу "
-"/tmp/install.log. Можливо, ви потребуватимете його згодом."
+msgid "A complete log of your installation will be in /tmp/install.log after rebooting your system. You may want to keep this file for later reference."
+msgstr "Повний протокол встановлення вашо╖ системы п╕сля перевантаження будеу /tmp/install.log. Можливо, ви потребуватимете його згодом."
#: ../text.py:606
msgid "Complete"
@@ -403,42 +311,27 @@ msgstr "Зроблено"
msgid ""
"Congratulations, installation is complete.\n"
"\n"
-"Remove the boot media and press return to reboot. For information on fixes "
-"which are available for this release of Red Hat Linux, consult the Errata "
-"available from http://www.redhat.com.\n"
+"Remove the boot media and press return to reboot. For information on fixes which are available for this release of Red Hat Linux, consult the Errata available from http://www.redhat.com.\n"
"\n"
-"Information on configuring your system is available in the post install "
-"chapter of the Official Red Hat Linux User's Guide."
+"Information on configuring your system is available in the post install chapter of the Official Red Hat Linux User's Guide."
msgstr ""
"В╕та╓мо, встановлення завершено.\n"
"\n"
-"Видал╕ть дискету з дисководу та натисн╕ть <Enter> для перевантаження. "
-"╤нформац╕ю про виправлення, доступну для цього випуску Red Hat Linux, "
-"знайдете у Errata на http://www.redhat.com.\n"
+"Видал╕ть дискету з дисководу та натисн╕ть <Enter> для перевантаження. ╤нформац╕ю про виправлення, доступну для цього випуску Red Hat Linux, знайдете у Errata на http://www.redhat.com.\n"
"\n"
-"╤нформац╕ю про налагодження вашо╖ системи п╕сля встановлення можна одержати "
-"з оф╕ц╕йного пос╕бника користувача Red Hat Linux."
+"╤нформац╕ю про налагодження вашо╖ системи п╕сля встановлення можна одержати з оф╕ц╕йного пос╕бника користувача Red Hat Linux."
#: ../iw/bootdisk.py:50 ../text.py:623
-msgid ""
-"Insert a blank floppy in the first floppy drive. All data on this disk will "
-"be erased during creation of the boot disk."
-msgstr ""
-"Вставте чистий floppy диск у перший дисковод. Уся ╕нформац╕я на ц╕й дискет╕ "
-"буде стерта при створенн╕ завантажувального диску."
+msgid "Insert a blank floppy in the first floppy drive. All data on this disk will be erased during creation of the boot disk."
+msgstr "Вставте чистий floppy диск у перший дисковод. Уся ╕нформац╕я на ц╕й дискет╕ буде стерта при створенн╕ завантажувального диску."
-#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639
-#: ../textw/lilo.py:21 ../textw/silo.py:21
+#: ../text.py:626 ../text.py:627 ../text.py:638 ../text.py:639 ../textw/lilo.py:21 ../textw/silo.py:21
msgid "Skip"
msgstr "Пропустити"
#: ../iw/bootdisk.py:54 ../text.py:635
-msgid ""
-"An error occured while making the boot disk. Please make sure that there is "
-"a formatted floppy in the first floppy drive."
-msgstr ""
-"Виникла помилка при створенн╕ завантажувального диску. Будь ласка перев╕рте "
-"чи отформатировано диск у першому диковод╕."
+msgid "An error occured while making the boot disk. Please make sure that there is a formatted floppy in the first floppy drive."
+msgstr "Виникла помилка при створенн╕ завантажувального диску. Будь ласка перев╕рте чи отформатировано диск у першому диковод╕."
#: ../text.py:697
msgid "Package Installation"
@@ -501,17 +394,14 @@ msgid "Red Hat Linux (C) 1999 Red Hat, Inc."
msgstr "Red Hat Linux (C) 1999 Red Hat, Inc."
#: ../text.py:907
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
msgstr " <Tab>/<Alt-Tab> м╕ж елементами | <Space> виб╕р | <F12> наступний "
-#: ../iw/welcome.py:11 ../text.py:929
+#: ../iw/welcome.py:10 ../text.py:929
msgid "Welcome"
msgstr "Ласкаво просимо"
-#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265
-#: ../text.py:935 ../text.py:941
+#: ../iw/lilo.py:94 ../iw/lilo.py:196 ../iw/silo.py:124 ../iw/silo.py:265 ../text.py:935 ../text.py:941
msgid "Partition"
msgstr "Розд╕л"
@@ -531,8 +421,7 @@ msgstr "Своп"
msgid "Filesystem Formatting"
msgstr "Форматування файлово╖ системи"
-#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24
-#: ../textw/lilo.py:63 ../textw/lilo.py:155
+#: ../text.py:947 ../text.py:949 ../text.py:951 ../textw/lilo.py:24 ../textw/lilo.py:63 ../textw/lilo.py:155
msgid "LILO Configuration"
msgstr "Кнф╕гурац╕я LILO"
@@ -596,8 +485,7 @@ msgstr "Встановлення системи"
msgid "Installation Complete"
msgstr "Встановлення завершено"
-#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24
-#: ../textw/silo.py:79 ../textw/silo.py:183
+#: ../text.py:994 ../text.py:997 ../text.py:1000 ../textw/silo.py:24 ../textw/silo.py:79 ../textw/silo.py:183
#, fuzzy
msgid "SILO Configuration"
msgstr "Кнф╕гурац╕я LILO"
@@ -626,174 +514,172 @@ msgstr "Скасовано"
msgid "I can't go to the previous step from here. You will have to try again."
msgstr "Повернутися до попереднього етапу неможливо. Спробуйте знову."
-#: ../todo.py:359
+#: ../todo.py:363
#, fuzzy, c-format
msgid "Error unmounting %s: %s"
msgstr "помилка запису до файлу %s: %s"
-#: ../todo.py:500
+#: ../todo.py:504
#, fuzzy, c-format
msgid "Error mounting %s: %s"
msgstr "помилка запису до файлу %s: %s"
-#: ../todo.py:521 ../todo.py:710
+#: ../todo.py:525 ../todo.py:714
msgid "Creating"
msgstr ""
-#: ../todo.py:522
+#: ../todo.py:526
#, fuzzy
msgid "Creating RAID devices..."
msgstr "Створення системного диску"
-#: ../todo.py:571 ../todo.py:584
+#: ../todo.py:575 ../todo.py:588
#, fuzzy
msgid "Formatting"
msgstr "Форматування файлово╖ системи"
-#: ../todo.py:572 ../todo.py:585
+#: ../todo.py:576 ../todo.py:589
#, fuzzy, c-format
msgid "Formatting %s filesystem..."
msgstr "Створення файлово╖ системи ext2 на /dev/%s..."
-#: ../todo.py:710
+#: ../todo.py:714
#, fuzzy
msgid "Creating boot disk..."
msgstr "Створення системного диску"
-#: ../todo.py:841
+#: ../todo.py:845
#, fuzzy
msgid "Reading"
msgstr "Залишилось"
-#: ../todo.py:842
+#: ../todo.py:846
#, fuzzy
msgid "Reading package information..."
msgstr "Посилка запиту про параметри IP..."
-#: ../todo.py:996 ../todo.py:1006
+#: ../todo.py:1000 ../todo.py:1010
msgid "no suggestion"
msgstr "жодних пропозиц╕й"
-#: ../todo.py:1012
+#: ../todo.py:1016
#, fuzzy
msgid "Searching"
msgstr "Ус╕ пакети"
-#: ../todo.py:1013
+#: ../todo.py:1017
msgid "Searching for Red Hat Linux installations..."
msgstr ""
-#: ../todo.py:1040
+#: ../todo.py:1044
#, fuzzy, c-format
msgid "Error mounting ext2 filesystem on %s: %s"
msgstr "помилка запису до файлу %s: %s"
-#: ../todo.py:1059
+#: ../todo.py:1063
#, fuzzy
msgid "Finding"
msgstr "Залишилось"
-#: ../todo.py:1060
+#: ../todo.py:1064
msgid "Finding packages to upgrade..."
msgstr "Пошук пакет╕в для оновлення..."
-#: ../todo.py:1248
+#: ../todo.py:1252
msgid "Processing"
msgstr "Опрацьовую"
-#: ../todo.py:1249
+#: ../todo.py:1253
#, fuzzy
msgid "Preparing to install..."
msgstr "Пошук файл╕в щоб встановити... "
-#: ../todo.py:1343
+#: ../todo.py:1357
#, fuzzy
msgid "Rebuilding"
msgstr "Залишилось"
-#: ../todo.py:1344
+#: ../todo.py:1358
msgid "Rebuilding RPM database..."
msgstr "Оновлення бази RPM..."
-#: ../todo.py:1349
+#: ../todo.py:1363
msgid "Rebuild of RPM database failed. You may be out of disk space?"
msgstr "Оновлення бази RPM неможливе. Чи достатньо м╕сця на диску?"
-#: ../todo.py:1399
+#: ../todo.py:1413
#, c-format
msgid "Upgrading %s.\n"
msgstr ""
-#: ../todo.py:1401
+#: ../todo.py:1415
#, fuzzy, c-format
msgid "Installing %s.\n"
msgstr "Встановлення пакет╕в"
-#: ../todo.py:1422
+#: ../todo.py:1436
msgid ""
-"You don't appear to have enough disk space to install the packages you've "
-"selected. You need more space on the following filesystems:\n"
+"You don't appear to have enough disk space to install the packages you've selected. You need more space on the following filesystems:\n"
"\n"
msgstr ""
-"Зда╓ться що ви не ма╓те достатньо в╕льного м╕сця, щоб установити ус╕ обран╕ "
-"вами пакети. Вам потр╕бно б╕льше м╕сця на наступних файлових системах:\n"
+"Зда╓ться що ви не ма╓те достатньо в╕льного м╕сця, щоб установити ус╕ обран╕ вами пакети. Вам потр╕бно б╕льше м╕сця на наступних файлових системах:\n"
"\n"
-#: ../todo.py:1425
+#: ../todo.py:1439
#, fuzzy
msgid "Mount Point"
msgstr "Точка монтування"
-#: ../todo.py:1425
+#: ../todo.py:1439
msgid "Space Needed"
msgstr "Необх╕дно м╕сце"
-#: ../todo.py:1439
+#: ../todo.py:1453
msgid "Disk Space"
msgstr "Прост╕р на дисков╕"
-#: ../todo.py:1462
+#: ../todo.py:1476
#, fuzzy
msgid "Post Install"
msgstr "Встановити"
-#: ../todo.py:1463
+#: ../todo.py:1477
#, fuzzy
msgid "Performing post install configuration..."
msgstr "Перев╕рка ц╕╓╖ конф╕гурац╕╖"
-#: ../iw/xconfig.py:10 ../xf86config.py:231
+#: ../iw/xconfig.py:10 ../xf86config.py:235
msgid "Video Card"
msgstr "В╕деокарта"
-#: ../iw/xconfig.py:12 ../xf86config.py:233
+#: ../iw/xconfig.py:12 ../xf86config.py:237
msgid "Video Ram"
msgstr "В╕део пам'ять"
-#: ../xf86config.py:235
+#: ../xf86config.py:239
#, fuzzy
msgid "X server"
msgstr "Сервер"
-#: ../xf86config.py:237
+#: ../xf86config.py:241
#, fuzzy
msgid "Unable to detect video card"
msgstr "Не можу розгорнути другий ramdisk"
-#: ../iw/xconfig.py:11 ../xf86config.py:242 ../xf86config.py:244
+#: ../iw/xconfig.py:11 ../xf86config.py:246 ../xf86config.py:248
msgid "Monitor"
msgstr "Мон╕тор"
-#: ../xf86config.py:244
+#: ../xf86config.py:248
msgid "Plug and Play Monitor"
msgstr ""
-#: ../xf86config.py:246
+#: ../xf86config.py:250
#, fuzzy
msgid "Horizontal frequency range"
msgstr "Горизонтальна розгортка"
-#: ../xf86config.py:248
+#: ../xf86config.py:252
#, fuzzy
msgid "Vertical frequency range"
msgstr "вертикальна розгортка"
@@ -822,8 +708,7 @@ msgstr "Пароль"
msgid "Password (confirm)"
msgstr "П╕дтверд╕ть пароль:"
-#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79
-#: ../textw/userauth.py:160
+#: ../iw/account.py:196 ../iw/account.py:227 ../textw/userauth.py:79 ../textw/userauth.py:160
msgid "Full Name"
msgstr "Повне ╕м'я"
@@ -831,15 +716,11 @@ msgstr "Повне ╕м'я"
msgid "Add"
msgstr "Додати"
-#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168
-#: ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197
-#: ../textw/userauth.py:172
+#: ../iw/account.py:207 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/lilo.py:147 ../textw/lilo.py:168 ../textw/partitioning.py:63 ../textw/silo.py:175 ../textw/silo.py:197 ../textw/userauth.py:172
msgid "Edit"
msgstr "Редагувати"
-#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290
-#: ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
+#: ../iw/account.py:209 ../libfdisk/newtfsedit.c:1290 ../libfdisk/newtfsedit.c:1298 ../textw/userauth.py:171
msgid "Delete"
msgstr "Видалити"
@@ -955,8 +836,7 @@ msgstr "GNOME станц╕я для роботи"
msgid "KDE Workstation"
msgstr "KDE станц╕я для роботи"
-#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211
-#: ../libfdisk/gnomefsedit.c:2231
+#: ../iw/installpath.py:42 ../libfdisk/gnomefsedit.c:2211 ../libfdisk/gnomefsedit.c:2231
msgid "Server"
msgstr "Сервер"
@@ -1000,7 +880,7 @@ msgstr "Вар╕ант"
msgid "Test your selection here:"
msgstr "Перев╕рте ваш виб╕р тут:"
-#: ../iw/language.py:16 ../loader/lang.c:244
+#: ../iw/language.py:16 ../loader/lang.c:269
msgid "What language should be used during the installation process?"
msgstr "Яка мова повинна використовуватись п╕д час процесу инстяляц╕╖?"
@@ -1040,19 +920,15 @@ msgstr "Створити диск завантаження"
msgid "Do not install LILO"
msgstr "Не встановлювати LILO"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Default"
msgstr "По замовчуванню"
-#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/silo.py:242 ../textw/lilo.py:138 ../textw/silo.py:166
msgid "Partition type"
msgstr "Тип розд╕лу"
-#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277
-#: ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110
-#: ../textw/silo.py:166
+#: ../iw/lilo.py:174 ../iw/lilo.py:208 ../iw/silo.py:242 ../iw/silo.py:277 ../textw/lilo.py:80 ../textw/lilo.py:138 ../textw/silo.py:110 ../textw/silo.py:166
msgid "Boot label"
msgstr "Позначка завантаження"
@@ -1060,43 +936,43 @@ msgstr "Позначка завантаження"
msgid "Emulate 3 Buttons"
msgstr "Емулювати 3 кнопки"
-#: ../iw/network.py:141
+#: ../iw/network.py:148
msgid "Configure using DHCP"
msgstr "Конф╕гурац╕я DHCP"
-#: ../iw/network.py:147
+#: ../iw/network.py:154
msgid "Activate on boot"
msgstr "Завантажувальний"
-#: ../iw/network.py:155
+#: ../iw/network.py:163
msgid "IP Address"
msgstr "IP-адреса:"
-#: ../iw/network.py:156 ../loader/net.c:618
+#: ../iw/network.py:164 ../loader/net.c:618
msgid "Netmask"
msgstr "Маска п╕дмереж╕"
-#: ../iw/network.py:157 ../loader/loader.c:230
+#: ../iw/network.py:165 ../loader/loader.c:233
msgid "Network"
msgstr "Мережа"
-#: ../iw/network.py:158
+#: ../iw/network.py:166
msgid "Broadcast"
msgstr "Широкомовний"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Gateway"
msgstr "Шлюз"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Primary DNS"
msgstr "Головний DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Secondary DNS"
msgstr "Вторинний DNS"
-#: ../iw/network.py:202
+#: ../iw/network.py:210
msgid "Ternary DNS"
msgstr "Третинний DNS"
@@ -1181,14 +1057,8 @@ msgid "Low Memory"
msgstr "Браку╓ пам'ят╕"
#: ../iw/rootpartition.py:44 ../textw/partitioning.py:161
-msgid ""
-"As you don't have much memory in this machine, we need to turn on swap space "
-"immediately. To do this we'll have to write your new partition table to the "
-"disk immediately. Is that okay?"
-msgstr ""
-"Якщо Ви не ма╓те б╕льш пам'ят╕ на ц╕й систем╕, ви повинн╕ негайно включити "
-"п╕дкачку. Для цього потр╕бно негайно записати у таблиц╕ розд╕л╕в навий "
-"розд╕л п╕ккачки. Згодн╕?"
+msgid "As you don't have much memory in this machine, we need to turn on swap space immediately. To do this we'll have to write your new partition table to the disk immediately. Is that okay?"
+msgstr "Якщо Ви не ма╓те б╕льш пам'ят╕ на ц╕й систем╕, ви повинн╕ негайно включити п╕дкачку. Для цього потр╕бно негайно записати у таблиц╕ розд╕л╕в навий розд╕л п╕ккачки. Згодн╕?"
#: ../iw/rootpartition.py:143 ../textw/partitioning.py:123
msgid "Automatic Partitioning"
@@ -1199,18 +1069,14 @@ msgstr "Автоматичний розпод╕л"
msgid ""
"%s\n"
"\n"
-"If you don't want to do this, you can continue with this install by "
-"partitioning manually, or you can go back and perform a fully customized "
-"installation."
-msgstr ""
-"Якщо вам це не потр╕бно, ви можете продовжити цю инсталяц╕ю з розпод╕лом "
-"диску вручну, або повернутися ╕ почати повн╕стю ручну инсталяц╕ю."
+"If you don't want to do this, you can continue with this install by partitioning manually, or you can go back and perform a fully customized installation."
+msgstr "Якщо вам це не потр╕бно, ви можете продовжити цю инсталяц╕ю з розпод╕лом диску вручну, або повернутися ╕ почати повн╕стю ручну инсталяц╕ю."
-#: ../iw/rootpartition.py:208
+#: ../iw/rootpartition.py:205
msgid "Remove data"
msgstr "Видалення данних"
-#: ../iw/rootpartition.py:211 ../textw/partitioning.py:128
+#: ../iw/rootpartition.py:208 ../textw/partitioning.py:128
msgid "Manually partition"
msgstr "Розпод╕л вручну"
@@ -1271,7 +1137,7 @@ msgstr "вертикальна розгортка"
msgid "Test failed"
msgstr "Тест не пройшов"
-#: ../iw/xconfig.py:23 ../iw/xconfig.py:228
+#: ../iw/xconfig.py:23 ../iw/xconfig.py:231
msgid "Customize X Configuration"
msgstr "Виб╕р конф╕гурац╕╕ Х"
@@ -1279,60 +1145,43 @@ msgstr "Виб╕р конф╕гурац╕╕ Х"
msgid "Bits per Pixel"
msgstr "Б╕т на п╕ксел:"
-#: ../iw/xconfig.py:90 ../iw/xconfig.py:224
+#: ../iw/xconfig.py:90 ../iw/xconfig.py:227
msgid "Test this configuration"
msgstr "Перев╕рка ц╕╓╖ конф╕гурац╕╖"
-#: ../iw/xconfig.py:172
-msgid ""
-"In most cases your video hardware can be probed to automatically determine "
-"the best settings for your display."
-msgstr ""
-"Для деякого в╕деообладнання ╓ можлив╕сть автоматичного визначення найкращ╕х "
-"установок вашого монитору."
+#: ../iw/xconfig.py:175
+msgid "In most cases your video hardware can be probed to automatically determine the best settings for your display."
+msgstr "Для деякого в╕деообладнання ╓ можлив╕сть автоматичного визначення найкращ╕х установок вашого монитору."
-#: ../iw/xconfig.py:180
+#: ../iw/xconfig.py:183
msgid "Autoprobe results:"
msgstr "Результат автопроби"
-#: ../iw/xconfig.py:194
-msgid ""
-"Your monitor could not be autodetected. Please choose it from the list below:"
+#: ../iw/xconfig.py:197
+msgid "Your monitor could not be autodetected. Please choose it from the list below:"
msgstr "Ваш мон╕тор автоматично не визначено. Обер╕ть з╕ списку:"
-#: ../iw/xconfig.py:231
+#: ../iw/xconfig.py:234
msgid "Use Graphical Login"
msgstr "Стартувати у граф╕чному режим╕"
-#: ../iw/xconfig.py:233
+#: ../iw/xconfig.py:236
msgid "Skip X Configuration"
msgstr "Пропустити настройку Х"
#: ../textw/lilo.py:13 ../textw/silo.py:14
-msgid ""
-"A few systems will need to pass special options to the kernel at boot time "
-"for the system to function properly. If you need to pass boot options to the "
-"kernel, enter them now. If you don't need any or aren't sure, leave this "
-"blank."
-msgstr ""
-"У деяких системах п╕д час завантаження треба передавати ядру "
-"особлив╕параметри. Якщо потр╕бно, зроб╕ть це зараз. Якщо це не потр╕бно, "
-"абови вага╓тесь - залиште це поле порожн╕м. "
+msgid "A few systems will need to pass special options to the kernel at boot time for the system to function properly. If you need to pass boot options to the kernel, enter them now. If you don't need any or aren't sure, leave this blank."
+msgstr "У деяких системах п╕д час завантаження треба передавати ядру особлив╕параметри. Якщо потр╕бно, зроб╕ть це зараз. Якщо це не потр╕бно, абови вага╓тесь - залиште це поле порожн╕м. "
#: ../textw/lilo.py:64 ../textw/silo.py:81
msgid "Where do you want to install the bootloader?"
msgstr "Де ви бажа╓те встановити завантажувач?"
-#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114
-#: ../textw/silo.py:135
+#: ../textw/lilo.py:84 ../textw/lilo.py:105 ../textw/silo.py:114 ../textw/silo.py:135
msgid "Clear"
msgstr "Очистити"
-#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644
-#: ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462
-#: ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84
-#: ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132
-#: ../textw/userauth.py:62
+#: ../libfdisk/gnomefsedit.c:676 ../libfdisk/gnomefsedit.c:1644 ../libfdisk/gnomefsedit.c:2143 ../libfdisk/newtfsedit.c:462 ../libfdisk/newtfsedit.c:1495 ../loader/devices.c:168 ../textw/lilo.py:84 ../textw/lilo.py:102 ../textw/silo.py:114 ../textw/silo.py:132 ../textw/userauth.py:62
msgid "Cancel"
msgstr "Скасувати"
@@ -1341,23 +1190,12 @@ msgid "Edit Boot Label"
msgstr "Редагування позначки завантаження"
#: ../textw/lilo.py:150 ../textw/silo.py:178
-msgid ""
-"The boot manager Red Hat uses can boot other operating systems as well. You "
-"need to tell me what partitions you would like to be able to boot and what "
-"label you want to use for each of them."
-msgstr ""
-"Менеджер завантаження Red Hat може також завантажувати ╕нш╕ "
-"операц╕йн╕системи. Вкаж╕ть, як╕ розд╕ли ви хочете завантажувати та як╕ "
-"позначки вихочетете використовувати для кожного з них."
+msgid "The boot manager Red Hat uses can boot other operating systems as well. You need to tell me what partitions you would like to be able to boot and what label you want to use for each of them."
+msgstr "Менеджер завантаження Red Hat може також завантажувати ╕нш╕ операц╕йн╕системи. Вкаж╕ть, як╕ розд╕ли ви хочете завантажувати та як╕ позначки вихочетете використовувати для кожного з них."
#: ../textw/packages.py:115
-msgid ""
-"Some of the packages you have selected to install require packages you have "
-"not selected. If you just select Ok all of those required packages will be "
-"installed."
-msgstr ""
-"Деяк╕ пакети, що ви обрали, потребують встановлення пакет╕в, як╕ вине "
-"обрали. Обер╕ть \"Ок\", ╕ додатков╕ пакети буде встановлено."
+msgid "Some of the packages you have selected to install require packages you have not selected. If you just select Ok all of those required packages will be installed."
+msgstr "Деяк╕ пакети, що ви обрали, потребують встановлення пакет╕в, як╕ вине обрали. Обер╕ть \"Ок\", ╕ додатков╕ пакети буде встановлено."
#: ../textw/partitioning.py:16 ../textw/partitioning.py:57
msgid "Disk Setup"
@@ -1365,30 +1203,19 @@ msgstr "Налагодження диску"
#: ../textw/partitioning.py:17
msgid ""
-"Disk Druid is a tool for partitioning and setting up mount points. It is "
-"designed to be easier to use than Linux's traditional disk partitioning "
-"sofware, fdisk, as well as more powerful. However, there are some cases "
-"where fdisk may be preferred.\n"
+"Disk Druid is a tool for partitioning and setting up mount points. It is designed to be easier to use than Linux's traditional disk partitioning sofware, fdisk, as well as more powerful. However, there are some cases where fdisk may be preferred.\n"
"\n"
"Which tool would you like to use?"
msgstr ""
-"Disk Druid призначено для розпод╕лу диску та встановлення м╕сць монтування. "
-"Ним прост╕ше користуватися, н╕ж класичним fdisk, що його постачають з Linux; "
-"в╕н нада╓ б╕льше можливостей. Однак часом перевагу може бути надано fdisk.\n"
+"Disk Druid призначено для розпод╕лу диску та встановлення м╕сць монтування. Ним прост╕ше користуватися, н╕ж класичним fdisk, що його постачають з Linux; в╕н нада╓ б╕льше можливостей. Однак часом перевагу може бути надано fdisk.\n"
"\n"
"Який ви будете використовувати?"
#: ../textw/partitioning.py:58
-msgid ""
-"To install Red Hat Linux, you must have at least one partition of 150 MB "
-"dedicated to Linux. We suggest placing that partition on one of the first "
-"two hard drives in your system so you can boot into Linux with LILO."
-msgstr ""
-"Щоб встановити Red Hat Linux, вам потр╕бен щонайменше один розд╕л на 150 MB, "
-"вид╕лений п╕д Linux. Ми радимо розм╕стити цей розд╕л наодному з двох перших "
-"жорстких диск╕в системи, щоб ви могли завантажувати Linux за допомогою LILO."
+msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux. We suggest placing that partition on one of the first two hard drives in your system so you can boot into Linux with LILO."
+msgstr "Щоб встановити Red Hat Linux, вам потр╕бен щонайменше один розд╕л на 150 MB, вид╕лений п╕д Linux. Ми радимо розм╕стити цей розд╕л наодному з двох перших жорстких диск╕в системи, щоб ви могли завантажувати Linux за допомогою LILO."
-#: ../loader/loader.c:293 ../loader/loader.c:318 ../textw/partitioning.py:63
+#: ../loader/loader.c:296 ../loader/loader.c:321 ../textw/partitioning.py:63
msgid "Done"
msgstr "Готово"
@@ -1397,15 +1224,8 @@ msgid "Continue"
msgstr "Продовжити"
#: ../textw/partitioning.py:180
-msgid ""
-"What partitions would you like to format? We strongly suggest formatting all "
-"of the system partitions, including /, /usr, and /var. There is no need to "
-"format /home or /usr/local if they have already been configured during a "
-"previous install."
-msgstr ""
-"Як╕ розд╕ли ви хочете форматувати? Радимо форматувати вс╕ системн╕ "
-"розд╕ли,включно з /, /usr ╕ /var. Так╕ розд╕ли як /home або /usr/local можна "
-"не форматувати, якщо ╖х конф╕гуровано п╕д час попереднього встановлення."
+msgid "What partitions would you like to format? We strongly suggest formatting all of the system partitions, including /, /usr, and /var. There is no need to format /home or /usr/local if they have already been configured during a previous install."
+msgstr "Як╕ розд╕ли ви хочете форматувати? Радимо форматувати вс╕ системн╕ розд╕ли,включно з /, /usr ╕ /var. Так╕ розд╕ли як /home або /usr/local можна не форматувати, якщо ╖х конф╕гуровано п╕д час попереднього встановлення."
#: ../textw/partitioning.py:200
msgid "Check for bad blocks during format"
@@ -1425,14 +1245,8 @@ msgid "Set default PROM boot device"
msgstr ""
#: ../textw/userauth.py:10
-msgid ""
-"Pick a root password. You must type it twice to ensure you know what it is "
-"and didn't make a mistake in typing. Remember that the root password is a "
-"critical part of system security!"
-msgstr ""
-"Обер╕ть пароль користувача root. Ви ма╓те ввести его дв╕ч╕, щоб не "
-"помилитися. Пам'ятайте, що пароль користувача root - вир╕шальна ланка "
-"безпеки системи!"
+msgid "Pick a root password. You must type it twice to ensure you know what it is and didn't make a mistake in typing. Remember that the root password is a critical part of system security!"
+msgstr "Обер╕ть пароль користувача root. Ви ма╓те ввести его дв╕ч╕, щоб не помилитися. Пам'ятайте, що пароль користувача root - вир╕шальна ланка безпеки системи!"
#: ../loader/urls.c:298 ../textw/userauth.py:23
msgid "Password:"
@@ -1483,24 +1297,12 @@ msgid "This user id already exists. Choose another."
msgstr "Користувач вже ╕сну╓. Вибер╕ть ╕ньшого."
#: ../textw/userauth.py:137
-msgid ""
-"You should use a normal user account for most activities on your system. By "
-"not using the root account casually, you'll reduce the chance of disrupting "
-"your system's configuration."
-msgstr ""
-"В╕користовуйте звичайного користувача при вход╕ в систему. Не використовуючи "
-"пост╕йно бюджет root, ви знижу╓те шанс пошкодження конф╕гурац╕╖ вашо╖ "
-"системи."
+msgid "You should use a normal user account for most activities on your system. By not using the root account casually, you'll reduce the chance of disrupting your system's configuration."
+msgstr "В╕користовуйте звичайного користувача при вход╕ в систему. Не використовуючи пост╕йно бюджет root, ви знижу╓те шанс пошкодження конф╕гурац╕╖ вашо╖ системи."
#: ../textw/userauth.py:150
-msgid ""
-"What user account would you like to have on the system? You should have at "
-"least one non-root account for normal work, but multi-user systems can have "
-"any number of accounts set up."
-msgstr ""
-"Який бюджет користувача ви бажа╓те мати на ц╕й систем╕? Ви повинн╕ мати "
-"хочаб один не-root бюджет для звичайно╖ роботи, система для багатьох "
-"користувач╕в може мати потр╕бну к╕льк╕сть бюджет╕в."
+msgid "What user account would you like to have on the system? You should have at least one non-root account for normal work, but multi-user systems can have any number of accounts set up."
+msgstr "Який бюджет користувача ви бажа╓те мати на ц╕й систем╕? Ви повинн╕ мати хочаб один не-root бюджет для звичайно╖ роботи, система для багатьох користувач╕в може мати потр╕бну к╕льк╕сть бюджет╕в."
#: ../textw/userauth.py:160
msgid "User name"
@@ -1538,8 +1340,7 @@ msgstr "або :"
msgid "Request server via broadcast"
msgstr "Широкомовний запит серверу"
-#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629
-#: ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
+#: ../libfdisk/fsedit.c:615 ../libfdisk/fsedit.c:622 ../libfdisk/fsedit.c:629 ../libfdisk/fsedit.c:638 ../libfdisk/fsedit.c:650 ../libfdisk/fsedit.c:660
msgid "Bad Mount Point"
msgstr "Нев╕рна адреса монтування"
@@ -1608,42 +1409,26 @@ msgid "Too Many Drives"
msgstr "Забагато диск╕в"
#: ../libfdisk/fsedit.c:690
-msgid ""
-"You have more drives than this program supports. Please use the standard "
-"fdisk program to setup your drives and please notify Red Hat Software that "
-"you saw this message."
-msgstr ""
-"Диск╕в б╕льше, н╕ж передбача╓ програма. Використовуйте стандартний fdisk,щоб "
-"позначити розд╕ли, та ╕нформуйте Red Hat, що ви бачили цепов╕домлення."
+msgid "You have more drives than this program supports. Please use the standard fdisk program to setup your drives and please notify Red Hat Software that you saw this message."
+msgstr "Диск╕в б╕льше, н╕ж передбача╓ програма. Використовуйте стандартний fdisk,щоб позначити розд╕ли, та ╕нформуйте Red Hat, що ви бачили цепов╕домлення."
#: ../libfdisk/fsedit.c:705
msgid "No Drives Found"
msgstr "Диски не знайдено"
#: ../libfdisk/fsedit.c:706
-msgid ""
-"An error has occurred - no valid devices were found on which to create new "
-"filesystems. Please check your hardware for the cause of this problem."
-msgstr ""
-"Помилка: пристр╕й для створення нових файлових систем не знайдено. Щоб "
-"встановити причину, перев╕рте обладнання."
+msgid "An error has occurred - no valid devices were found on which to create new filesystems. Please check your hardware for the cause of this problem."
+msgstr "Помилка: пристр╕й для створення нових файлових систем не знайдено. Щоб встановити причину, перев╕рте обладнання."
#: ../libfdisk/fsedit.c:979 ../libfdisk/fsedit.c:1047
#, c-format
-msgid ""
-"An error occurred reading the partition table for the block device %s. The "
-"error was"
-msgstr ""
-"Виявлено помилку читання таблиц╕ розд╕л╕в на блочному пристро╖ %s. Помилка:"
+msgid "An error occurred reading the partition table for the block device %s. The error was"
+msgstr "Виявлено помилку читання таблиц╕ розд╕л╕в на блочному пристро╖ %s. Помилка:"
#: ../libfdisk/fsedit.c:1020
#, c-format
-msgid ""
-"The partition table on device %s is corrupted. To create new partitions it "
-"must be initialized, causing the loss of ALL DATA on this drive."
-msgstr ""
-"Таблицю розд╕л╕в на пристро╖ %s пошкоджено. Для створення нових розд╕л╕в "
-"пристр╕й треба ╕н╕ц╕ювати. УС╤ ДАН╤ на цьому пристро╖ буде втрачено╕."
+msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized, causing the loss of ALL DATA on this drive."
+msgstr "Таблицю розд╕л╕в на пристро╖ %s пошкоджено. Для створення нових розд╕л╕в пристр╕й треба ╕н╕ц╕ювати. УС╤ ДАН╤ на цьому пристро╖ буде втрачено╕."
#: ../libfdisk/fsedit.c:1025
msgid "Bad Partition Table"
@@ -1666,15 +1451,8 @@ msgid "BSD Disklabel"
msgstr "Позначка диску BSD"
#: ../libfdisk/fsedit.c:1063
-msgid ""
-"A disk with a BSD disklabel has been found. The Red Hat installation only "
-"supports BSD Disklabels in read-only mode, so you must use a custom install "
-"and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
-msgstr ""
-"Знайдено диск з позначкою BSD. Програма встановлення Red Hat п╕дтриму╓ так╕ "
-"диски в режим╕ `лише читання', але ви можете обрати особливий тип "
-"встановлення та використати утил╕ту fdisk (зам╕сть Disk Druid) "
-"длякомпьютер╕в з дисковою позначкою BSD."
+msgid "A disk with a BSD disklabel has been found. The Red Hat installation only supports BSD Disklabels in read-only mode, so you must use a custom install and fdisk (instead of Disk Druid) for machines with BSD Disklabels."
+msgstr "Знайдено диск з позначкою BSD. Програма встановлення Red Hat п╕дтриму╓ так╕ диски в режим╕ `лише читання', але ви можете обрати особливий тип встановлення та використати утил╕ту fdisk (зам╕сть Disk Druid) длякомпьютер╕в з дисковою позначкою BSD."
#: ../libfdisk/fsedit.c:1093
#, c-format
@@ -1701,10 +1479,7 @@ msgstr "Видалити розд╕л"
msgid "Are you sure you want to delete this partition?"
msgstr "Ви хочете видалити цей розд╕л?"
-#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666
-#: ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672
-#: ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265
-#: ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
+#: ../libfdisk/gnomefsedit.c:660 ../libfdisk/gnomefsedit.c:666 ../libfdisk/gnomefsedit.c:670 ../libfdisk/gnomefsedit.c:672 ../libfdisk/newtfsedit.c:259 ../libfdisk/newtfsedit.c:265 ../libfdisk/newtfsedit.c:269 ../libfdisk/newtfsedit.c:271
msgid "Edit Partition"
msgstr "Редагувати розд╕л"
@@ -1744,58 +1519,38 @@ msgstr "Тип розд╕лу:"
msgid "Allowable Drives:"
msgstr "Доступн╕ пристро╖:"
-#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879
-#: ../libfdisk/newtfsedit.c:498
+#: ../libfdisk/gnomefsedit.c:1001 ../libfdisk/gnomefsedit.c:1879 ../libfdisk/newtfsedit.c:498
msgid "No Mount Point"
msgstr "Немае м╕сця монтування"
#: ../libfdisk/gnomefsedit.c:1002 ../libfdisk/newtfsedit.c:499
-msgid ""
-"You have not selected a mount point for this partition. Are you sure you "
-"want to do this?"
-msgstr ""
-"Ви не обрали м╕сце монтування для цього розд╕лу. Залишити цей розд╕л без "
-"м╕сця монтування?"
+msgid "You have not selected a mount point for this partition. Are you sure you want to do this?"
+msgstr "Ви не обрали м╕сце монтування для цього розд╕лу. Залишити цей розд╕л без м╕сця монтування?"
-#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887
-#: ../libfdisk/newtfsedit.c:539
+#: ../libfdisk/gnomefsedit.c:1045 ../libfdisk/gnomefsedit.c:1887 ../libfdisk/newtfsedit.c:539
msgid "Mount Point Error"
msgstr "Помилка щодо м╕сця монтування"
#: ../libfdisk/gnomefsedit.c:1046 ../libfdisk/newtfsedit.c:540
-msgid ""
-"The mount point requested is either an illegal path or is already in use. "
-"Please select a valid mount point."
-msgstr ""
-"Або м╕сце монтування ма╓ помилковий шлях, або його вже використано. Вкаж╕ть "
-"м╕сце монтування правильно."
+msgid "The mount point requested is either an illegal path or is already in use. Please select a valid mount point."
+msgstr "Або м╕сце монтування ма╓ помилковий шлях, або його вже використано. Вкаж╕ть м╕сце монтування правильно."
#: ../libfdisk/gnomefsedit.c:1071 ../libfdisk/newtfsedit.c:557
msgid "Size Error"
msgstr "Помилка щодо розм╕ру"
#: ../libfdisk/gnomefsedit.c:1072 ../libfdisk/newtfsedit.c:558
-msgid ""
-"The size requested is illegal. Make sure the size is greater and zero (0), "
-"and is specified int decimal (base 10) format."
-msgstr ""
-"Розм╕р вказано нев╕рно. В╕н ма╓ бути б╕льшим за нуль. Вкаж╕ть його у "
-"десятковому формат╕."
+msgid "The size requested is illegal. Make sure the size is greater and zero (0), and is specified int decimal (base 10) format."
+msgstr "Розм╕р вказано нев╕рно. В╕н ма╓ бути б╕льшим за нуль. Вкаж╕ть його у десятковому формат╕."
-#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982
-#: ../libfdisk/newtfsedit.c:575
+#: ../libfdisk/gnomefsedit.c:1089 ../libfdisk/gnomefsedit.c:1982 ../libfdisk/newtfsedit.c:575
msgid "Swap Size Error"
msgstr "Помилка щодо розм╕ру своп╕нга"
-#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983
-#: ../libfdisk/newtfsedit.c:576
+#: ../libfdisk/gnomefsedit.c:1090 ../libfdisk/gnomefsedit.c:1983 ../libfdisk/newtfsedit.c:576
#, c-format
-msgid ""
-"You have created a swap partition which is too large. The maximum size of a "
-"swap partition is %ld Megabytes."
-msgstr ""
-"Створений вами розд╕л своп╕нгу завеликий. Розд╕л свопинга ма╓ не "
-"перевищувати %d мегабайт."
+msgid "You have created a swap partition which is too large. The maximum size of a swap partition is %ld Megabytes."
+msgstr "Створений вами розд╕л своп╕нгу завеликий. Розд╕л свопинга ма╓ не перевищувати %d мегабайт."
#: ../libfdisk/gnomefsedit.c:1106 ../libfdisk/gnomefsedit.c:1113
msgid "No RAID Drive Constraint"
@@ -1803,8 +1558,7 @@ msgstr "Не встановлено тип RAID "
#: ../libfdisk/gnomefsedit.c:1108
msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive.\n"
+"You have configured a RAID partition without constraining the partition to a single drive.\n"
" Are you sure you want to do this?"
msgstr ""
"Ви сконф╕гурували розд╕л RAID без прив'язки цого до одногопристрою. \n"
@@ -1815,12 +1569,8 @@ msgid "Close"
msgstr "Закрити"
#: ../libfdisk/gnomefsedit.c:1115
-msgid ""
-"You have configured a RAID partition without constraining the partition to a "
-"single drive. Please select one drive to constrain this partition to."
-msgstr ""
-"Ви орган╕зували розм╕тку RAID без прив'язки таблиц╕ розм╕тки до певного "
-"диску. Будь ласка вибер╕ть диск для розм╕шення таблиц╕."
+msgid "You have configured a RAID partition without constraining the partition to a single drive. Please select one drive to constrain this partition to."
+msgstr "Ви орган╕зували розм╕тку RAID без прив'язки таблиц╕ розм╕тки до певного диску. Будь ласка вибер╕ть диск для розм╕шення таблиц╕."
#. XXXXX - for now destroy the raid entry since it
#. now contains unallocated partitions!
@@ -1830,29 +1580,17 @@ msgstr "Не заповнено опис RAID"
#: ../libfdisk/gnomefsedit.c:1295
#, c-format
-msgid ""
-"The raid device /dev/%s now contains partitions which are unallocated. The "
-"raid device /dev/%s will now be decomposed into its component partitions. "
-"Please recompose the raid device with allocated partitions."
-msgstr ""
-"Пристр╕й raid /dev/%s зараз ма╓ нерозм╕щен╕ розд╕ли. Пристр╕й raid /dev/%s "
-"буде розбито на к╕лька розд╕л╕в. Будь ласка перерозд╕л╕ть raid ."
+msgid "The raid device /dev/%s now contains partitions which are unallocated. The raid device /dev/%s will now be decomposed into its component partitions. Please recompose the raid device with allocated partitions."
+msgstr "Пристр╕й raid /dev/%s зараз ма╓ нерозм╕щен╕ розд╕ли. Пристр╕й raid /dev/%s буде розбито на к╕лька розд╕л╕в. Будь ласка перерозд╕л╕ть raid ."
#. build list of why they all failed
-#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407
-#: ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
+#: ../libfdisk/gnomefsedit.c:1388 ../libfdisk/gnomefsedit.c:1407 ../libfdisk/newtfsedit.c:81 ../libfdisk/newtfsedit.c:1476
msgid "Unallocated Partitions"
msgstr "Нерозпод╕лен╕ розд╕ли"
-#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402
-#: ../libfdisk/newtfsedit.c:85
-msgid ""
-"There are currently unallocated partition(s) present in the list of "
-"requested partitions. The unallocated partition(s) are shown below, along "
-"with the reason they were not allocated."
-msgstr ""
-"У списков╕ розд╕л╕в ╓ нерозпод╕лен╕. Нижче наведено нерозпод╕лен╕ розд╕ли з "
-"поясненням причин, з яких ╕х не було розпод╕лено."
+#: ../libfdisk/gnomefsedit.c:1392 ../libfdisk/gnomefsedit.c:1402 ../libfdisk/newtfsedit.c:85
+msgid "There are currently unallocated partition(s) present in the list of requested partitions. The unallocated partition(s) are shown below, along with the reason they were not allocated."
+msgstr "У списков╕ розд╕л╕в ╓ нерозпод╕лен╕. Нижче наведено нерозпод╕лен╕ розд╕ли з поясненням причин, з яких ╕х не було розпод╕лено."
#: ../libfdisk/gnomefsedit.c:1673
msgid "<Swap Partition"
@@ -1875,23 +1613,16 @@ msgid "You have not selected a mount point. A mount point is required."
msgstr "Ви не обрали м╕сце монтування . Потр╕бне м╕сце монтування."
#: ../libfdisk/gnomefsedit.c:1888
-msgid ""
-"The mount point requested is already in use. Please select a valid mount "
-"point."
-msgstr ""
-"Або м╕сце монтування вже використано. Вкаж╕ть м╕сце монтування правильно."
+msgid "The mount point requested is already in use. Please select a valid mount point."
+msgstr "Або м╕сце монтування вже використано. Вкаж╕ть м╕сце монтування правильно."
#: ../libfdisk/gnomefsedit.c:1901
msgid "Booting From RAID Warning"
msgstr "Попередження "
#: ../libfdisk/gnomefsedit.c:1902
-msgid ""
-"You have made this raid device mount as a booting partition. Please make "
-"sure all the component partitions are bootable."
-msgstr ""
-"Ви намага╓тесь зробити raid пристр╕й завантажувальним. Будь ласка "
-"впевн╕ться, що розд╕л ╓ завантажувальним."
+msgid "You have made this raid device mount as a booting partition. Please make sure all the component partitions are bootable."
+msgstr "Ви намага╓тесь зробити raid пристр╕й завантажувальним. Будь ласка впевн╕ться, що розд╕л ╓ завантажувальним."
#: ../libfdisk/gnomefsedit.c:1912
msgid "No RAID Device"
@@ -1907,9 +1638,7 @@ msgstr "Використати RAID пристр╕й"
#: ../libfdisk/gnomefsedit.c:1920
#, c-format
-msgid ""
-"The raid device \"/dev/%s\" is already configured as a raid device. Please "
-"select another."
+msgid "The raid device \"/dev/%s\" is already configured as a raid device. Please select another."
msgstr "Пристр╕й raid \"/dev/%s\" вже встановлено. Будь ласка обер╕ть ╕нший."
#: ../libfdisk/gnomefsedit.c:1933
@@ -1917,9 +1646,7 @@ msgid "Not Enough Partitions"
msgstr "Нема╓ розд╕л╕в"
#: ../libfdisk/gnomefsedit.c:1935
-msgid ""
-"You have not configured enough partitions for the RAID type you have "
-"selected."
+msgid "You have not configured enough partitions for the RAID type you have selected."
msgstr "Обраний розд╕л неможливо сконф╕гурувати як тип RAID."
#: ../libfdisk/gnomefsedit.c:1942
@@ -1932,14 +1659,8 @@ msgstr "Т╕льки RAID-1 може бути завантижувальним."
#: ../libfdisk/gnomefsedit.c:2027
#, c-format
-msgid ""
-"The partition %s is a pre-existing partition in the set of partitions for "
-"this RAID device. The mount point is set to /boot. Are you sure that it is "
-"possible to boot from this partition?"
-msgstr ""
-"Розд╕л %s це визначен╕й наперед розд╕л з таблиц╕ розд╕л╕в для цього пристрою "
-"RAID. М╕сце монтування встановлено у /boot. Ви впевнен╕, що можливе "
-"завантаження з цього розд╕лу?"
+msgid "The partition %s is a pre-existing partition in the set of partitions for this RAID device. The mount point is set to /boot. Are you sure that it is possible to boot from this partition?"
+msgstr "Розд╕л %s це визначен╕й наперед розд╕л з таблиц╕ розд╕л╕в для цього пристрою RAID. М╕сце монтування встановлено у /boot. Ви впевнен╕, що можливе завантаження з цього розд╕лу?"
#: ../libfdisk/gnomefsedit.c:2034
msgid "Use Pre-existing Partition?"
@@ -2003,12 +1724,8 @@ msgid "Unallocated Partitions Exist..."
msgstr "╢ нерозм╕ш╓нн╕ розд╕ли..."
#: ../libfdisk/gnomefsedit.c:3069 ../libfdisk/gnomefsedit.c:3083
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) or a "
-"RAID partition for the install to proceed."
-msgstr ""
-"Щоб встановлення тривало, призначте кореневому (/) розд╕лу тип Linux Native "
-"(ext2) або RAID розд╕л."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) or a RAID partition for the install to proceed."
+msgstr "Щоб встановлення тривало, призначте кореневому (/) розд╕лу тип Linux Native (ext2) або RAID розд╕л."
#: ../libfdisk/gnomefsedit.c:3157
msgid "Partitions"
@@ -2059,12 +1776,8 @@ msgid "No Root Partition"
msgstr "Нема╓ кореневого розд╕лу"
#: ../libfdisk/newtfsedit.c:1425
-msgid ""
-"You must assign a root (/) partition to a Linux native partition (ext2) for "
-"the install to proceed."
-msgstr ""
-"Щоб встановлення тривало, призначте кореневому (/) розд╕лу тип Linux Native "
-"(ext2)."
+msgid "You must assign a root (/) partition to a Linux native partition (ext2) for the install to proceed."
+msgstr "Щоб встановлення тривало, призначте кореневому (/) розд╕лу тип Linux Native (ext2)."
#: ../libfdisk/newtfsedit.c:1445
msgid "No Swap Partition"
@@ -2076,13 +1789,11 @@ msgstr "Призначте розд╕л свопа, щоб продовжити встановлення."
#: ../libfdisk/newtfsedit.c:1478
msgid ""
-"There are unallocated partitions left. If you quit now they will not be "
-"written to the disk.\n"
+"There are unallocated partitions left. If you quit now they will not be written to the disk.\n"
"\n"
"Are you sure you want to exit?"
msgstr ""
-"Залишились нерозпод╕лен╕ розд╕ли. Якщо ви покинете програму, ╖х не "
-"будезаписано на диск.\n"
+"Залишились нерозпод╕лен╕ розд╕ли. Якщо ви покинете програму, ╖х не будезаписано на диск.\n"
"\n"
"Ви таки хочете вийти з програми?"
@@ -2119,20 +1830,14 @@ msgid "Miscellaneous"
msgstr "╤нш╕ параметри"
#: ../loader/devices.c:60
-msgid ""
-"This module can take parameters which affects its operation. If you don't "
-"know what parameters to supply, just skip this screen by pressing the \"OK\" "
-"button now."
-msgstr ""
-"Цей модуль ма╓ отримати деяк╕ параметри. Якщо ви не зна╓те як╕ параметри "
-"п╕дтримуються, пропуст╕ть цей екран нажавши кнопку \"OK\" унизу."
+msgid "This module can take parameters which affects its operation. If you don't know what parameters to supply, just skip this screen by pressing the \"OK\" button now."
+msgstr "Цей модуль ма╓ отримати деяк╕ параметри. Якщо ви не зна╓те як╕ параметри п╕дтримуються, пропуст╕ть цей екран нажавши кнопку \"OK\" унизу."
#: ../loader/devices.c:65
msgid "Module Parameters"
msgstr "Параметри модуля"
-#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:243
-#: ../loader/loader.c:302 ../loader/loader.c:318
+#: ../loader/devices.c:167 ../loader/devices.c:242 ../loader/loader.c:246 ../loader/loader.c:305 ../loader/loader.c:321
msgid "Devices"
msgstr "Пристро╖"
@@ -2145,18 +1850,12 @@ msgid "Failed to mount floppy disk."
msgstr "Не виконано монтування floppy диску."
#: ../loader/devices.c:184
-msgid ""
-"The floppy disk you inserted is not a valid driver disk for this release of "
-"Red Hat Linux."
+msgid "The floppy disk you inserted is not a valid driver disk for this release of Red Hat Linux."
msgstr "Диск що ви вставили не може бути використано для Red Hat Linux."
#: ../loader/devices.c:206
-msgid ""
-"Which driver should I try?. If the driver you need does not appear in this "
-"list, and you have a separate driver disk, please press F2."
-msgstr ""
-"Який драйвер спробу╓мо?. Якщо драйвер не з'явився у перел╕ку, потр╕бен "
-"окремий диск з драйвером, будь ласка натисн╕ть F2."
+msgid "Which driver should I try?. If the driver you need does not appear in this list, and you have a separate driver disk, please press F2."
+msgstr "Який драйвер спробу╓мо?. Якщо драйвер не з'явився у перел╕ку, потр╕бен окремий диск з драйвером, будь ласка натисн╕ть F2."
#: ../loader/devices.c:211
msgid "Which driver should I try?"
@@ -2185,15 +1884,15 @@ msgstr "Помилка читання вм╕сту файлу kickstart %s: %s"
msgid "Error on line %d of kickstart file %s."
msgstr "Помилка в рядку %d файлу kickstart %s."
-#: ../loader/lang.c:244
+#: ../loader/lang.c:269
msgid "Choose a Language"
msgstr "Обер╕ть групу щоб перев╕рити"
-#: ../loader/lang.c:506
+#: ../loader/lang.c:529
msgid "Keyboard Type"
msgstr "Тип клав╕атури"
-#: ../loader/lang.c:507
+#: ../loader/lang.c:530
msgid "What type of keyboard do you have?"
msgstr "Який тип клав╕атури ви ма╓те?"
@@ -2209,135 +1908,116 @@ msgstr "NFS image"
msgid "Hard drive"
msgstr "Жорсткий диск"
-#: ../loader/loader.c:124
+#: ../loader/loader.c:127
msgid "Welcome to Red Hat Linux"
msgstr "Ласкаво просимо до Red Hat Linux"
-#: ../loader/loader.c:126
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
+#: ../loader/loader.c:129
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr " <Tab>/<Alt-Tab> м╕ж елементами | <Space> виб╕р | <F12> наступний "
-#: ../loader/loader.c:230
+#: ../loader/loader.c:233
msgid "SCSI"
msgstr "SCSI"
-#: ../loader/loader.c:244
+#: ../loader/loader.c:247
msgid "What kind of device would you like to add"
msgstr "Пристр╕й якого типу ви бажа╓те встановити"
-#: ../loader/loader.c:291
+#: ../loader/loader.c:294
msgid "I have found the following devices in your system:"
msgstr "У ваш╕й систем╕ виявлено так╕ пристро╖:"
-#: ../loader/loader.c:293 ../loader/loader.c:318
+#: ../loader/loader.c:296 ../loader/loader.c:321
msgid "Add Device"
msgstr "Додати пристр╕й"
-#: ../loader/loader.c:319
-msgid ""
-"I don't have any special device drivers loaded for your system. Would you "
-"like to load some now?"
-msgstr ""
-"Не було завантажено особливого драйвери пристрою для ц╕╓╖ системи. Чи "
-"бажа╓те завантажити зараз?"
+#: ../loader/loader.c:322
+msgid "I don't have any special device drivers loaded for your system. Would you like to load some now?"
+msgstr "Не було завантажено особливого драйвери пристрою для ц╕╓╖ системи. Чи бажа╓те завантажити зараз?"
-#: ../loader/loader.c:403 ../loader/loader.c:405
+#: ../loader/loader.c:406 ../loader/loader.c:408
msgid "Loading"
msgstr "Завантаження"
-#: ../loader/loader.c:457
+#: ../loader/loader.c:460
msgid "Loading second stage ramdisk..."
msgstr "Завантаження другого ramdisk..."
-#: ../loader/loader.c:461
+#: ../loader/loader.c:464
msgid "Error loading ramdisk."
msgstr "Помилка завантаження ramdisk."
-#: ../loader/loader.c:593
+#: ../loader/loader.c:596
msgid "Hard Drives"
msgstr "Жорстк╕ диски"
-#: ../loader/loader.c:594
-msgid ""
-"You don't seem to have any hard drives on your system! Would you like to "
-"configure additional devices?"
-msgstr ""
-"Не вдалося виявити жодного жорсткого диску на вашо╖ системи! Бажа╓те "
-"сконф╕гурувати додатков╕ пристро╖?"
+#: ../loader/loader.c:597
+msgid "You don't seem to have any hard drives on your system! Would you like to configure additional devices?"
+msgstr "Не вдалося виявити жодного жорсткого диску на вашо╖ системи! Бажа╓те сконф╕гурувати додатков╕ пристро╖?"
-#: ../loader/loader.c:607
-msgid ""
-"What partition and directory on that partition hold the RedHat/RPMS and "
-"RedHat/base directories? If you don't see the disk drive you're using listed "
-"here, press F2 to configure additional devices."
-msgstr ""
-"Де розд╕л та каталог, що м╕стять каталоги RedHat/RPMS та RedHat/base? Якщо "
-"ви не бачите диску з ними у списку, нажм╕ть F2 для конф╕гурування "
-"додаткових пристро╖в."
+#: ../loader/loader.c:610
+msgid "What partition and directory on that partition hold the RedHat/RPMS and RedHat/base directories? If you don't see the disk drive you're using listed here, press F2 to configure additional devices."
+msgstr "Де розд╕л та каталог, що м╕стять каталоги RedHat/RPMS та RedHat/base? Якщо ви не бачите диску з ними у списку, нажм╕ть F2 для конф╕гурування додаткових пристро╖в."
-#: ../loader/loader.c:621
+#: ../loader/loader.c:624
msgid "Directory holding Red Hat:"
msgstr "Директор╕я, що м╕стить Red Hat:"
-#: ../loader/loader.c:641
+#: ../loader/loader.c:644
msgid "Select Partition"
msgstr "Обер╕ть розд╕л"
-#: ../loader/loader.c:688
+#: ../loader/loader.c:691
#, c-format
msgid "Device %s does not appear to contain a Red Hat installation tree."
msgstr "Пристр╕й %s не м╕стить дерево встановлення Red Hat"
-#: ../loader/loader.c:733
-msgid ""
-"I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please "
-"insert the Red Hat CD and press \"OK\" to retry."
-msgstr ""
-"Не знайдено Red Hat Linux CDROM у жодному пристро╖ CDROM. Будь ласка вставте "
-"Red Hat CD та нажм╕ть \"OK\" до повтору."
+#: ../loader/loader.c:736
+msgid "I could not find a Red Hat Linux CDROM in any of your CDROM drives. Please insert the Red Hat CD and press \"OK\" to retry."
+msgstr "Не знайдено Red Hat Linux CDROM у жодному пристро╖ CDROM. Будь ласка вставте Red Hat CD та нажм╕ть \"OK\" до повтору."
-#: ../loader/loader.c:866
+#: ../loader/loader.c:874
msgid "That directory does not seem to contain a Red Hat installation tree."
msgstr "Цей каталог не м╕стить дерево встановлення Red Hat"
-#: ../loader/loader.c:871
+#: ../loader/loader.c:879
msgid "I could not mount that directory from the server"
msgstr "неможливо змонтувати цей каталог з сервера"
-#: ../loader/loader.c:956
+#: ../loader/loader.c:964
msgid "FTP"
msgstr "FTP"
-#: ../loader/loader.c:957
+#: ../loader/loader.c:965
msgid "Unable to retrieve the second stage ramdisk"
msgstr "Не можу розгорнути другий ramdisk"
-#: ../loader/loader.c:1087
+#: ../loader/loader.c:1095
msgid "Rescue Method"
msgstr "Метод допомоги"
-#: ../loader/loader.c:1088
+#: ../loader/loader.c:1096
msgid "Installation Method"
msgstr "Метод встановлення"
-#: ../loader/loader.c:1090
+#: ../loader/loader.c:1098
msgid "What type of media contains the rescue image?"
msgstr "Пристр╕й якого типу м╕стить рят╕вний образ?"
-#: ../loader/loader.c:1092
+#: ../loader/loader.c:1100
msgid "What type of media contains the packages to be installed?"
msgstr "Нос╕й якого типу м╕стить пакети до встановлення?"
-#: ../loader/loader.c:1586
+#: ../loader/loader.c:1610
msgid "Cannot find ks.cfg on boot floppy."
msgstr "Не можу знайти ks.cfg на дискет╕ завантаження."
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "PC Card"
msgstr "PC Card"
-#: ../loader/loader.c:1747
+#: ../loader/loader.c:1774
msgid "Initializing PC Card Devices..."
msgstr "╤н╕ц╕ювання пристрою PC Card..."
@@ -2367,12 +2047,8 @@ msgstr ""
" Red Hat Linux для вашо╖ арх╕тектури"
#: ../loader/net.c:228
-msgid ""
-"Please enter the IP configuration for this machine. Each item should be "
-"entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
-msgstr ""
-"Введ╕ть конф╕гурац╕ю протоколу IP для ц╕╓╖ машини. Кожен елементтреба "
-"вводити як IP-адресу в десяткових числах з крапками (наприклад,1.2.3.4)"
+msgid "Please enter the IP configuration for this machine. Each item should be entered as an IP address in dotted-decimal notation (for example, 1.2.3.4)."
+msgstr "Введ╕ть конф╕гурац╕ю протоколу IP для ц╕╓╖ машини. Кожен елементтреба вводити як IP-адресу в десяткових числах з крапками (наприклад,1.2.3.4)"
#: ../loader/net.c:270
msgid "Use dynamic IP configuration (BOOTP/DHCP)"
@@ -2436,11 +2112,8 @@ msgid "Network device"
msgstr "Мережевий пристр╕й"
#: ../loader/net.c:698
-msgid ""
-" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next "
-"screen"
-msgstr ""
-" <Tab>/<Alt-Tab> м╕ж елементами | <Space> виб╕р | <F12> наступний екран"
+msgid " <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen"
+msgstr " <Tab>/<Alt-Tab> м╕ж елементами | <Space> виб╕р | <F12> наступний екран"
#: ../loader/net.c:699
#, c-format
@@ -2520,22 +2193,12 @@ msgid "You must enter a directory."
msgstr "Ви ма╓те ввести каталог."
#: ../loader/urls.c:268
-msgid ""
-"If you are using non anonymous ftp, enter the account name and password you "
-"wish to use below. If you are using an FTP proxy enter the name of the FTP "
-"proxy server to use."
-msgstr ""
-"Якщо ви використову╓те авторизований доступ до ftp, введ╕ть ╕м'я "
-"користувачата пароль. Якщо ви використовуете прокс╕-сервер для доступу до "
-"FTP - введ╕тьназву сервера."
+msgid "If you are using non anonymous ftp, enter the account name and password you wish to use below. If you are using an FTP proxy enter the name of the FTP proxy server to use."
+msgstr "Якщо ви використову╓те авторизований доступ до ftp, введ╕ть ╕м'я користувачата пароль. Якщо ви використовуете прокс╕-сервер для доступу до FTP - введ╕тьназву сервера."
#: ../loader/urls.c:274
-msgid ""
-"If you are using a HTTP proxy server enter the name of the HTTP proxy server "
-"to use."
-msgstr ""
-"Якщо ви використовуете HTTP прокс╕-сервер для доступу до HTTP - введ╕ть "
-"назвусервера."
+msgid "If you are using a HTTP proxy server enter the name of the HTTP proxy server to use."
+msgstr "Якщо ви використовуете HTTP прокс╕-сервер для доступу до HTTP - введ╕ть назвусервера."
#: ../loader/urls.c:295
msgid "Account name:"
@@ -2561,32 +2224,17 @@ msgstr "Порт прокс╕-сервера HTTP:"
msgid "Loading SCSI driver"
msgstr "Завантаження SCSI драйвера"
-#~ msgid ""
-#~ "A disk with a corrupt Sun disklabel has been found while reading block "
-#~ "device %s. You must use fdisk to create and write a new label to this "
-#~ "device."
-#~ msgstr ""
-#~ "При читанн╕ з блочного пристрою %s знайдено диск с пошкодженою позначкою "
-#~ "Sun.Ви мусите використати fdisk для створення та запису ново╖ позначки на "
-#~ "цейпристр╕й."
+#~ msgid "A disk with a corrupt Sun disklabel has been found while reading block device %s. You must use fdisk to create and write a new label to this device."
+#~ msgstr "При читанн╕ з блочного пристрою %s знайдено диск с пошкодженою позначкою Sun.Ви мусите використати fdisk для створення та запису ново╖ позначки на цейпристр╕й."
#~ msgid "Corrupt Sun disklabel"
#~ msgstr "Пошкоджено дискову позначку Sun"
-#~ msgid ""
-#~ "You must assign a boot (/boot) partition to a Linux native partition (ext2) "
-#~ "or a RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Щоб встановлення тривало, призначте кореневому (/) розд╕лу тип Linux Native "
-#~ "(ext2), або RAID-1 розд╕л."
+#~ msgid "You must assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Щоб встановлення тривало, призначте кореневому (/) розд╕лу тип Linux Native (ext2), або RAID-1 розд╕л."
-#~ msgid ""
-#~ "Because you have assigned the root partition (/) to a RAID device, you must "
-#~ "also assign a boot (/boot) partition to a Linux native partition (ext2) or a "
-#~ "RAID-1 partition for the install to proceed."
-#~ msgstr ""
-#~ "Щоб тривало встановлення на RAID пристр╕й, призначте кореневому (/) розд╕лу "
-#~ "тип Linux Native (ext2), або RAID-1."
+#~ msgid "Because you have assigned the root partition (/) to a RAID device, you must also assign a boot (/boot) partition to a Linux native partition (ext2) or a RAID-1 partition for the install to proceed."
+#~ msgstr "Щоб тривало встановлення на RAID пристр╕й, призначте кореневому (/) розд╕лу тип Linux Native (ext2), або RAID-1."
#~ msgid "Root Partition Selection"
#~ msgstr "Виб╕р кореневого розд╕лу"
@@ -2657,27 +2305,11 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "I can't find the device anywhere on your system!"
#~ msgstr "Неможливо знайти пристр╕й"
-#~ msgid ""
-#~ "In some cases, the %s driver needs to have extra information to work "
-#~ "properly, although it normally works fine without. Would you like to specify "
-#~ "extra options for it or allow the driver to probe your machine for the "
-#~ "information it needs? Occasionally, probing will hang a computer, but it "
-#~ "should not cause any damage."
-#~ msgstr ""
-#~ "╤нод╕ для правильно╖ роботи пристрою %s потр╕бна додаткова ╕нформац╕я, та й "
-#~ "без не╖ в╕н, певно, працюватиме нормально. Хочете вказати додатков╕ "
-#~ "параметри чи нехай драйвер спробу╓ визначити ╖х сам (тод╕ комп'ютер може "
-#~ "зупинитися, але це не зашкодить)?"
+#~ msgid "In some cases, the %s driver needs to have extra information to work properly, although it normally works fine without. Would you like to specify extra options for it or allow the driver to probe your machine for the information it needs? Occasionally, probing will hang a computer, but it should not cause any damage."
+#~ msgstr "╤нод╕ для правильно╖ роботи пристрою %s потр╕бна додаткова ╕нформац╕я, та й без не╖ в╕н, певно, працюватиме нормально. Хочете вказати додатков╕ параметри чи нехай драйвер спробу╓ визначити ╖х сам (тод╕ комп'ютер може зупинитися, але це не зашкодить)?"
-#~ msgid ""
-#~ "In many cases, the %s driver needs to be provided with extra information on "
-#~ "your hardware. If you prefer, some common values for those parameters will "
-#~ "be tried. This process can hang a machine, although it should not cause any "
-#~ "damage."
-#~ msgstr ""
-#~ "Здеб╕льшого драйвер %s потребу╓ додатково╖ ╕нформац╕╖ про апаратн╕ "
-#~ "засоби.Деяк╕ найзагальн╕ш╕ значення параметр╕в можна випробувати "
-#~ "автоматично. Цеможе призвести до зупинки комп'ютера, але то не зашкодить."
+#~ msgid "In many cases, the %s driver needs to be provided with extra information on your hardware. If you prefer, some common values for those parameters will be tried. This process can hang a machine, although it should not cause any damage."
+#~ msgstr "Здеб╕льшого драйвер %s потребу╓ додатково╖ ╕нформац╕╖ про апаратн╕ засоби.Деяк╕ найзагальн╕ш╕ значення параметр╕в можна випробувати автоматично. Цеможе призвести до зупинки комп'ютера, але то не зашкодить."
#~ msgid "Module options:"
#~ msgstr "Параметри модуля:"
@@ -2739,12 +2371,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "PCMCIA Disk"
#~ msgstr "PCMCIA диск"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Не можу змонтувати дискету. Вставте Red Hat PCMCIA диск, або обер╕ть "
-#~ "`Скасувати', щоб зм╕нити метод встановлення."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat PCMCIA disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Не можу змонтувати дискету. Вставте Red Hat PCMCIA диск, або обер╕ть `Скасувати', щоб зм╕нити метод встановлення."
#~ msgid "Loading PCMCIA Support"
#~ msgstr "Завантаження п╕дтримки PCMCIA"
@@ -2752,12 +2380,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "Supplemental Disk"
#~ msgstr "Диск доповнення"
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Supplementary "
-#~ "Install disk, or choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Неможливо змонтувати дискету. Вставте диск п╕дтримки Red Hat або "
-#~ "обер╕ть`Скасувати', щоб зм╕нити метод встановлення."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Supplementary Install disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Неможливо змонтувати дискету. Вставте диск п╕дтримки Red Hat або обер╕ть`Скасувати', щоб зм╕нити метод встановлення."
#~ msgid "Loading Supplemental Disk..."
#~ msgstr "Завантажу╓ться диск п╕дтримки"
@@ -2765,27 +2389,14 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "Driver Disk"
#~ msgstr "Диск драйвер╕в"
-#~ msgid ""
-#~ "This install method requires a driver disk. Please remove the supplemental "
-#~ "disk currently in your drive and replace it with the Red Hat Modules disk."
-#~ msgstr ""
-#~ "Для встановлення за цим методом потр╕бен диск з драйверами. Вийм╕ть "
-#~ "дискп╕дтримки з дисководу та вставте диск Red Hat Modules Disk."
+#~ msgid "This install method requires a driver disk. Please remove the supplemental disk currently in your drive and replace it with the Red Hat Modules disk."
+#~ msgstr "Для встановлення за цим методом потр╕бен диск з драйверами. Вийм╕ть дискп╕дтримки з дисководу та вставте диск Red Hat Modules Disk."
-#~ msgid ""
-#~ "I failed to mount the floppy. Please insert the Red Hat Module disk, or "
-#~ "choose Cancel to pick a different installation process."
-#~ msgstr ""
-#~ "Неможливо змонтувати дискету. Вставте диск Red Hat Module або "
-#~ "обер╕ть`Скасувати', щоб зм╕нити метод встановлення."
+#~ msgid "I failed to mount the floppy. Please insert the Red Hat Module disk, or choose Cancel to pick a different installation process."
+#~ msgstr "Неможливо змонтувати дискету. Вставте диск Red Hat Module або обер╕ть`Скасувати', щоб зм╕нити метод встановлення."
-#~ msgid ""
-#~ "This install method requires two additional disks. Please remove the boot "
-#~ "disk currently in your drive and replace it with the Red Hat Supplementary "
-#~ "Install disk."
-#~ msgstr ""
-#~ "Для встановлення за цим методом потр╕бн╕ два додатков╕ диски. Вийм╕ть "
-#~ "завантажувальний диск з дисководу та вставте диск п╕дтримки Red Hat."
+#~ msgid "This install method requires two additional disks. Please remove the boot disk currently in your drive and replace it with the Red Hat Supplementary Install disk."
+#~ msgstr "Для встановлення за цим методом потр╕бн╕ два додатков╕ диски. Вийм╕ть завантажувальний диск з дисководу та вставте диск п╕дтримки Red Hat."
#~ msgid "hd command"
#~ msgstr "команда hd"
@@ -2838,14 +2449,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "mount failed: %s"
#~ msgstr "помилка монтування: %s"
-#~ msgid ""
-#~ "The partition table on device %s is corrupted. To create new partitions it "
-#~ "must be initialized. You can specify \"zerombr yes\" in the kickstart file "
-#~ "to have this done automatically"
-#~ msgstr ""
-#~ "Таблицю розд╕л╕в на пристро╖ %s пошкоджено. Щоб створити нов╕ "
-#~ "розд╕ли,пристр╕й треба ╕н╕ц╕ювати. Якщо ви бажаете, щоб це було зроблено "
-#~ "автоматично, вкаж╕ть \"zerombr yes\" у файл╕ kickstart."
+#~ msgid "The partition table on device %s is corrupted. To create new partitions it must be initialized. You can specify \"zerombr yes\" in the kickstart file to have this done automatically"
+#~ msgstr "Таблицю розд╕л╕в на пристро╖ %s пошкоджено. Щоб створити нов╕ розд╕ли,пристр╕й треба ╕н╕ц╕ювати. Якщо ви бажаете, щоб це було зроблено автоматично, вкаж╕ть \"zerombr yes\" у файл╕ kickstart."
#~ msgid "Zero Partition Table"
#~ msgstr "Нульова таблиця розд╕л╕в"
@@ -2855,8 +2460,7 @@ msgstr "Завантаження SCSI драйвера"
#~ "Must be 'on', '1', or 'yes' to enable, or 'off', '0', or 'no' to disable."
#~ msgstr ""
#~ "помилковий аргумент команди kickstart zerombr: %s.\n"
-#~ "Припустим╕ 'on', '1' або 'yes' для дозволу, та 'off', '0', або 'no'- щоб "
-#~ "заборонити."
+#~ "Припустим╕ 'on', '1' або 'yes' для дозволу, та 'off', '0', або 'no'- щоб заборонити."
#~ msgid "Clear Partition Command"
#~ msgstr "Команда очистки розд╕лу"
@@ -2873,12 +2477,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "Option Ignored"
#~ msgstr "Параметр про╕гноровано"
-#~ msgid ""
-#~ "The --maxsize option for the partition %s was ignored. Check that it is "
-#~ "larger than the --size option."
-#~ msgstr ""
-#~ "Параметр --maxsize для розд╕лу %s про╕гноровано. В╕н ма╓ бути меншим, н╕ж "
-#~ "значення параметру --size."
+#~ msgid "The --maxsize option for the partition %s was ignored. Check that it is larger than the --size option."
+#~ msgstr "Параметр --maxsize для розд╕лу %s про╕гноровано. В╕н ма╓ бути меншим, н╕ж значення параметру --size."
#~ msgid "The mount point %s is already in use."
#~ msgstr "Адресу монтування %s вже використано."
@@ -2889,12 +2489,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "The partition %s could not be allocated."
#~ msgstr "Розд╕л %s не може быти розпод╕лено."
-#~ msgid ""
-#~ "There are partitions that can be resized nondestructively to make room for "
-#~ "your Red Hat Linux installation. Do you want to resize these partitions now?"
-#~ msgstr ""
-#~ "╢ розд╕ли, обсяг яких може бути зм╕нено без втрати ╕нформац╕╕ "
-#~ "длявстановлення RedHat Linux у вас. Зм╕нити обсяг зараз?"
+#~ msgid "There are partitions that can be resized nondestructively to make room for your Red Hat Linux installation. Do you want to resize these partitions now?"
+#~ msgstr "╢ розд╕ли, обсяг яких може бути зм╕нено без втрати ╕нформац╕╕ длявстановлення RedHat Linux у вас. Зм╕нити обсяг зараз?"
#~ msgid "Success"
#~ msgstr "Вдало"
@@ -2959,19 +2555,11 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "Scanning hard drives..."
#~ msgstr "Сканування Перев╕рка жорстких диск╕в..."
-#~ msgid ""
-#~ "You don't have any hard drives available! You probably forgot to configure a "
-#~ "SCSI controller."
-#~ msgstr ""
-#~ "У систем╕ не виявлено жорстких диск╕в! Може ви забули конф╕гурувати адаптер "
-#~ "SCSI."
+#~ msgid "You don't have any hard drives available! You probably forgot to configure a SCSI controller."
+#~ msgstr "У систем╕ не виявлено жорстких диск╕в! Може ви забули конф╕гурувати адаптер SCSI."
-#~ msgid ""
-#~ "To install Red Hat Linux, you must have at least one partition of 150 MB "
-#~ "dedicated to Linux."
-#~ msgstr ""
-#~ "Щоб встановити Red Hat Linux, вам потр╕бен щонайменше один розд╕л на 150 MB, "
-#~ "вид╕лений п╕д Linux."
+#~ msgid "To install Red Hat Linux, you must have at least one partition of 150 MB dedicated to Linux."
+#~ msgstr "Щоб встановити Red Hat Linux, вам потр╕бен щонайменше один розд╕л на 150 MB, вид╕лений п╕д Linux."
#~ msgid "Partition Disks"
#~ msgstr "Розм╕тка Под╕л диск╕в"
@@ -2980,21 +2568,13 @@ msgstr "Завантаження SCSI драйвера"
#~ msgstr "Треба перевантажити"
#~ msgid ""
-#~ "The kernel is unable to read your new partitioning information, probably "
-#~ "because you modified extended partitions. While this is not critical, you "
-#~ "must reboot your machine before proceeding. Insert the Red Hat boot disk now "
-#~ "and press Return to reboot your system.\n"
+#~ "The kernel is unable to read your new partitioning information, probably because you modified extended partitions. While this is not critical, you must reboot your machine before proceeding. Insert the Red Hat boot disk now and press Return to reboot your system.\n"
#~ "\n"
-#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an "
-#~ "empty SCSI drive can also cause this problem."
+#~ "If you have a ZIP or JAZ drive, make sure there is a disk in the drive as an empty SCSI drive can also cause this problem."
#~ msgstr ""
-#~ "Ядро не може прочитати нову ╕нформац╕ю про под╕л диск╕в, може ви зм╕нили "
-#~ "под╕л розширеного розд╕лу. Радимо перевантажити ваш комп'ютер, перш н╕ж "
-#~ "продовжувати. Вставте диск завантаженя Red Hat ╕ натисн╕ть <Enter> для "
-#~ "перевантаження.\n"
+#~ "Ядро не може прочитати нову ╕нформац╕ю про под╕л диск╕в, може ви зм╕нили под╕л розширеного розд╕лу. Радимо перевантажити ваш комп'ютер, перш н╕ж продовжувати. Вставте диск завантаженя Red Hat ╕ натисн╕ть <Enter> для перевантаження.\n"
#~ "\n"
-#~ "Якщо у вас ╓ дисководи ZIP або JAZZ, переконайтесь що вони порожн╕, диск в "
-#~ "пристро╖ SCSI також може спричинити цю проблему"
+#~ "Якщо у вас ╓ дисководи ZIP або JAZZ, переконайтесь що вони порожн╕, диск в пристро╖ SCSI також може спричинити цю проблему"
#~ msgid "lilo command"
#~ msgstr "команда lilo"
@@ -3005,26 +2585,14 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "PCMCIA Support"
#~ msgstr "П╕дтримка PCMCIA"
-#~ msgid ""
-#~ "Do you need to use PCMCIA devices during the install? Answer no to this "
-#~ "question if only need PCMCIA support after the install. You do not need "
-#~ "install-time PCMCIA support if you are installing Red Hat Linux on a laptop "
-#~ "with a built-in CDROM drive."
-#~ msgstr ""
-#~ "Чи вам потр╕бн╕ пристро╖ PCMCIA п╕д час встановлення? Обер╕ть \"Н╕\", "
-#~ "якщопотребуватимете цих пристро╖в лише п╕сля встановлення. Вам не "
-#~ "потр╕бнап╕дтримка PCMCIA, якщо ви встановлю╓те Red Hat Linux на лаптоп з "
-#~ "вмонтованимCD-ROM."
+#~ msgid "Do you need to use PCMCIA devices during the install? Answer no to this question if only need PCMCIA support after the install. You do not need install-time PCMCIA support if you are installing Red Hat Linux on a laptop with a built-in CDROM drive."
+#~ msgstr "Чи вам потр╕бн╕ пристро╖ PCMCIA п╕д час встановлення? Обер╕ть \"Н╕\", якщопотребуватимете цих пристро╖в лише п╕сля встановлення. Вам не потр╕бнап╕дтримка PCMCIA, якщо ви встановлю╓те Red Hat Linux на лаптоп з вмонтованимCD-ROM."
#~ msgid "PCMCIA Support Disk"
#~ msgstr "Диск п╕дтримки PCMCIA"
-#~ msgid ""
-#~ "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk "
-#~ "currently in your drive and replace it with the Red Hat PCMCIA support disk."
-#~ msgstr ""
-#~ "Для п╕дтримки PCMCIA потр╕бен диск п╕дтримки PCMCIA. Пом╕няйтедиск у "
-#~ "дисковод╕ на диск п╕дтримки Red Hat PCMCIA."
+#~ msgid "PCMCIA support requires a PCMCIA support disk. Please remove the boot disk currently in your drive and replace it with the Red Hat PCMCIA support disk."
+#~ msgstr "Для п╕дтримки PCMCIA потр╕бен диск п╕дтримки PCMCIA. Пом╕няйтедиск у дисковод╕ на диск п╕дтримки Red Hat PCMCIA."
#~ msgid "Starting PCMCIA services..."
#~ msgstr "Старт серв╕су PCMCIA..."
@@ -3103,14 +2671,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "Upgrade log"
#~ msgstr "Протокол оновлення"
-#~ msgid ""
-#~ "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade "
-#~ "is finished. After rebooting, please read it to ensure configuration files "
-#~ "are properly updated."
-#~ msgstr ""
-#~ "По оновленн╕ його повний протокол буде у /tmp/upgrade.log. П╕сля "
-#~ "перевантаження треба пересв╕читись що вс╕ файли конф╕гурац╕╕ оновлено "
-#~ "правильно."
+#~ msgid "A complete log of your upgrade will be in /tmp/upgrade.log when the upgrade is finished. After rebooting, please read it to ensure configuration files are properly updated."
+#~ msgstr "По оновленн╕ його повний протокол буде у /tmp/upgrade.log. П╕сля перевантаження треба пересв╕читись що вс╕ файли конф╕гурац╕╕ оновлено правильно."
#~ msgid "rootpw command"
#~ msgstr "команда rootpw"
@@ -3127,19 +2689,11 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "Installation Path"
#~ msgstr "Шлях для встановлення"
-#~ msgid ""
-#~ "Would you like to install a new system or upgrade a system which already "
-#~ "contains Red Hat Linux 2.0 or later?"
-#~ msgstr ""
-#~ "Ви бажаете встановити нову систему або оновити наявний Red Hat Linux 2.0 чи "
-#~ "п╕зн╕ший?"
+#~ msgid "Would you like to install a new system or upgrade a system which already contains Red Hat Linux 2.0 or later?"
+#~ msgstr "Ви бажаете встановити нову систему або оновити наявний Red Hat Linux 2.0 чи п╕зн╕ший?"
-#~ msgid ""
-#~ "What type of machine are you installing? For maximum flexibility, choose "
-#~ "\"Custom\"."
-#~ msgstr ""
-#~ "Який тип системи ви встановлю╓те? Для найб╕льшо╖ гнучкост╕ обер╕ть\"На "
-#~ "замовлення\"."
+#~ msgid "What type of machine are you installing? For maximum flexibility, choose \"Custom\"."
+#~ msgstr "Який тип системи ви встановлю╓те? Для найб╕льшо╖ гнучкост╕ обер╕ть\"На замовлення\"."
#~ msgid "Converting RPM database..."
#~ msgstr "Конвертую базу RPM..."
@@ -3153,25 +2707,17 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid ""
#~ "An error occured during step \"%s\" of the install.\n"
#~ "\n"
-#~ "You may retry that step, return to the previous step in the install, or see "
-#~ "a menu of installation steps which will allow you to move around in the "
-#~ "install more freely. It is not recommended to use the menu unless you are "
-#~ "already familiar with Red Hat Linux. What would you like to do?"
+#~ "You may retry that step, return to the previous step in the install, or see a menu of installation steps which will allow you to move around in the install more freely. It is not recommended to use the menu unless you are already familiar with Red Hat Linux. What would you like to do?"
#~ msgstr ""
#~ "На етап╕ \"%s\" виявлено помилку.\n"
#~ "\n"
-#~ "Ви можете повторити цей етап, повернутися до попереднього, або переглянути "
-#~ "меню етап╕в встановлення, на як╕ можна перейти зв╕дси. Якщо ви не дуже добре "
-#~ "зна╓те Red Hat Linux, радимо не використовувати меню.Що ви обира╓те?"
+#~ "Ви можете повторити цей етап, повернутися до попереднього, або переглянути меню етап╕в встановлення, на як╕ можна перейти зв╕дси. Якщо ви не дуже добре зна╓те Red Hat Linux, радимо не використовувати меню.Що ви обира╓те?"
#~ msgid " Continue with install"
#~ msgstr " Продовжити встановлення"
-#~ msgid ""
-#~ "What step would you like to run? Steps with a * next to them have already "
-#~ "been completed."
-#~ msgstr ""
-#~ "Який з етап╕в ви оберете? Етапи, позначен╕ символом `*', вже завершено."
+#~ msgid "What step would you like to run? Steps with a * next to them have already been completed."
+#~ msgstr "Який з етап╕в ви оберете? Етапи, позначен╕ символом `*', вже завершено."
#~ msgid "Insert a blank floppy in the first drive /dev/fd0."
#~ msgstr "Вставте чистий диск у перший дисковод /dev/fd0."
@@ -3188,11 +2734,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "Kernel"
#~ msgstr "Ядро"
-#~ msgid ""
-#~ "Please insert your boot disk in your first disk drive if it's not already "
-#~ "present."
-#~ msgstr ""
-#~ "Встанв╕ть ваш завантажувальний диск в перший дисковод, якщо його там нема╓."
+#~ msgid "Please insert your boot disk in your first disk drive if it's not already present."
+#~ msgstr "Встанв╕ть ваш завантажувальний диск в перший дисковод, якщо його там нема╓."
#~ msgid "Copying kernel from floppy..."
#~ msgstr "Коп╕ювання ядра з дискети..."
@@ -3242,12 +2785,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "No Swap Space"
#~ msgstr "Не вказано область своп╕нгу"
-#~ msgid ""
-#~ "What partitions would you like to use for swap space? This will destroy any "
-#~ "information already on the partition."
-#~ msgstr ""
-#~ "Як╕ розд╕ли використовувати для своп╕нгу? Всюя ╕нформац╕ю цього розд╕лу буде "
-#~ "знищено."
+#~ msgid "What partitions would you like to use for swap space? This will destroy any information already on the partition."
+#~ msgstr "Як╕ розд╕ли використовувати для своп╕нгу? Всюя ╕нформац╕ю цього розд╕лу буде знищено."
#~ msgid "Active Swap Space"
#~ msgstr "Активац╕я област╕ своп╕нгу"
@@ -3264,12 +2803,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "Ethernet Probe"
#~ msgstr "Пошук Ethernet"
-#~ msgid ""
-#~ "The Ethernet probe failed to find a card on your system. Press <Enter> to "
-#~ "manually configure one."
-#~ msgstr ""
-#~ "Мережево╖ карти не виявлено. Натисн╕ть <Enter>, щоб визначититип карти з╕ "
-#~ "списку"
+#~ msgid "The Ethernet probe failed to find a card on your system. Press <Enter> to manually configure one."
+#~ msgstr "Мережево╖ карти не виявлено. Натисн╕ть <Enter>, щоб визначититип карти з╕ списку"
#~ msgid "Static IP address"
#~ msgstr "Статична IP-адреса"
@@ -3286,12 +2821,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "kickstart network command is missing ip address"
#~ msgstr "В мережев╕й команд╕ kickstart пропущено адресу IP"
-#~ msgid ""
-#~ "How should the IP information be set? If your system administrator gave you "
-#~ "an IP address, choose static IP."
-#~ msgstr ""
-#~ "Вкаж╕ть спос╕б визначення адреси IP. Якщо ваш адм╕н╕стратор мереж╕ надав вам "
-#~ "адресу IP, вибер╕ть статичну IP."
+#~ msgid "How should the IP information be set? If your system administrator gave you an IP address, choose static IP."
+#~ msgstr "Вкаж╕ть спос╕б визначення адреси IP. Якщо ваш адм╕н╕стратор мереж╕ надав вам адресу IP, вибер╕ть статичну IP."
#~ msgid "Sending BOOTP request..."
#~ msgstr "Посилаю запит BOOTP..."
@@ -3305,22 +2836,11 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "cannot open file: %s"
#~ msgstr "неможливо в╕дкрити файл: %s"
-#~ msgid ""
-#~ "I cannot automatically determine the hostname. Press <Enter> to enter "
-#~ "hostname information."
-#~ msgstr ""
-#~ "Автоматично визначити назву комп'ютера неможливо. Натисн╕ть <Enter>,щоб "
-#~ "ввести назву комп'ютера власноруч."
+#~ msgid "I cannot automatically determine the hostname. Press <Enter> to enter hostname information."
+#~ msgstr "Автоматично визначити назву комп'ютера неможливо. Натисн╕ть <Enter>,щоб ввести назву комп'ютера власноруч."
-#~ msgid ""
-#~ "Please enter your domain name, host name, and the IP addresses of any "
-#~ "additional nameservers. Your host name should be a fully-qualified host "
-#~ "name, such as mybox.mylab.myco.com. If you don't have any additional "
-#~ "nameservers, leave the nameserver entries blank."
-#~ msgstr ""
-#~ "Введ╕ть назву вашого домену, назва комп'ютера ма╓ бути ц╕лкомвизначена, "
-#~ "наприклад mybox.mylab.myco.com. Якщо у вас нема╓ додаткових сервер╕в назв "
-#~ "(DNS), залиште ц╕ поля порожн╕ми."
+#~ msgid "Please enter your domain name, host name, and the IP addresses of any additional nameservers. Your host name should be a fully-qualified host name, such as mybox.mylab.myco.com. If you don't have any additional nameservers, leave the nameserver entries blank."
+#~ msgstr "Введ╕ть назву вашого домену, назва комп'ютера ма╓ бути ц╕лкомвизначена, наприклад mybox.mylab.myco.com. Якщо у вас нема╓ додаткових сервер╕в назв (DNS), залиште ц╕ поля порожн╕ми."
#~ msgid "Host name:"
#~ msgstr "Назва комп'ютера"
@@ -3343,9 +2863,7 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "LAN networking has already been configured. Do you want to:"
#~ msgstr "Мережу вже налагоджено. Чи хочете ви:"
-#~ msgid ""
-#~ "Do you want to configure LAN (not dialup) networking for your installed "
-#~ "system?"
+#~ msgid "Do you want to configure LAN (not dialup) networking for your installed system?"
#~ msgstr "Чи хочете ви налагодити конф╕гурац╕ю мереж╕ (не dial-up)?"
#~ msgid "Cannot open components file: %s"
@@ -3381,13 +2899,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "GNOME"
#~ msgstr "GNOME"
-#~ msgid ""
-#~ "Would you like to have the GNOME desktop installed? It provides an easy to "
-#~ "use interface, including a drag and drop capability and an integrated help "
-#~ "system."
-#~ msgstr ""
-#~ "Чи бажа╓те встановити GNOME? Це ╕нтерфейс, що ним легко користуватися,нада╓ "
-#~ "можлив╕сть перетягати drag and drop та м╕стить систему допомоги."
+#~ msgid "Would you like to have the GNOME desktop installed? It provides an easy to use interface, including a drag and drop capability and an integrated help system."
+#~ msgstr "Чи бажа╓те встановити GNOME? Це ╕нтерфейс, що ним легко користуватися,нада╓ можлив╕сть перетягати drag and drop та м╕стить систему допомоги."
#~ msgid "Choose components to install:"
#~ msgstr "Обер╕ть компоненти для встановлення:"
@@ -3425,8 +2938,7 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "<F1> will give you information on this printer driver."
#~ msgstr "<F1> - ╕нформац╕я про драйвер принтера"
-#~ msgid ""
-#~ "You may now configure the paper size and resolution for this printer."
+#~ msgid "You may now configure the paper size and resolution for this printer."
#~ msgstr "Вкаж╕ть розм╕р паперу та розпод╕льну щ╕льн╕сть принтеру."
#~ msgid "Paper Size"
@@ -3450,11 +2962,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "Configure Uniprint Driver"
#~ msgstr "Налагодження драйвера Uniprint"
-#~ msgid ""
-#~ "What device is your printer connected to (note that /dev/lp0 is equivalent "
-#~ "to LPT1:)?"
-#~ msgstr ""
-#~ "До якого пристрою п╕дключено ваш принтер (/dev/lp0 в╕дпов╕да╓ LPT1:)?"
+#~ msgid "What device is your printer connected to (note that /dev/lp0 is equivalent to LPT1:)?"
+#~ msgstr "До якого пристрою п╕дключено ваш принтер (/dev/lp0 в╕дпов╕да╓ LPT1:)?"
#~ msgid ""
#~ "Auto-detected ports:\n"
@@ -3484,13 +2993,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "Remote lpd Printer Options"
#~ msgstr "Параметри в╕ддаленного lpd"
-#~ msgid ""
-#~ "To use a remote lpd print queue, you need to supply the hostname of the "
-#~ "printer server and the queue name on that server which jobs should be placed "
-#~ "in."
-#~ msgstr ""
-#~ "Щоб використати в╕ддалену чергу друку, вкаж╕ть назву хоста, що на ньому "
-#~ "працю╓ принтсервер, та назву черги, в яку буде поставлено завдання для друку."
+#~ msgid "To use a remote lpd print queue, you need to supply the hostname of the printer server and the queue name on that server which jobs should be placed in."
+#~ msgstr "Щоб використати в╕ддалену чергу друку, вкаж╕ть назву хоста, що на ньому працю╓ принтсервер, та назву черги, в яку буде поставлено завдання для друку."
#~ msgid "Printer Server:"
#~ msgstr "Сервер друку:"
@@ -3501,16 +3005,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "NetWare Printer Options"
#~ msgstr "Параметри принтера NetWare "
-#~ msgid ""
-#~ "To print to a NetWare printer, you need to provide the NetWare print server "
-#~ "name (this is not always the same as the machines TCP/IP hostname) as well "
-#~ "as the print queue name for the printer you wish to access and any "
-#~ "applicable user name and password."
-#~ msgstr ""
-#~ "Щоб друкувати на принтер╕ NetWare, вкаж╕ть назву принт-сервера LAN Manager, "
-#~ "котра не завжди сп╕впада╓ з ╕менем машини у мереж╕ TCP/IP. ╤нод╕ треба "
-#~ "ввести адресу IP. Окр╕м того, необх╕дно ╕м'я ресурсу, через який "
-#~ "в╕дбува╓ться доступ до принтеру, ╕м'я користувача та пароль."
+#~ msgid "To print to a NetWare printer, you need to provide the NetWare print server name (this is not always the same as the machines TCP/IP hostname) as well as the print queue name for the printer you wish to access and any applicable user name and password."
+#~ msgstr "Щоб друкувати на принтер╕ NetWare, вкаж╕ть назву принт-сервера LAN Manager, котра не завжди сп╕впада╓ з ╕менем машини у мереж╕ TCP/IP. ╤нод╕ треба ввести адресу IP. Окр╕м того, необх╕дно ╕м'я ресурсу, через який в╕дбува╓ться доступ до принтеру, ╕м'я користувача та пароль."
#~ msgid "SMB server host:"
#~ msgstr "Назва сервера SMB :"
@@ -3527,17 +3023,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "SMB/Windows 95/NT Printer Options"
#~ msgstr "Параметри принтера SMB/Windows 95/NT"
-#~ msgid ""
-#~ "To print to a SMB printer, you need to provide the SMB host name (this is "
-#~ "not always the same as the machines TCP/IP hostname) and possibly the IP "
-#~ "address of the print server, as well as the share name for the printer you "
-#~ "wish to access and any applicable user name, password, and workgroup "
-#~ "information."
-#~ msgstr ""
-#~ "Щоб друкувати на принтер╕ LAN Manager, вкаж╕ть назву сервера LAN Manager, "
-#~ "котра не завжди сп╕впада╓ з ╕менем машини у мереж╕ TCP/IP. ╤нод╕ треба "
-#~ "ввести адресу IP. Окр╕м того, потр╕бна назва ресурсу, через який "
-#~ "в╕дбува╓ться доступ до принтеру, ╕м'я користувача та пароль."
+#~ msgid "To print to a SMB printer, you need to provide the SMB host name (this is not always the same as the machines TCP/IP hostname) and possibly the IP address of the print server, as well as the share name for the printer you wish to access and any applicable user name, password, and workgroup information."
+#~ msgstr "Щоб друкувати на принтер╕ LAN Manager, вкаж╕ть назву сервера LAN Manager, котра не завжди сп╕впада╓ з ╕менем машини у мереж╕ TCP/IP. ╤нод╕ треба ввести адресу IP. Окр╕м того, потр╕бна назва ресурсу, через який в╕дбува╓ться доступ до принтеру, ╕м'я користувача та пароль."
#~ msgid "Spool directory:"
#~ msgstr "Каталог спул╕нга:"
@@ -3545,14 +3032,8 @@ msgstr "Завантаження SCSI драйвера"
#~ msgid "Standard Printer Options"
#~ msgstr "Стандартн╕ параметри принтера"
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a name (often lp) "
-#~ "and a spool directory associated with it. What name and directory should be "
-#~ "used for this queue?"
-#~ msgstr ""
-#~ "Для кожно╖ черги до друку, куди ставлять завдання для друку, потр╕бно "
-#~ "вказати назву (начайст╕ш lp) та сполучений з нею каталог спул╕нга. Вкаж╕ть "
-#~ "назву та каталог для черги."
+#~ msgid "Every print queue (which print jobs are directed to) needs a name (often lp) and a spool directory associated with it. What name and directory should be used for this queue?"
+#~ msgstr "Для кожно╖ черги до друку, куди ставлять завдання для друку, потр╕бно вказати назву (начайст╕ш lp) та сполучений з нею каталог спул╕нга. Вкаж╕ть назву та каталог для черги."
#~ msgid "Would you like to configure a printer?"
#~ msgstr "Чи бажа╓те налагодити принтер?"
diff --git a/text.py b/text.py
index 56ba7199e..ea6e09239 100644
--- a/text.py
+++ b/text.py
@@ -1003,9 +1003,18 @@ class InstallInterface:
self.upgradeSteps = [
[_("Examine System"), UpgradeExamineWindow, (self.screen, todo)],
+ [_("LILO Configuration"), LiloAppendWindow,
+ (self.screen, todo), "lilo"],
+ [_("LILO Configuration"), LiloWindow,
+ (self.screen, todo), "lilo"],
+ [_("LILO Configuration"), LiloImagesWindow,
+ (self.screen, todo), "lilo"],
[_("Customize Upgrade"), CustomizeUpgradeWindow, (self.screen, todo, self.individual)],
[_("Individual Packages"), IndividualPackageWindow, (self.screen, todo, self.individual)],
+ [_("Boot Disk"), BootDiskWindow, (self.screen, todo),
+ "bootdisk" ],
[_("Upgrade System"), InstallWindow, (self.screen, todo)],
+ [_("Boot Disk"), BootdiskWindow, (self.screen, todo), "bootdisk"],
[_("Upgrade Complete"), FinishedWindow, (self.screen,)]
]
diff --git a/textw/lilo.py b/textw/lilo.py
index 4b828523a..6d1f6365a 100644
--- a/textw/lilo.py
+++ b/textw/lilo.py
@@ -2,6 +2,7 @@ import gettext
from snack import *
from textw.constants import *
from text import _
+import string
#cat = gettext.Catalog ("anaconda", "/usr/share/locale")
#_ = cat.gettext
@@ -16,8 +17,12 @@ class LiloAppendWindow:
"kernel, enter them now. If you don't need any or "
"aren't sure, leave this blank."))
- cb = Checkbox(_("Use linear mode (needed for some SCSI drives)"))
+ cb = Checkbox(_("Use linear mode (needed for some SCSI drives)"),
+ isOn = todo.liloLinear)
entry = Entry(48, scroll = 1, returnExit = 1)
+ if todo.liloAppend:
+ entry.set(todo.liloAppend)
+
buttons = ButtonBar(screen, [(_("OK"), "ok"), (_("Skip"), "skip"),
(_("Back"), "back") ] )
@@ -39,6 +44,12 @@ class LiloAppendWindow:
else:
todo.skipLilo = 0
+ todo.liloLinear = cb.selected()
+ if entry.value():
+ todo.liloAppend = string.strip(entry.value())
+ else:
+ todo.liloAppend = None
+
return INSTALL_OK
class LiloWindow:
@@ -147,7 +158,8 @@ class LiloImagesWindow:
buttons = ButtonBar(screen, [ (_("Ok"), "ok"), (_("Edit"), "edit"),
(_("Back"), "back") ] )
- text = TextboxReflowed(55, _("The boot manager Red Hat uses can boot other "
+ text = TextboxReflowed(55,
+ _("The boot manager Red Hat uses can boot other "
"operating systems as well. You need to tell me "
"what partitions you would like to be able to boot "
"and what label you want to use for each of them."))
diff --git a/todo.py b/todo.py
index dc4a0ac1e..e42338520 100644
--- a/todo.py
+++ b/todo.py
@@ -296,6 +296,8 @@ class ToDo:
self.bootdisk = 0
self.liloImages = {}
self.liloDevice = None
+ self.liloLinear = 0
+ self.liloAppend = None
arch = iutil.getArch ()
if arch == "sparc":
self.silo = SiloInstall (self)
@@ -489,27 +491,24 @@ class ToDo:
keys.sort()
for mntpoint in keys:
(device, fsystem, format) = self.mounts[mntpoint]
- isys.makeDevInode(device, '/tmp/' + device)
if fsystem == "swap":
continue
elif fsystem == "ext2":
try:
- os.mkdir (self.instPath + mntpoint)
- except:
- pass
- try:
- isys.mount( '/tmp/' + device, self.instPath + mntpoint)
+ iutil.mkdirChain(self.instPath + mntpoint)
+ isys.makeDevInode(device, '/tmp/' + device)
+ isys.mount('/tmp/' + device,
+ self.instPath + mntpoint)
+ os.remove( '/tmp/' + device);
except SystemError, (errno, msg):
self.intf.messageWindow(_("Error"),
_("Error mounting %s: %s") % (device, msg))
- os.remove( '/tmp/' + device);
try:
os.mkdir (self.instPath + '/proc')
except:
pass
-
isys.mount('/proc', self.instPath + '/proc', 'proc')
def makeFilesystems(self, createSwap = 1, createFs = 1):
@@ -632,6 +631,7 @@ class ToDo:
self.setFdDevice ()
for mntpoint in keys:
(dev, fs, reformat) = self.mounts[mntpoint]
+ iutil.mkdirChain(self.instPath + mntpoint)
if (mntpoint == '/'):
f.write (format % ( '/dev/' + dev, mntpoint, fs, 'defaults', 1, 1))
else:
@@ -661,14 +661,21 @@ class ToDo:
# skip comments
if fields and fields[0][0] == '#':
continue
+ if not fields: continue
# all valid fstab entries have 6 fields
- if not len (fields) < 4 and len (fields) <= 6:
- if fields and (fields[2] == "ext2" or fields[2] == "swap") \
- and fields[3] != "noauto":
- format = 0
- # XXX always format swap.
- if fields[2] == "swap": format = 1
- fstab[fields[1]] = (fields[0][5:], fields[2], format)
+ if len (fields) < 4 or len (fields) > 6: continue
+
+ if fields[2] != "ext2" and fields[2] != "swap": continue
+ if string.find(fields[3], "noauto") != -1: continue
+ if (fields[0][0:7] != "/dev/hd" and
+ fields[0][0:7] != "/dev/sd" and
+ fields[0][0:8] != "/dev/rd/" and
+ fields[0][0:9] != "/dev/ida/"): continue
+
+ format = 0
+ # XXX always format swap.
+ if fields[2] == "swap": format = 1
+ fstab[fields[1]] = (fields[0][5:], fields[2], format)
return fstab
def writeLanguage(self):
@@ -738,6 +745,14 @@ class ToDo:
## lilo.read (self.instPath + '/etc/lilo.conf')
## elif not self.liloDevice: return
+ if os.access (self.instPath + '/etc/lilo.conf', os.R_OK):
+ os.rename(self.instPath + '/etc/lilo.conf',
+ self.instPath + '/etc/lilo.conf.rpmsave')
+
+ if os.access (self.instPath + '/etc/lilo.conf', os.R_OK):
+ os.rename(self.instPath + '/etc/lilo.conf',
+ self.instPath + '/etc/lilo.conf.rpmsave')
+
(bootpart, boothd) = self.getLiloOptions()
if (type((1,)) == type(bootpart)):
(kind, self.liloDevice) = bootpart
@@ -752,6 +767,8 @@ class ToDo:
lilo.addEntry("install", "/boot/boot.b")
lilo.addEntry("prompt")
lilo.addEntry("timeout", "50")
+ if self.liloLinear:
+ lilo.addEntry("linear")
smpInstalled = (self.hdList.has_key('kernel-smp') and
self.hdList['kernel-smp'].selected)
@@ -799,6 +816,10 @@ class ToDo:
sl.addEntry("read-only")
sl.addEntry("root", '/dev/' + rootDev)
kernelFile = "/boot/vmlinuz" + kernelTag
+
+ if self.liloAppend:
+ sl.addEntry('append', '"%s"' % (self.liloAppend,))
+
lilo.addImage ("image", kernelFile, sl)
for (label, device) in otherList:
@@ -1130,6 +1151,8 @@ class ToDo:
todo.zeroMbr = todo.instClass.zeroMbr
(where, linear, append) = todo.instClass.getLiloInformation()
todo.liloDevice = where
+ todo.liloLinear = linear
+ todo.liloAppend = append
for (mntpoint, (dev, fstype, reformat)) in todo.instClass.fstab:
todo.addMount(dev, mntpoint, fstype, reformat)